2016-12-14 17:21:31 +00:00
|
|
|
import AutosuggestAccountContainer from '../features/compose/containers/autosuggest_account_container';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
|
|
|
|
const textAtCursorMatchesToken = (str, caretPosition) => {
|
|
|
|
let word;
|
|
|
|
|
|
|
|
let left = str.slice(0, caretPosition).search(/\S+$/);
|
|
|
|
let right = str.slice(caretPosition).search(/\s/);
|
|
|
|
|
|
|
|
if (right < 0) {
|
|
|
|
word = str.slice(left);
|
|
|
|
} else {
|
|
|
|
word = str.slice(left, right + caretPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!word || word.trim().length < 2 || word[0] !== '@') {
|
|
|
|
return [null, null];
|
|
|
|
}
|
|
|
|
|
|
|
|
word = word.trim().toLowerCase().slice(1);
|
|
|
|
|
|
|
|
if (word.length > 0) {
|
|
|
|
return [left + 1, word];
|
|
|
|
} else {
|
|
|
|
return [null, null];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const AutosuggestTextarea = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
value: React.PropTypes.string,
|
|
|
|
suggestions: ImmutablePropTypes.list,
|
|
|
|
disabled: React.PropTypes.bool,
|
2017-01-03 08:36:48 +00:00
|
|
|
fileDropDate: React.PropTypes.instanceOf(Date),
|
2016-12-14 17:21:31 +00:00
|
|
|
placeholder: React.PropTypes.string,
|
|
|
|
onSuggestionSelected: React.PropTypes.func.isRequired,
|
|
|
|
onSuggestionsClearRequested: React.PropTypes.func.isRequired,
|
|
|
|
onSuggestionsFetchRequested: React.PropTypes.func.isRequired,
|
2016-12-14 17:38:28 +00:00
|
|
|
onChange: React.PropTypes.func.isRequired,
|
2017-01-05 02:29:43 +00:00
|
|
|
onKeyUp: React.PropTypes.func,
|
|
|
|
onKeyDown: React.PropTypes.func
|
2016-12-14 17:21:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState () {
|
|
|
|
return {
|
2017-01-03 08:36:48 +00:00
|
|
|
isFileDragging: false,
|
|
|
|
fileDraggingDate: undefined,
|
2016-12-14 17:21:31 +00:00
|
|
|
suggestionsHidden: false,
|
|
|
|
selectedSuggestion: 0,
|
|
|
|
lastToken: null,
|
|
|
|
tokenStart: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
onChange (e) {
|
|
|
|
const [ tokenStart, token ] = textAtCursorMatchesToken(e.target.value, e.target.selectionStart);
|
|
|
|
|
2017-01-30 20:40:55 +00:00
|
|
|
if (token !== null && this.state.lastToken !== token) {
|
2016-12-14 17:21:31 +00:00
|
|
|
this.setState({ lastToken: token, selectedSuggestion: 0, tokenStart });
|
|
|
|
this.props.onSuggestionsFetchRequested(token);
|
2016-12-24 00:39:14 +00:00
|
|
|
} else if (token === null) {
|
2016-12-14 17:21:31 +00:00
|
|
|
this.setState({ lastToken: null });
|
|
|
|
this.props.onSuggestionsClearRequested();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.onChange(e);
|
|
|
|
},
|
|
|
|
|
|
|
|
onKeyDown (e) {
|
|
|
|
const { suggestions, disabled } = this.props;
|
|
|
|
const { selectedSuggestion, suggestionsHidden } = this.state;
|
|
|
|
|
|
|
|
if (disabled) {
|
|
|
|
e.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(e.key) {
|
2017-01-30 20:40:55 +00:00
|
|
|
case 'Escape':
|
|
|
|
if (!suggestionsHidden) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.setState({ suggestionsHidden: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 'ArrowDown':
|
|
|
|
if (suggestions.size > 0 && !suggestionsHidden) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.setState({ selectedSuggestion: Math.min(selectedSuggestion + 1, suggestions.size - 1) });
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 'ArrowUp':
|
|
|
|
if (suggestions.size > 0 && !suggestionsHidden) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.setState({ selectedSuggestion: Math.max(selectedSuggestion - 1, 0) });
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 'Enter':
|
|
|
|
case 'Tab':
|
|
|
|
// Select suggestion
|
|
|
|
if (this.state.lastToken !== null && suggestions.size > 0 && !suggestionsHidden) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
this.props.onSuggestionSelected(this.state.tokenStart, this.state.lastToken, suggestions.get(selectedSuggestion));
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2016-12-14 17:21:31 +00:00
|
|
|
}
|
2017-01-05 02:29:43 +00:00
|
|
|
|
|
|
|
if (e.defaultPrevented || !this.props.onKeyDown) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.onKeyDown(e);
|
2016-12-14 17:21:31 +00:00
|
|
|
},
|
|
|
|
|
2016-12-24 00:39:14 +00:00
|
|
|
onBlur () {
|
2017-01-23 06:57:58 +00:00
|
|
|
// If we hide the suggestions immediately, then this will prevent the
|
|
|
|
// onClick for the suggestions themselves from firing.
|
|
|
|
// Setting a short window for that to take place before hiding the
|
|
|
|
// suggestions ensures that can't happen.
|
|
|
|
setTimeout(() => {
|
|
|
|
this.setState({ suggestionsHidden: true });
|
|
|
|
}, 100);
|
2016-12-24 00:39:14 +00:00
|
|
|
},
|
|
|
|
|
2016-12-14 17:21:31 +00:00
|
|
|
onSuggestionClick (suggestion, e) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.onSuggestionSelected(this.state.tokenStart, this.state.lastToken, suggestion);
|
2017-01-23 06:57:58 +00:00
|
|
|
this.textarea.focus();
|
2016-12-14 17:21:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (nextProps.suggestions !== this.props.suggestions && nextProps.suggestions.size > 0 && this.state.suggestionsHidden) {
|
|
|
|
this.setState({ suggestionsHidden: false });
|
|
|
|
}
|
2017-01-03 08:36:48 +00:00
|
|
|
|
|
|
|
const fileDropDate = nextProps.fileDropDate;
|
|
|
|
const { isFileDragging, fileDraggingDate } = this.state;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We can't detect drop events, because they might not be on the textarea (the app allows dropping anywhere in the
|
|
|
|
* window). Instead, on-drop, we notify this textarea to stop its hover effect by passing in a prop with the
|
|
|
|
* drop-date.
|
|
|
|
*/
|
|
|
|
if (isFileDragging && fileDraggingDate && fileDropDate // if dragging when props updated, and dates aren't undefined
|
|
|
|
&& fileDropDate > fileDraggingDate) { // and if the drop date is now greater than when we started dragging
|
|
|
|
// then we should stop dragging
|
|
|
|
this.setState({
|
|
|
|
isFileDragging: false
|
|
|
|
});
|
|
|
|
}
|
2016-12-14 17:21:31 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
setTextarea (c) {
|
|
|
|
this.textarea = c;
|
|
|
|
},
|
|
|
|
|
2017-01-03 08:36:48 +00:00
|
|
|
onDragEnter () {
|
|
|
|
this.setState({
|
|
|
|
isFileDragging: true,
|
|
|
|
fileDraggingDate: new Date()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
onDragExit () {
|
|
|
|
this.setState({
|
|
|
|
isFileDragging: false
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2016-12-14 17:21:31 +00:00
|
|
|
render () {
|
2017-01-03 08:36:48 +00:00
|
|
|
const { value, suggestions, fileDropDate, disabled, placeholder, onKeyUp } = this.props;
|
|
|
|
const { isFileDragging, suggestionsHidden, selectedSuggestion } = this.state;
|
|
|
|
const className = isFileDragging ? 'autosuggest-textarea__textarea file-drop' : 'autosuggest-textarea__textarea';
|
2016-12-14 17:21:31 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='autosuggest-textarea'>
|
|
|
|
<textarea
|
|
|
|
ref={this.setTextarea}
|
2017-01-03 08:36:48 +00:00
|
|
|
className={className}
|
2016-12-14 17:21:31 +00:00
|
|
|
disabled={disabled}
|
|
|
|
placeholder={placeholder}
|
2017-01-30 20:40:55 +00:00
|
|
|
autoFocus={true}
|
2016-12-14 17:21:31 +00:00
|
|
|
value={value}
|
|
|
|
onChange={this.onChange}
|
|
|
|
onKeyDown={this.onKeyDown}
|
2016-12-14 17:38:28 +00:00
|
|
|
onKeyUp={onKeyUp}
|
2016-12-24 00:39:14 +00:00
|
|
|
onBlur={this.onBlur}
|
2017-01-03 08:36:48 +00:00
|
|
|
onDragEnter={this.onDragEnter}
|
|
|
|
onDragExit={this.onDragExit}
|
2016-12-14 17:21:31 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<div style={{ display: (suggestions.size > 0 && !suggestionsHidden) ? 'block' : 'none' }} className='autosuggest-textarea__suggestions'>
|
|
|
|
{suggestions.map((suggestion, i) => (
|
|
|
|
<div key={suggestion} className={`autosuggest-textarea__suggestions__item ${i === selectedSuggestion ? 'selected' : ''}`} onClick={this.onSuggestionClick.bind(this, suggestion)}>
|
|
|
|
<AutosuggestAccountContainer id={suggestion} />
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default AutosuggestTextarea;
|