import { injectIntl, FormattedMessage } from 'react-intl' import Block from '../block' import Button from '../button' import Heading from '../heading' import Text from '../text' export default @injectIntl class ConfirmationModal extends PureComponent { static propTypes = { title: PropTypes.any.isRequired, message: PropTypes.any.isRequired, confirm: PropTypes.any.isRequired, onClose: PropTypes.func.isRequired, onConfirm: PropTypes.func.isRequired, intl: PropTypes.object.isRequired, onCancel: PropTypes.func, } componentDidMount() { this.button.focus() } handleClick = () => { this.props.onClose() this.props.onConfirm() } handleCancel = () => { const { onClose, onCancel } = this.props onClose() if (onCancel) onCancel() } setRef = (c) => { this.button = c } render() { const { title, message, confirm, } = this.props return (
{title}
{message}
) } }