1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ElectronClient/app/gui/PromptDialog.jsx

257 lines
7.1 KiB
React
Raw Normal View History

2017-11-08 19:51:55 +02:00
const React = require('react');
const { connect } = require('react-redux');
const { _ } = require('lib/locale.js');
const moment = require('moment');
2017-11-08 19:51:55 +02:00
const { themeStyle } = require('../theme.js');
const { time } = require('lib/time-utils.js');
const Datetime = require('react-datetime');
const CreatableSelect = require('react-select/lib/Creatable').default;
const makeAnimated = require('react-select/lib/animated').default;
2017-11-08 19:51:55 +02:00
class PromptDialog extends React.Component {
constructor() {
super();
this.answerInput_ = React.createRef();
}
2017-11-08 19:51:55 +02:00
componentWillMount() {
this.setState({
visible: false,
answer: this.props.defaultValue ? this.props.defaultValue : '',
2017-11-08 19:51:55 +02:00
});
this.focusInput_ = true;
}
componentWillReceiveProps(newProps) {
if ('visible' in newProps && newProps.visible !== this.props.visible) {
2017-11-08 19:51:55 +02:00
this.setState({ visible: newProps.visible });
if (newProps.visible) this.focusInput_ = true;
}
2017-11-12 01:13:14 +02:00
if ('defaultValue' in newProps && newProps.defaultValue !== this.props.defaultValue) {
this.setState({ answer: newProps.defaultValue });
2017-11-12 01:13:14 +02:00
}
2017-11-08 19:51:55 +02:00
}
componentDidUpdate() {
if (this.focusInput_ && this.answerInput_.current) this.answerInput_.current.focus();
2017-11-08 19:51:55 +02:00
this.focusInput_ = false;
}
styles(themeId, width, height, visible) {
const styleKey = themeId + '_' + width + '_' + height + '_' + visible;
if (styleKey === this.styleKey_) return this.styles_;
const theme = themeStyle(themeId);
2017-11-08 19:51:55 +02:00
this.styleKey_ = styleKey;
this.styles_ = {};
const paddingTop = 20;
this.styles_.modalLayer = {
2017-11-08 19:51:55 +02:00
zIndex: 9999,
position: 'absolute',
top: 0,
left: 0,
width: width,
height: height - paddingTop,
2017-11-08 19:51:55 +02:00
backgroundColor: 'rgba(0,0,0,0.6)',
display: visible ? 'flex' : 'none',
alignItems: 'flex-start',
justifyContent: 'center',
paddingTop: paddingTop + 'px',
2017-11-08 19:51:55 +02:00
};
this.styles_.promptDialog = {
backgroundColor: theme.backgroundColor,
padding: 16,
2017-11-08 19:51:55 +02:00
display: 'inline-block',
maxWidth: width * 0.5,
2017-11-08 19:51:55 +02:00
boxShadow: '6px 6px 20px rgba(0,0,0,0.5)',
};
this.styles_.button = {
2017-11-08 19:51:55 +02:00
minWidth: theme.buttonMinWidth,
minHeight: theme.buttonMinHeight,
marginLeft: 5,
color: theme.color,
backgroundColor: theme.backgroundColor,
border: '1px solid',
borderColor: theme.dividerColor,
2017-11-08 19:51:55 +02:00
};
this.styles_.label = {
marginRight: 5,
fontSize: theme.fontSize,
color: theme.color,
fontFamily: theme.fontFamily,
verticalAlign: 'middle',
};
this.styles_.input = {
width: 0.5 * width,
2017-11-08 19:51:55 +02:00
maxWidth: 400,
color: theme.color,
backgroundColor: theme.backgroundColor,
border: '1px solid',
borderColor: theme.dividerColor,
2017-11-08 19:51:55 +02:00
};
this.styles_.tagList = {
control: (provided) => (Object.assign(provided, {
minWidth: width * 0.2,
maxWidth: width * 0.5,
})),
input: (provided) => (Object.assign(provided, {
minWidth: '20px',
color: theme.color,
})),
menu: (provided) => (Object.assign(provided, {
color: theme.color,
fontFamily: theme.fontFamily,
backgroundColor: theme.backgroundColor,
})),
multiValueLabel: (provided) => (Object.assign(provided, {
fontFamily: theme.fontFamily,
})),
multiValueRemove: (provided) => (Object.assign(provided, {
color: theme.color,
})),
};
this.styles_.tagListTheme = (tagTheme) => (Object.assign(tagTheme, {
borderRadius: 2,
colors: Object.assign(tagTheme.colors, {
primary: theme.raisedBackgroundColor,
primary25: theme.raisedBackgroundColor,
neutral0: theme.backgroundColor,
neutral10: theme.raisedBackgroundColor,
neutral80: theme.color,
danger: theme.backgroundColor,
dangerLight: theme.colorError2,
}),
}));
this.styles_.desc = Object.assign({}, theme.textStyle, {
2017-11-12 01:13:14 +02:00
marginTop: 10,
});
return this.styles_;
}
render() {
const style = this.props.style;
const theme = themeStyle(this.props.theme);
const buttonTypes = this.props.buttons ? this.props.buttons : ['ok', 'cancel'];
const styles = this.styles(this.props.theme, style.width, style.height, this.state.visible);
const onClose = (accept, buttonType) => {
if (this.props.onClose) {
let outputAnswer = this.state.answer;
if (this.props.inputType === 'datetime') {
// outputAnswer = anythingToDate(outputAnswer);
outputAnswer = time.anythingToDateTime(outputAnswer);
}
this.props.onClose(accept ? outputAnswer : null, buttonType);
}
2017-11-08 19:51:55 +02:00
this.setState({ visible: false, answer: '' });
}
const onChange = (event) => {
this.setState({ answer: event.target.value });
}
// const anythingToDate = (o) => {
// if (o && o.toDate) return o.toDate();
// if (!o) return null;
// let m = moment(o, time.dateTimeFormat());
// if (m.isValid()) return m.toDate();
// m = moment(o, time.dateFormat());
// return m.isValid() ? m.toDate() : null;
// }
const onDateTimeChange = (momentObject) => {
this.setState({ answer: momentObject });
}
const onTagsChange = (newTags) => {
this.setState({ answer: newTags });
this.focusInput_ = true;
}
2017-11-08 19:51:55 +02:00
const onKeyDown = (event) => {
if (event.key === 'Enter' && this.props.inputType !== 'tags') {
onClose(true);
2017-11-08 19:51:55 +02:00
} else if (event.key === 'Escape') {
2017-11-08 23:22:24 +02:00
onClose(false);
2017-11-08 19:51:55 +02:00
}
}
const descComp = this.props.description ? <div style={styles.desc}>{this.props.description}</div> : null;
2017-11-12 01:13:14 +02:00
let inputComp = null;
if (this.props.inputType === 'datetime') {
inputComp = <Datetime
value={this.state.answer}
inputProps={{style: styles.input}}
dateFormat={time.dateFormat()}
timeFormat={time.timeFormat()}
onChange={(momentObject) => onDateTimeChange(momentObject)}
/>
} else if (this.props.inputType === 'tags') {
inputComp = <CreatableSelect
styles={styles.tagList}
theme={styles.tagListTheme}
ref={this.answerInput_}
value={this.state.answer}
placeholder=""
components={makeAnimated()}
isMulti={true}
isClearable={false}
backspaceRemovesValue={true}
options={this.props.autocomplete}
onChange={onTagsChange}
onKeyDown={(event) => onKeyDown(event)}
/>
} else {
inputComp = <input
style={styles.input}
ref={this.answerInput_}
value={this.state.answer}
type="text"
onChange={(event) => onChange(event)}
onKeyDown={(event) => onKeyDown(event)}
/>
}
const buttonComps = [];
if (buttonTypes.indexOf('ok') >= 0) buttonComps.push(<button key="ok" style={styles.button} onClick={() => onClose(true, 'ok')}>{_('OK')}</button>);
if (buttonTypes.indexOf('cancel') >= 0) buttonComps.push(<button key="cancel" style={styles.button} onClick={() => onClose(false, 'cancel')}>{_('Cancel')}</button>);
if (buttonTypes.indexOf('clear') >= 0) buttonComps.push(<button key="clear" style={styles.button} onClick={() => onClose(false, 'clear')}>{_('Clear')}</button>);
2017-11-08 19:51:55 +02:00
return (
<div style={styles.modalLayer}>
<div style={styles.promptDialog}>
<label style={styles.label}>{this.props.label ? this.props.label : ''}</label>
<div style={{display: 'inline-block', color: 'black', backgroundColor: theme.backgroundColor}}>
{inputComp}
2017-11-12 01:13:14 +02:00
{descComp}
</div>
2017-11-08 19:51:55 +02:00
<div style={{ textAlign: 'right', marginTop: 10 }}>
{buttonComps}
2017-11-08 19:51:55 +02:00
</div>
</div>
</div>
);
}
}
module.exports = { PromptDialog };