Files
mattermost/webapp/components/confirm_modal.jsx
Christopher Speller 2bbedd9def Updating client dependencies. Switching to yarn. (#6433)
* Updating client dependancies. Switching to using yarn.

* Updating React

* Moving pure components to using function syntax (performance gains with newer react version)

* Updating client dependancies.

* Ignore .yarninstall

* Enabling pre-lockfile because it's the entire point of using yarn.

* Removing old webpack config

* Moving to new prop-types

* Fixing ESLint Errors

* Updating jest snapshots.

* Cleaning up package.json
2017-05-18 09:28:18 -04:00

84 lines
2.4 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {FormattedMessage} from 'react-intl';
import {Modal} from 'react-bootstrap';
import PropTypes from 'prop-types';
import React from 'react';
export default class ConfirmModal extends React.Component {
constructor(props) {
super(props);
this.handleKeypress = this.handleKeypress.bind(this);
}
componentDidMount() {
document.addEventListener('keypress', this.handleKeypress);
}
componentWillUnmount() {
document.removeEventListener('keypress', this.handleKeypress);
}
handleKeypress(e) {
if (e.key === 'Enter' && this.props.show) {
this.props.onConfirm();
}
}
render() {
return (
<Modal
className='modal-confirm'
show={this.props.show}
onHide={this.props.onCancel}
>
<Modal.Header closeButton={false}>
<Modal.Title>{this.props.title}</Modal.Title>
</Modal.Header>
<Modal.Body>
{this.props.message}
</Modal.Body>
<Modal.Footer>
<button
type='button'
className='btn btn-default'
onClick={this.props.onCancel}
>
<FormattedMessage
id='confirm_modal.cancel'
defaultMessage='Cancel'
/>
</button>
<button
type='button'
className={this.props.confirmButtonClass}
onClick={this.props.onConfirm}
>
{this.props.confirmButton}
</button>
</Modal.Footer>
</Modal>
);
}
}
ConfirmModal.defaultProps = {
title: '',
message: '',
confirmButtonClass: 'btn btn-primary',
confirmButton: ''
};
ConfirmModal.propTypes = {
show: PropTypes.bool.isRequired,
title: PropTypes.node,
message: PropTypes.node,
confirmButtonClass: PropTypes.string,
confirmButton: PropTypes.node,
onConfirm: PropTypes.func.isRequired,
onCancel: PropTypes.func.isRequired
};