import React from 'react'; import Modal from './base/Modal'; import ModalBody from './base/ModalBody'; import ModalHeader from './base/ModalHeader'; import ModalFooter from './base/ModalFooter'; import ModalComponent from './lib/ModalComponent'; class PromptModal extends ModalComponent { constructor (props) { super(props); this.state = { headerName: 'Not Set', defaultValue: '', submitName: 'Not Set', selectText: false }; } _onSubmit (e) { e.preventDefault(); this._onSubmitCallback && this._onSubmitCallback(this.refs.input.value); this.hide(); } _setDefaultValueFromState () { if (this.state.defaultValue) { this.refs.input.value = this.state.defaultValue; } this.refs.input.focus(); if (this.state.selectText) { this.refs.input.select(); } } show ({headerName, defaultValue, submitName, selectText}) { super.show(); return new Promise(resolve => { this._onSubmitCallback = resolve; this.setState({ headerName, defaultValue, submitName, selectText }) }); } componentDidUpdate () { this._setDefaultValueFromState(); } render () { const {extraProps} = this.props; const {submitName, headerName} = this.state; return ( {headerName}
this._onSubmit(e)} className="wide pad">
) } } PromptModal.propTypes = {}; export default PromptModal;