2017-02-28 21:32:23 +00:00
|
|
|
import React, {PureComponent} from 'react';
|
2017-03-03 01:44:07 +00:00
|
|
|
import autobind from 'autobind-decorator';
|
2017-06-09 22:00:36 +00:00
|
|
|
import classnames from 'classnames';
|
2017-03-08 05:52:17 +00:00
|
|
|
import Modal from '../base/modal';
|
|
|
|
import ModalBody from '../base/modal-body';
|
|
|
|
import ModalHeader from '../base/modal-header';
|
|
|
|
import ModalFooter from '../base/modal-footer';
|
2017-06-09 22:00:36 +00:00
|
|
|
import Button from '../base/button';
|
|
|
|
import PromptButton from '../base/prompt-button';
|
2016-07-14 22:48:56 +00:00
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
@autobind
|
2017-02-28 21:32:23 +00:00
|
|
|
class PromptModal extends PureComponent {
|
2017-03-03 01:44:07 +00:00
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
2017-07-20 01:55:40 +00:00
|
|
|
title: 'Not Set',
|
2017-03-03 01:44:07 +00:00
|
|
|
defaultValue: '',
|
|
|
|
submitName: 'Not Set',
|
|
|
|
selectText: false,
|
2017-03-08 00:45:18 +00:00
|
|
|
upperCase: false,
|
2017-03-03 01:44:07 +00:00
|
|
|
hint: null,
|
2017-03-08 00:45:18 +00:00
|
|
|
inputType: 'text',
|
|
|
|
hints: []
|
2017-03-03 01:44:07 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-03-08 00:45:18 +00:00
|
|
|
_done (rawValue) {
|
|
|
|
const value = this.state.upperCase ? rawValue.toUpperCase() : rawValue;
|
2017-06-09 21:42:19 +00:00
|
|
|
this._onComplete && this._onComplete(value);
|
2017-03-29 02:21:49 +00:00
|
|
|
this.hide();
|
2017-03-08 00:45:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-03 20:09:08 +00:00
|
|
|
_setInputRef (n) {
|
|
|
|
this._input = n;
|
|
|
|
}
|
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
_setModalRef (n) {
|
|
|
|
this.modal = n;
|
|
|
|
}
|
|
|
|
|
2017-03-08 00:45:18 +00:00
|
|
|
_handleSelectHint (hint) {
|
|
|
|
this._done(hint);
|
|
|
|
}
|
|
|
|
|
2017-06-09 22:00:36 +00:00
|
|
|
_handleDeleteHint (hint) {
|
|
|
|
this._onDeleteHint && this._onDeleteHint(hint);
|
|
|
|
const hints = this.state.hints.filter(h => h !== hint);
|
|
|
|
this.setState({hints});
|
|
|
|
}
|
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
_handleSubmit (e) {
|
2016-07-14 22:48:56 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
2017-03-08 00:45:18 +00:00
|
|
|
this._done(this._input.value);
|
2017-03-03 01:44:07 +00:00
|
|
|
}
|
2016-11-28 07:12:17 +00:00
|
|
|
|
2017-03-29 02:21:49 +00:00
|
|
|
hide () {
|
|
|
|
this.modal.hide();
|
|
|
|
}
|
|
|
|
|
2017-03-08 00:45:18 +00:00
|
|
|
show (options) {
|
|
|
|
const {
|
2017-07-20 01:55:40 +00:00
|
|
|
title,
|
2017-03-08 00:45:18 +00:00
|
|
|
defaultValue,
|
|
|
|
submitName,
|
|
|
|
selectText,
|
|
|
|
upperCase,
|
|
|
|
hint,
|
|
|
|
inputType,
|
|
|
|
placeholder,
|
|
|
|
label,
|
2017-06-01 02:04:27 +00:00
|
|
|
hints,
|
2017-06-09 22:00:36 +00:00
|
|
|
onComplete,
|
|
|
|
onDeleteHint
|
2017-03-08 00:45:18 +00:00
|
|
|
} = options;
|
|
|
|
|
2017-06-09 21:42:19 +00:00
|
|
|
this._onComplete = onComplete;
|
2017-06-09 22:00:36 +00:00
|
|
|
this._onDeleteHint = onDeleteHint;
|
2017-06-09 21:42:19 +00:00
|
|
|
|
|
|
|
this.setState({
|
2017-07-20 01:55:40 +00:00
|
|
|
title,
|
2017-06-09 21:42:19 +00:00
|
|
|
defaultValue,
|
|
|
|
submitName,
|
|
|
|
selectText,
|
|
|
|
placeholder,
|
|
|
|
upperCase,
|
|
|
|
hint,
|
|
|
|
inputType,
|
|
|
|
label,
|
|
|
|
hints
|
2016-07-14 22:48:56 +00:00
|
|
|
});
|
2017-08-12 21:56:24 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-03-08 00:45:18 +00:00
|
|
|
_renderHintButton (hint) {
|
2017-06-09 22:00:36 +00:00
|
|
|
const classes = classnames(
|
|
|
|
'btn btn--outlined btn--super-duper-compact',
|
|
|
|
'margin-right-sm margin-top-sm inline-block'
|
|
|
|
);
|
|
|
|
|
2017-03-08 00:45:18 +00:00
|
|
|
return (
|
2017-06-09 22:00:36 +00:00
|
|
|
<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>
|
2017-03-08 00:45:18 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:48:56 +00:00
|
|
|
render () {
|
2017-03-08 00:45:18 +00:00
|
|
|
const {
|
|
|
|
submitName,
|
2017-07-20 01:55:40 +00:00
|
|
|
title,
|
2017-03-08 00:45:18 +00:00
|
|
|
hint,
|
|
|
|
inputType,
|
|
|
|
placeholder,
|
|
|
|
label,
|
|
|
|
upperCase,
|
|
|
|
hints
|
|
|
|
} = this.state;
|
2016-07-14 22:48:56 +00:00
|
|
|
|
2016-11-29 20:55:31 +00:00
|
|
|
const input = (
|
|
|
|
<input
|
2017-03-03 20:09:08 +00:00
|
|
|
ref={this._setInputRef}
|
2016-11-29 20:55:31 +00:00
|
|
|
id="prompt-input"
|
|
|
|
type={inputType === 'decimal' ? 'number' : (inputType || 'text')}
|
|
|
|
step={inputType === 'decimal' ? '0.1' : null}
|
|
|
|
min={inputType === 'decimal' ? '0.5' : null}
|
2017-03-08 00:45:18 +00:00
|
|
|
style={{textTransform: upperCase ? 'uppercase' : 'none'}}
|
2016-11-29 20:55:31 +00:00
|
|
|
placeholder={placeholder || ''}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2017-03-08 05:52:17 +00:00
|
|
|
let sanitizedHints = [];
|
|
|
|
if (Array.isArray(hints)) {
|
|
|
|
sanitizedHints = hints.slice(0, 15).map(this._renderHintButton);
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:48:56 +00:00
|
|
|
return (
|
2017-03-08 05:52:17 +00:00
|
|
|
<Modal ref={this._setModalRef}>
|
2017-07-20 01:55:40 +00:00
|
|
|
<ModalHeader>{title}</ModalHeader>
|
2016-07-14 22:48:56 +00:00
|
|
|
<ModalBody className="wide">
|
2017-01-11 03:18:15 +00:00
|
|
|
<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">
|
2016-11-29 20:55:31 +00:00
|
|
|
{label ? <label>{label}{input}</label> : input}
|
2016-07-14 22:48:56 +00:00
|
|
|
</div>
|
2017-03-08 05:52:17 +00:00
|
|
|
{sanitizedHints}
|
2016-07-14 22:48:56 +00:00
|
|
|
</form>
|
|
|
|
</ModalBody>
|
|
|
|
<ModalFooter>
|
2016-10-21 17:20:36 +00:00
|
|
|
<div className="margin-left faint italic txt-sm tall">{hint ? `* ${hint}` : ''}</div>
|
2016-11-29 20:55:31 +00:00
|
|
|
<button className="btn" onClick={this._handleSubmit}>
|
|
|
|
{submitName || 'Submit'}
|
|
|
|
</button>
|
2016-07-14 22:48:56 +00:00
|
|
|
</ModalFooter>
|
|
|
|
</Modal>
|
2017-03-03 20:09:08 +00:00
|
|
|
);
|
2016-07-14 22:48:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PromptModal.propTypes = {};
|
|
|
|
|
|
|
|
export default PromptModal;
|