insomnia/app/ui/components/modals/AlertModal.js
Gregory Schier 1d45367aa1 Added eslint and fixed all problems (#101)
* Fixed duplication kve bug

* Added semistandard and updated code

* Actually got it working

* Even better

* I think it should work on Windows now
2017-03-03 12:09:08 -08:00

66 lines
1.3 KiB
JavaScript

import React, {PureComponent} from 'react';
import autobind from 'autobind-decorator';
import Modal from '../base/Modal';
import ModalBody from '../base/ModalBody';
import ModalHeader from '../base/ModalHeader';
import ModalFooter from '../base/ModalFooter';
@autobind
class AlertModal extends PureComponent {
constructor (props) {
super(props);
this.state = {
title: '',
message: ''
};
}
_setModalRef (m) {
this.modal = m;
}
_handleOk () {
this.hide();
this._okCallback();
}
hide () {
this.modal.hide();
}
show (options = {}) {
this.modal.show();
const {title, message} = options;
this.setState({title, message});
return new Promise(resolve => {
this._okCallback = resolve;
});
}
render () {
const {extraProps} = this.props;
const {message, title} = this.state;
return (
<Modal ref={this._setModalRef} closeOnKeyCodes={[13]} {...extraProps}>
<ModalHeader>{title || 'Uh Oh!'}</ModalHeader>
<ModalBody className="wide pad">
{message}
</ModalBody>
<ModalFooter>
<button className="btn" onClick={this._handleOk}>
Ok
</button>
</ModalFooter>
</Modal>
);
}
}
AlertModal.propTypes = {};
export default AlertModal;