2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-22 22:39:50 -04:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
import Button from '../../../components/button';
|
|
|
|
|
|
|
|
class ConfirmationModal extends React.PureComponent {
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
message: PropTypes.node.isRequired,
|
|
|
|
confirm: PropTypes.string.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
onConfirm: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
2017-04-22 22:39:50 -04:00
|
|
|
this.props.onClose();
|
|
|
|
this.props.onConfirm();
|
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleCancel = (e) => {
|
2017-04-22 22:39:50 -04:00
|
|
|
e.preventDefault();
|
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { intl, message, confirm, onConfirm, onClose } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal confirmation-modal'>
|
|
|
|
<div className='confirmation-modal__container'>
|
|
|
|
{message}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='confirmation-modal__action-bar'>
|
|
|
|
<div><a href='#' onClick={this.handleCancel}><FormattedMessage id='confirmation_modal.cancel' defaultMessage='Cancel' /></a></div>
|
|
|
|
<Button text={confirm} onClick={this.handleClick} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default injectIntl(ConfirmationModal);
|