2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2017-05-26 16:22:23 +00:00
|
|
|
import Textarea from 'react-textarea-autosize';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
|
|
|
import AutosuggestAccountContainer from '../features/compose/containers/autosuggest_account_container';
|
|
|
|
|
|
|
|
import AutosuggestEmoji from './autosuggest_emoji';
|
2023-06-19 12:11:46 +00:00
|
|
|
import { AutosuggestHashtag } from './autosuggest_hashtag';
|
2016-12-14 17:21:31 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-03-04 19:27:25 +00:00
|
|
|
if (!word || word.trim().length < 3 || ['@', ':', '#'].indexOf(word[0]) === -1) {
|
2016-12-14 17:21:31 +00:00
|
|
|
return [null, null];
|
|
|
|
}
|
|
|
|
|
2017-09-23 12:47:32 +00:00
|
|
|
word = word.trim().toLowerCase();
|
2016-12-14 17:21:31 +00:00
|
|
|
|
|
|
|
if (word.length > 0) {
|
|
|
|
return [left + 1, word];
|
|
|
|
} else {
|
|
|
|
return [null, null];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class AutosuggestTextarea extends ImmutablePureComponent {
|
2017-04-21 18:05:35 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
value: PropTypes.string,
|
|
|
|
suggestions: ImmutablePropTypes.list,
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
placeholder: PropTypes.string,
|
|
|
|
onSuggestionSelected: PropTypes.func.isRequired,
|
|
|
|
onSuggestionsClearRequested: PropTypes.func.isRequired,
|
|
|
|
onSuggestionsFetchRequested: PropTypes.func.isRequired,
|
|
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
onKeyUp: PropTypes.func,
|
|
|
|
onKeyDown: PropTypes.func,
|
|
|
|
onPaste: PropTypes.func.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
autoFocus: PropTypes.bool,
|
2023-01-24 17:49:21 +00:00
|
|
|
lang: PropTypes.string,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-05-20 15:31:47 +00:00
|
|
|
autoFocus: true,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
state = {
|
2019-05-09 20:10:27 +00:00
|
|
|
suggestionsHidden: true,
|
|
|
|
focused: false,
|
2017-05-24 15:55:16 +00:00
|
|
|
selectedSuggestion: 0,
|
|
|
|
lastToken: null,
|
|
|
|
tokenStart: 0,
|
|
|
|
};
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
onChange = (e) => {
|
2016-12-14 17:21:31 +00:00
|
|
|
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);
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
onKeyDown = (e) => {
|
2016-12-14 17:21:31 +00:00
|
|
|
const { suggestions, disabled } = this.props;
|
|
|
|
const { selectedSuggestion, suggestionsHidden } = this.state;
|
|
|
|
|
|
|
|
if (disabled) {
|
|
|
|
e.preventDefault();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-20 16:36:52 +00:00
|
|
|
if (e.which === 229 || e.isComposing) {
|
|
|
|
// Ignore key events during text composition
|
|
|
|
// e.key may be a name of the physical key even in this case (e.x. Safari / Chrome on Mac)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-14 17:21:31 +00:00
|
|
|
switch(e.key) {
|
2017-01-30 20:40:55 +00:00
|
|
|
case 'Escape':
|
2018-04-20 12:04:16 +00:00
|
|
|
if (suggestions.size === 0 || suggestionsHidden) {
|
|
|
|
document.querySelector('.ui').parentElement.focus();
|
|
|
|
} else {
|
2017-01-30 20:40:55 +00:00
|
|
|
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);
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
onBlur = () => {
|
2019-05-09 20:10:27 +00:00
|
|
|
this.setState({ suggestionsHidden: true, focused: false });
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2019-05-09 20:10:27 +00:00
|
|
|
|
2019-06-05 13:29:45 +00:00
|
|
|
onFocus = (e) => {
|
2019-05-09 20:10:27 +00:00
|
|
|
this.setState({ focused: true });
|
2019-06-05 13:29:45 +00:00
|
|
|
if (this.props.onFocus) {
|
|
|
|
this.props.onFocus(e);
|
|
|
|
}
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2016-12-24 00:39:14 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
onSuggestionClick = (e) => {
|
2017-09-23 12:47:32 +00:00
|
|
|
const suggestion = this.props.suggestions.get(e.currentTarget.getAttribute('data-index'));
|
2016-12-14 17:21:31 +00:00
|
|
|
e.preventDefault();
|
|
|
|
this.props.onSuggestionSelected(this.state.tokenStart, this.state.lastToken, suggestion);
|
2017-01-23 06:57:58 +00:00
|
|
|
this.textarea.focus();
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2023-05-10 07:05:32 +00:00
|
|
|
UNSAFE_componentWillReceiveProps (nextProps) {
|
2019-05-09 20:10:27 +00:00
|
|
|
if (nextProps.suggestions !== this.props.suggestions && nextProps.suggestions.size > 0 && this.state.suggestionsHidden && this.state.focused) {
|
2016-12-14 17:21:31 +00:00
|
|
|
this.setState({ suggestionsHidden: false });
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
setTextarea = (c) => {
|
2016-12-14 17:21:31 +00:00
|
|
|
this.textarea = c;
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
onPaste = (e) => {
|
2017-03-01 02:52:46 +00:00
|
|
|
if (e.clipboardData && e.clipboardData.files.length === 1) {
|
2017-05-20 15:31:47 +00:00
|
|
|
this.props.onPaste(e.clipboardData.files);
|
2017-03-01 02:52:46 +00:00
|
|
|
e.preventDefault();
|
|
|
|
}
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2017-03-01 02:52:46 +00:00
|
|
|
|
2017-09-23 12:47:32 +00:00
|
|
|
renderSuggestion = (suggestion, i) => {
|
|
|
|
const { selectedSuggestion } = this.state;
|
|
|
|
let inner, key;
|
|
|
|
|
2019-07-29 13:04:49 +00:00
|
|
|
if (suggestion.type === 'emoji') {
|
2017-09-23 12:47:32 +00:00
|
|
|
inner = <AutosuggestEmoji emoji={suggestion} />;
|
|
|
|
key = suggestion.id;
|
2019-07-29 13:04:49 +00:00
|
|
|
} else if (suggestion.type === 'hashtag') {
|
2019-07-28 12:37:52 +00:00
|
|
|
inner = <AutosuggestHashtag tag={suggestion} />;
|
|
|
|
key = suggestion.name;
|
2019-07-29 13:04:49 +00:00
|
|
|
} else if (suggestion.type === 'account') {
|
|
|
|
inner = <AutosuggestAccountContainer id={suggestion.id} />;
|
|
|
|
key = suggestion.id;
|
2017-09-23 12:47:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2023-04-04 14:33:44 +00:00
|
|
|
<div role='button' tabIndex={0} key={key} data-index={i} className={classNames('autosuggest-textarea__suggestions__item', { selected: i === selectedSuggestion })} onMouseDown={this.onSuggestionClick}>
|
2017-09-23 12:47:32 +00:00
|
|
|
{inner}
|
|
|
|
</div>
|
|
|
|
);
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2017-09-23 12:47:32 +00:00
|
|
|
|
2016-12-14 17:21:31 +00:00
|
|
|
render () {
|
2023-01-24 17:49:21 +00:00
|
|
|
const { value, suggestions, disabled, placeholder, onKeyUp, autoFocus, lang, children } = this.props;
|
2017-09-23 12:47:32 +00:00
|
|
|
const { suggestionsHidden } = this.state;
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2019-06-02 08:05:54 +00:00
|
|
|
return [
|
2019-06-07 15:15:18 +00:00
|
|
|
<div className='compose-form__autosuggest-wrapper' key='autosuggest-wrapper'>
|
2019-06-02 08:05:54 +00:00
|
|
|
<div className='autosuggest-textarea'>
|
|
|
|
<label>
|
|
|
|
<span style={{ display: 'none' }}>{placeholder}</span>
|
|
|
|
|
|
|
|
<Textarea
|
2020-06-02 01:24:04 +00:00
|
|
|
ref={this.setTextarea}
|
2019-06-02 08:05:54 +00:00
|
|
|
className='autosuggest-textarea__textarea'
|
|
|
|
disabled={disabled}
|
|
|
|
placeholder={placeholder}
|
|
|
|
autoFocus={autoFocus}
|
|
|
|
value={value}
|
|
|
|
onChange={this.onChange}
|
|
|
|
onKeyDown={this.onKeyDown}
|
|
|
|
onKeyUp={onKeyUp}
|
|
|
|
onFocus={this.onFocus}
|
|
|
|
onBlur={this.onBlur}
|
|
|
|
onPaste={this.onPaste}
|
2020-12-15 11:56:43 +00:00
|
|
|
dir='auto'
|
2019-06-02 08:05:54 +00:00
|
|
|
aria-autocomplete='list'
|
2023-01-24 17:49:21 +00:00
|
|
|
lang={lang}
|
2019-06-02 08:05:54 +00:00
|
|
|
/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
{children}
|
|
|
|
</div>,
|
2019-06-07 15:15:18 +00:00
|
|
|
|
|
|
|
<div className='autosuggest-textarea__suggestions-wrapper' key='suggestions-wrapper'>
|
2017-05-19 09:42:54 +00:00
|
|
|
<div className={`autosuggest-textarea__suggestions ${suggestionsHidden || suggestions.isEmpty() ? '' : 'autosuggest-textarea__suggestions--visible'}`}>
|
2017-09-23 12:47:32 +00:00
|
|
|
{suggestions.map(this.renderSuggestion)}
|
2016-12-14 17:21:31 +00:00
|
|
|
</div>
|
2019-06-02 08:05:54 +00:00
|
|
|
</div>,
|
|
|
|
];
|
2016-12-14 17:21:31 +00:00
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
}
|