
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Promise-based dialog boxes (alert, confirm, prompt) using Material-UI
$ npm install muibox --save
Simply wrap all components that should display dialog boxes with the DialogProvider component, e.g. by wrapping your router with it.
import { DialogProvider } from 'muibox'
// somewhere at the root of your app
<DialogProvider>
{/* the rest of your app belongs here, e.g. the router */}
</DialogProvider>
You can then display dialog boxes with the withDialog HOC and the injected dialog prop in your components.
import React from 'react'
import { withDialog } from 'muibox'
class MyComponent extends React.Component {
render () {
const { dialog } = this.props
return (
<div>
<button onClick={() => dialog.alert('Warning!')}>
Click me
</button>
</div>
)
}
}
export default withDialog()(MyComponent)
If use React 16.8+, you can import useDialog hook to get dialog context directly.
import React from 'react'
import { useDialog } from 'muibox'
function MyComponent () {
const dialog = useDialog()
return (
<div>
<button onClick={() => dialog.alert('Warning!')}>
Click me
</button>
</div>
)
}
export default MyComponent
dialog.alert('Warning!')
.then(() => console.log('clicked ok'))
dialog.alert(options)
options (object|string) – The alert dialog settings. If options is a string, set dialog message to display.options.title (string) – The dialog title to display.options.message (string|jsx) – The dialog message to display or a custom JSX element to be injected on Material-UI DialogContent.options.ok (object) { text, color, variant, startIcon, endIcon } - The positive button text to display, color, variant and left/right icon (jsx), following mateiral-ui types. Defaults OK, primary, text, undefined, undefined respectively.dialog.confirm('Are you sure?')
.then(() => console.log('clicked ok'))
.catch(() => console.log('clicked cancel'))
dialog.confirm(options)
options (object|string) – The confirm dialog settings. If options is a string, set dialog message to display.options.title (string) – The dialog title to display.options.message (string|jsx) – The dialog message to display or a custom JSX element to be injected on Material-UI DialogContent.options.ok (object) { text, color, variant, startIcon, endIcon } - The positive button text to display, color, variant and left/right icon (jsx), following mateiral-ui types. Defaults OK, primary, text, undefined, undefined respectively.options.cancel (object) { text, color, variant, startIcon, endIcon } - The positive button text to display, color, variant and left/right icon (jsx), following mateiral-ui types. Defaults OK, primary, text, undefined, undefined respectively.options.throwOnCancel (boolean) - defaults to true, optional flag to disable old behavior of throwing error when cancel button is clicked and when dialog is dismissed, setting to false would resolve cancel button press with false as value and would throw when dialog is dismissed without selection.dialog.prompt('Enter your name:')
.then((value) => console.log('clicked ok', value))
.catch(() => console.log('clicked cancel'))
dialog.prompt(options)
options (object|string) – The prompt dialog settings. If options is a string, set dialog message to display.options.title (string) – The dialog title to display.options.message (string|jsx) – The dialog message to display or a custom JSX element to be injected on Material-UI DialogContent.options.placeholder (string) – The placeholder attribute for the input. Default is blank ''.options.ok (object) { text, color, variant, startIcon, endIcon } - The positive button text to display, color, variant and left/right icon (jsx), following mateiral-ui types. Defaults OK, primary, text, undefined, undefined respectively.options.cancel (object) { text, color, variant, startIcon, endIcon } - The positive button text to display, color, variant and left/right icon (jsx), following mateiral-ui types. Defaults OK, primary, text, undefined, undefined respectively.options.required (bool) - If true, the label is displayed as required and the input will be required. Default false.options.defaultValue (string|number) - The default value of the Input element.options.inputProps (object) - The props for the input html element. For instance, max length. OptionalFAQs
Promise-based dialog boxes (alert, confirm, prompt) using Material-UI
The npm package muibox receives a total of 190 weekly downloads. As such, muibox popularity was classified as not popular.
We found that muibox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.