mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9e84bc4387
* Start on workspace dropdown and upgrade fontawesome * WorkspaceDropdown start and Elm components! * Lots of CSS shit * Refactor some db stuff and move filter out of sidebar * Adjust dropdown css * Handle duplicate header names, and stuff * Shitty cookies tab * fixed cookie table a bit * Modal refactor * Starteed cookie modal design * Better cookie storage and filter cookie modal * Cookie editor round 1 * Fix kve cursor jumping and form encoding templating * New cookies now show up in filter * Checkpoint * Stuff and fix environments css * Added manage cookies button to cookie pane * Fix accidental sidebar item drag on sidebar resize * Environments modal is looking pretty good now * Pretty much done environments nad cookies * Some changes * Fixed codemirror in modals * Fixed some things * Add basic proxy support * Updated shortcuts * Code snippet generation * Some style * bug fix * Code export now gets cookies for correct domain
94 lines
2.3 KiB
JavaScript
94 lines
2.3 KiB
JavaScript
import React, {Component} from 'react';
|
|
import Modal from '../base/Modal';
|
|
import ModalBody from '../base/ModalBody';
|
|
import ModalHeader from '../base/ModalHeader';
|
|
import ModalFooter from '../base/ModalFooter';
|
|
|
|
class PromptModal extends Component {
|
|
constructor (props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
headerName: 'Not Set',
|
|
defaultValue: '',
|
|
submitName: 'Not Set',
|
|
selectText: false,
|
|
hint: null
|
|
};
|
|
}
|
|
|
|
_onSubmit (e) {
|
|
e.preventDefault();
|
|
|
|
this._onSubmitCallback && this._onSubmitCallback(this._input.value);
|
|
this.modal.hide();
|
|
}
|
|
|
|
_setDefaultValueFromState () {
|
|
if (this.state.defaultValue) {
|
|
this._input.value = this.state.defaultValue;
|
|
}
|
|
|
|
// Need to do this after render because modal focuses itself too
|
|
setTimeout(() => {
|
|
this._input.focus();
|
|
if (this.state.selectText) {
|
|
this._input.select();
|
|
}
|
|
}, 100);
|
|
}
|
|
|
|
show ({headerName, defaultValue, submitName, selectText, hint}) {
|
|
this.modal.show();
|
|
|
|
return new Promise(resolve => {
|
|
this._onSubmitCallback = resolve;
|
|
|
|
this.setState({
|
|
headerName,
|
|
defaultValue,
|
|
submitName,
|
|
selectText,
|
|
hint
|
|
})
|
|
});
|
|
}
|
|
|
|
componentDidUpdate () {
|
|
this._setDefaultValueFromState();
|
|
}
|
|
|
|
render () {
|
|
const {extraProps} = this.props;
|
|
const {submitName, headerName, hint} = this.state;
|
|
|
|
return (
|
|
<Modal ref={m => this.modal = m} {...extraProps}>
|
|
<ModalHeader>{headerName}</ModalHeader>
|
|
<ModalBody className="wide">
|
|
<form onSubmit={e => this._onSubmit(e)} className="wide pad">
|
|
<div className="form-control form-control--outlined form-control--wide">
|
|
<input ref={n => this._input = n} type="text"/>
|
|
</div>
|
|
</form>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<div className="pull-right">
|
|
<button className="btn" onClick={() => this.modal.hide()}>
|
|
Cancel
|
|
</button>
|
|
<button className="btn" onClick={this._onSubmit.bind(this)}>
|
|
{submitName || 'Save'}
|
|
</button>
|
|
</div>
|
|
<div className="pad faint italic txt-sm tall">{hint ? `* ${hint}` : ''}</div>
|
|
</ModalFooter>
|
|
</Modal>
|
|
)
|
|
}
|
|
}
|
|
|
|
PromptModal.propTypes = {};
|
|
|
|
export default PromptModal;
|