@silverstripe/reactstrap-confirm
v0.0.5
Published
Confirmation dialogues with reactstrap modals
Downloads
53
Readme
Reactstrap Confirm
A confirm "polyfill" that creates a reactstrap modal instead of a browser dialog
Requirements
- React 15+
- Webpack
Usage
import confirm from '@silverstripe/reactstrap-confirm';
import { Button } from 'reactstrap';
const MyButton = () => {
const handleClick = async () => {
if (!await confirm('Are you sure?')) {
return;
}
};
return <Button onClick={handleClick()}>Click me</Button>;
}
The confirm
function returns a promise that will be resolved with true
or false
depending on the response of the
user. This will render a reactstrap modal into a given DOM node (or document.body
by default).
Run yarn storybook
for a detailed example.