insomnia/app/ui/components/modals/prompt-modal.js

179 lines
4.1 KiB
JavaScript
Raw Normal View History

import React, {PureComponent} from 'react';
import autobind from 'autobind-decorator';
import classnames from 'classnames';
import Modal from '../base/modal';
import ModalBody from '../base/modal-body';
import ModalHeader from '../base/modal-header';
import ModalFooter from '../base/modal-footer';
import Button from '../base/button';
import PromptButton from '../base/prompt-button';
2016-07-14 22:48:56 +00:00
@autobind
class PromptModal extends PureComponent {
constructor (props) {
super(props);
this.state = {
title: 'Not Set',
defaultValue: '',
submitName: 'Not Set',
selectText: false,
upperCase: false,
hint: null,
inputType: 'text',
hints: []
};
}
_done (rawValue) {
const value = this.state.upperCase ? rawValue.toUpperCase() : rawValue;
this._onComplete && this._onComplete(value);
2017-03-29 02:21:49 +00:00
this.hide();
}
_setInputRef (n) {
this._input = n;
}
_setModalRef (n) {
this.modal = n;
}
_handleSelectHint (hint) {
this._done(hint);
}
_handleDeleteHint (hint) {
this._onDeleteHint && this._onDeleteHint(hint);
const hints = this.state.hints.filter(h => h !== hint);
this.setState({hints});
}
_handleSubmit (e) {
2016-07-14 22:48:56 +00:00
e.preventDefault();
this._done(this._input.value);
}
2016-11-28 07:12:17 +00:00
2017-03-29 02:21:49 +00:00
hide () {
this.modal.hide();
}
show (options) {
const {
title,
defaultValue,
submitName,
selectText,
upperCase,
hint,
inputType,
placeholder,
label,
hints,
onComplete,
onDeleteHint
} = options;
this.modal.show();
// Need to do this after render because modal focuses itself too
setTimeout(() => {
this._input.value = defaultValue || '';
this._input.focus();
selectText && this._input.select();
}, 100);
2016-07-14 22:48:56 +00:00
this._onComplete = onComplete;
this._onDeleteHint = onDeleteHint;
this.setState({
title,
defaultValue,
submitName,
selectText,
placeholder,
upperCase,
hint,
inputType,
label,
hints
2016-07-14 22:48:56 +00:00
});
}
_renderHintButton (hint) {
const classes = classnames(
'btn btn--outlined btn--super-duper-compact',
'margin-right-sm margin-top-sm inline-block'
);
return (
<div type="button" key={hint} className={classes}>
<Button className="tall" onClick={this._handleSelectHint} value={hint}>
{hint}
</Button>
<PromptButton addIcon
confirmMessage=" "
className="tall space-left icon"
onClick={this._handleDeleteHint}
value={hint}>
<i className="fa fa-close faint"/>
</PromptButton>
</div>
);
}
2016-07-14 22:48:56 +00:00
render () {
const {
submitName,
title,
hint,
inputType,
placeholder,
label,
upperCase,
hints
} = this.state;
2016-07-14 22:48:56 +00:00
const input = (
<input
ref={this._setInputRef}
id="prompt-input"
type={inputType === 'decimal' ? 'number' : (inputType || 'text')}
step={inputType === 'decimal' ? '0.1' : null}
min={inputType === 'decimal' ? '0.5' : null}
style={{textTransform: upperCase ? 'uppercase' : 'none'}}
placeholder={placeholder || ''}
/>
);
let sanitizedHints = [];
if (Array.isArray(hints)) {
sanitizedHints = hints.slice(0, 15).map(this._renderHintButton);
}
2016-07-14 22:48:56 +00:00
return (
<Modal ref={this._setModalRef}>
<ModalHeader>{title}</ModalHeader>
2016-07-14 22:48:56 +00:00
<ModalBody className="wide">
<form onSubmit={this._handleSubmit} className="wide pad">
2016-07-14 22:48:56 +00:00
<div className="form-control form-control--outlined form-control--wide">
{label ? <label>{label}{input}</label> : input}
2016-07-14 22:48:56 +00:00
</div>
{sanitizedHints}
2016-07-14 22:48:56 +00:00
</form>
</ModalBody>
<ModalFooter>
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
<div className="margin-left faint italic txt-sm tall">{hint ? `* ${hint}` : ''}</div>
<button className="btn" onClick={this._handleSubmit}>
{submitName || 'Submit'}
</button>
2016-07-14 22:48:56 +00:00
</ModalFooter>
</Modal>
);
2016-07-14 22:48:56 +00:00
}
}
PromptModal.propTypes = {};
export default PromptModal;