2017-05-03 10:04:16 +10:00
|
|
|
import React from 'react';
|
2017-04-23 12:39:50 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-24 00:05:04 +10:00
|
|
|
import { injectIntl, FormattedMessage } from 'react-intl';
|
2017-04-23 12:39:50 +10:00
|
|
|
import Button from '../../../components/button';
|
|
|
|
|
2017-06-24 03:36:54 +10:00
|
|
|
@injectIntl
|
|
|
|
export default class ConfirmationModal extends React.PureComponent {
|
2017-04-23 12:39:50 +10:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static propTypes = {
|
|
|
|
message: PropTypes.node.isRequired,
|
|
|
|
confirm: PropTypes.string.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
onConfirm: PropTypes.func.isRequired,
|
2017-05-21 01:31:47 +10:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
2017-05-23 21:10:41 +10:00
|
|
|
componentDidMount() {
|
|
|
|
this.button.focus();
|
|
|
|
}
|
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
handleClick = () => {
|
2017-04-23 12:39:50 +10:00
|
|
|
this.props.onClose();
|
|
|
|
this.props.onConfirm();
|
|
|
|
}
|
|
|
|
|
2017-05-23 21:10:41 +10:00
|
|
|
handleCancel = () => {
|
2017-04-23 12:39:50 +10:00
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
|
2017-05-23 21:10:41 +10:00
|
|
|
setRef = (c) => {
|
|
|
|
this.button = c;
|
|
|
|
}
|
|
|
|
|
2017-04-23 12:39:50 +10:00
|
|
|
render () {
|
2017-05-23 21:10:41 +10:00
|
|
|
const { message, confirm } = this.props;
|
2017-04-23 12:39:50 +10:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal confirmation-modal'>
|
|
|
|
<div className='confirmation-modal__container'>
|
|
|
|
{message}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='confirmation-modal__action-bar'>
|
2017-05-23 21:10:41 +10:00
|
|
|
<Button onClick={this.handleCancel} className='confirmation-modal__cancel-button'>
|
|
|
|
<FormattedMessage id='confirmation_modal.cancel' defaultMessage='Cancel' />
|
|
|
|
</Button>
|
|
|
|
<Button text={confirm} onClick={this.handleClick} ref={this.setRef} />
|
2017-04-23 12:39:50 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|