2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-23 02:39:50 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-23 14:05:04 +00:00
|
|
|
import { injectIntl, FormattedMessage } from 'react-intl';
|
2017-12-04 07:26:40 +00:00
|
|
|
import Button from 'flavours/glitch/components/button';
|
2017-04-23 02:39:50 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@injectIntl
|
|
|
|
export default class ConfirmationModal extends React.PureComponent {
|
2017-04-23 02:39:50 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
message: PropTypes.node.isRequired,
|
|
|
|
confirm: PropTypes.string.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
onConfirm: PropTypes.func.isRequired,
|
2019-03-26 16:34:02 +00:00
|
|
|
secondary: PropTypes.string,
|
|
|
|
onSecondary: PropTypes.func,
|
2018-11-27 16:31:50 +00:00
|
|
|
onDoNotAsk: PropTypes.func,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-05-23 11:10:41 +00:00
|
|
|
componentDidMount() {
|
|
|
|
this.button.focus();
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleClick = () => {
|
2017-04-23 02:39:50 +00:00
|
|
|
this.props.onClose();
|
|
|
|
this.props.onConfirm();
|
2018-11-27 16:31:50 +00:00
|
|
|
if (this.props.onDoNotAsk && this.doNotAskCheckbox.checked) {
|
|
|
|
this.props.onDoNotAsk();
|
|
|
|
}
|
2017-04-23 02:39:50 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 16:34:02 +00:00
|
|
|
handleSecondary = () => {
|
|
|
|
this.props.onClose();
|
|
|
|
this.props.onSecondary();
|
|
|
|
}
|
|
|
|
|
2017-05-23 11:10:41 +00:00
|
|
|
handleCancel = () => {
|
2017-04-23 02:39:50 +00:00
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
|
2017-05-23 11:10:41 +00:00
|
|
|
setRef = (c) => {
|
|
|
|
this.button = c;
|
|
|
|
}
|
|
|
|
|
2018-11-27 16:31:50 +00:00
|
|
|
setDoNotAskRef = (c) => {
|
|
|
|
this.doNotAskCheckbox = c;
|
|
|
|
}
|
|
|
|
|
2017-04-23 02:39:50 +00:00
|
|
|
render () {
|
2019-03-26 16:34:02 +00:00
|
|
|
const { message, confirm, secondary, onDoNotAsk } = this.props;
|
2017-04-23 02:39:50 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal confirmation-modal'>
|
|
|
|
<div className='confirmation-modal__container'>
|
|
|
|
{message}
|
|
|
|
</div>
|
|
|
|
|
2018-11-27 16:31:50 +00:00
|
|
|
<div>
|
|
|
|
{ onDoNotAsk && (
|
|
|
|
<div className='confirmation-modal__do_not_ask_again'>
|
|
|
|
<input type='checkbox' id='confirmation-modal__do_not_ask_again-checkbox' ref={this.setDoNotAskRef} />
|
|
|
|
<label for='confirmation-modal__do_not_ask_again-checkbox'>
|
|
|
|
<FormattedMessage id='confirmation_modal.do_not_ask_again' defaultMessage='Do not ask for confirmation again' />
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<div className='confirmation-modal__action-bar'>
|
|
|
|
<Button onClick={this.handleCancel} className='confirmation-modal__cancel-button'>
|
|
|
|
<FormattedMessage id='confirmation_modal.cancel' defaultMessage='Cancel' />
|
|
|
|
</Button>
|
2019-03-26 16:34:02 +00:00
|
|
|
{secondary !== undefined && (
|
|
|
|
<Button text={secondary} onClick={this.handleSecondary} className='confirmation-modal__secondary-button' />
|
|
|
|
)}
|
2018-11-27 16:31:50 +00:00
|
|
|
<Button text={confirm} onClick={this.handleClick} ref={this.setRef} />
|
|
|
|
</div>
|
2017-04-23 02:39:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|