2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-11-12 13:33:21 +00:00
|
|
|
import CharacterCounter from './character_counter';
|
|
|
|
import Button from '../../../components/button';
|
2016-08-31 20:58:10 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-02-22 14:43:07 +00:00
|
|
|
import ReplyIndicatorContainer from '../containers/reply_indicator_container';
|
2016-12-14 17:21:31 +00:00
|
|
|
import AutosuggestTextarea from '../../../components/autosuggest_textarea';
|
2017-05-06 09:05:32 +00:00
|
|
|
import { debounce } from 'lodash';
|
2016-11-13 18:08:52 +00:00
|
|
|
import UploadButtonContainer from '../containers/upload_button_container';
|
2017-06-23 14:05:04 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-02-13 16:20:18 +00:00
|
|
|
import Collapsable from '../../../components/collapsable';
|
2017-03-24 23:01:43 +00:00
|
|
|
import SpoilerButtonContainer from '../containers/spoiler_button_container';
|
|
|
|
import PrivacyDropdownContainer from '../containers/privacy_dropdown_container';
|
|
|
|
import SensitiveButtonContainer from '../containers/sensitive_button_container';
|
2017-03-01 23:57:55 +00:00
|
|
|
import EmojiPickerDropdown from './emoji_picker_dropdown';
|
2017-03-24 23:01:43 +00:00
|
|
|
import UploadFormContainer from '../containers/upload_form_container';
|
2017-04-23 22:38:37 +00:00
|
|
|
import WarningContainer from '../containers/warning_container';
|
2017-07-24 17:54:39 +00:00
|
|
|
import { isMobile } from '../../../is_mobile';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-06-19 09:31:14 +00:00
|
|
|
import { length } from 'stringz';
|
2017-07-28 22:06:29 +00:00
|
|
|
import { countableText } from '../util/counter';
|
2016-11-18 14:36:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
placeholder: { id: 'compose_form.placeholder', defaultMessage: 'What is on your mind?' },
|
2017-07-24 12:49:06 +00:00
|
|
|
spoiler_placeholder: { id: 'compose_form.spoiler_placeholder', defaultMessage: 'Write your warning here' },
|
2017-05-16 22:54:24 +00:00
|
|
|
publish: { id: 'compose_form.publish', defaultMessage: 'Toot' },
|
|
|
|
publishLoud: { id: 'compose_form.publish_loud', defaultMessage: '{publish}!' },
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-10-30 17:13:05 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@injectIntl
|
|
|
|
export default class ComposeForm extends ImmutablePureComponent {
|
2017-04-21 18:05:35 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
text: PropTypes.string.isRequired,
|
|
|
|
suggestion_token: PropTypes.string,
|
|
|
|
suggestions: ImmutablePropTypes.list,
|
|
|
|
spoiler: PropTypes.bool,
|
|
|
|
privacy: PropTypes.string,
|
|
|
|
spoiler_text: PropTypes.string,
|
|
|
|
focusDate: PropTypes.instanceOf(Date),
|
|
|
|
preselectDate: PropTypes.instanceOf(Date),
|
|
|
|
is_submitting: PropTypes.bool,
|
|
|
|
is_uploading: PropTypes.bool,
|
|
|
|
me: PropTypes.number,
|
|
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
onSubmit: PropTypes.func.isRequired,
|
|
|
|
onClearSuggestions: PropTypes.func.isRequired,
|
|
|
|
onFetchSuggestions: PropTypes.func.isRequired,
|
|
|
|
onSuggestionSelected: PropTypes.func.isRequired,
|
|
|
|
onChangeSpoilerText: PropTypes.func.isRequired,
|
|
|
|
onPaste: PropTypes.func.isRequired,
|
|
|
|
onPickEmoji: PropTypes.func.isRequired,
|
|
|
|
showSearch: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-05-20 15:31:47 +00:00
|
|
|
showSearch: false,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
handleChange = (e) => {
|
2016-08-31 14:15:12 +00:00
|
|
|
this.props.onChange(e.target.value);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-08-25 17:52:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleKeyDown = (e) => {
|
2016-12-11 22:54:32 +00:00
|
|
|
if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
|
2017-05-02 18:08:21 +00:00
|
|
|
this.handleSubmit();
|
2016-08-25 17:52:55 +00:00
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-08-25 17:52:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleSubmit = () => {
|
2017-06-25 19:43:27 +00:00
|
|
|
if (this.props.text !== this.autosuggestTextarea.textarea.value) {
|
|
|
|
// Something changed the text inside the textarea (e.g. browser extensions like Grammarly)
|
|
|
|
// Update the state to match the current text
|
|
|
|
this.props.onChange(this.autosuggestTextarea.textarea.value);
|
|
|
|
}
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
this.props.onSubmit();
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-08-25 17:52:55 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
onSuggestionsClearRequested = () => {
|
2016-10-30 17:13:05 +00:00
|
|
|
this.props.onClearSuggestions();
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-30 17:13:05 +00:00
|
|
|
|
2017-06-18 23:50:56 +00:00
|
|
|
onSuggestionsFetchRequested = debounce((token) => {
|
2016-12-14 17:21:31 +00:00
|
|
|
this.props.onFetchSuggestions(token);
|
2017-06-18 23:50:56 +00:00
|
|
|
}, 500, { trailing: true })
|
2016-10-30 17:13:05 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
onSuggestionSelected = (tokenStart, token, value) => {
|
2017-03-01 23:57:55 +00:00
|
|
|
this._restoreCaret = null;
|
2016-12-14 17:21:31 +00:00
|
|
|
this.props.onSuggestionSelected(tokenStart, token, value);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-12 13:33:21 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleChangeSpoilerText = (e) => {
|
2017-01-13 04:54:26 +00:00
|
|
|
this.props.onChangeSpoilerText(e.target.value);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-01-13 04:54:26 +00:00
|
|
|
|
2017-04-10 19:30:58 +00:00
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
// If this is the update where we've finished uploading,
|
|
|
|
// save the last caret position so we can restore it below!
|
|
|
|
if (!nextProps.is_uploading && this.props.is_uploading) {
|
|
|
|
this._restoreCaret = this.autosuggestTextarea.textarea.selectionStart;
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-10 19:30:58 +00:00
|
|
|
|
2016-12-14 17:21:31 +00:00
|
|
|
componentDidUpdate (prevProps) {
|
2017-04-15 00:57:26 +00:00
|
|
|
// This statement does several things:
|
2017-04-10 19:30:58 +00:00
|
|
|
// - If we're beginning a reply, and,
|
|
|
|
// - Replying to zero or one users, places the cursor at the end of the textbox.
|
|
|
|
// - Replying to more than one user, selects any usernames past the first;
|
|
|
|
// this provides a convenient shortcut to drop everyone else from the conversation.
|
|
|
|
// - If we've just finished uploading an image, and have a saved caret position,
|
|
|
|
// restores the cursor to that position after the text changes!
|
|
|
|
if (this.props.focusDate !== prevProps.focusDate || (prevProps.is_uploading && !this.props.is_uploading && typeof this._restoreCaret === 'number')) {
|
2017-03-01 23:57:55 +00:00
|
|
|
let selectionEnd, selectionStart;
|
|
|
|
|
|
|
|
if (this.props.preselectDate !== prevProps.preselectDate) {
|
|
|
|
selectionEnd = this.props.text.length;
|
|
|
|
selectionStart = this.props.text.search(/\s/) + 1;
|
|
|
|
} else if (typeof this._restoreCaret === 'number') {
|
|
|
|
selectionStart = this._restoreCaret;
|
|
|
|
selectionEnd = this._restoreCaret;
|
|
|
|
} else {
|
|
|
|
selectionEnd = this.props.text.length;
|
|
|
|
selectionStart = selectionEnd;
|
|
|
|
}
|
2017-01-05 04:04:14 +00:00
|
|
|
|
2017-01-05 13:06:09 +00:00
|
|
|
this.autosuggestTextarea.textarea.setSelectionRange(selectionStart, selectionEnd);
|
2016-12-14 17:21:31 +00:00
|
|
|
this.autosuggestTextarea.textarea.focus();
|
2017-06-03 23:22:37 +00:00
|
|
|
} else if(prevProps.is_submitting && !this.props.is_submitting) {
|
|
|
|
this.autosuggestTextarea.textarea.focus();
|
2016-12-14 17:21:31 +00:00
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
setAutosuggestTextarea = (c) => {
|
2016-12-14 17:21:31 +00:00
|
|
|
this.autosuggestTextarea = c;
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-14 17:21:31 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleEmojiPick = (data) => {
|
2017-03-01 23:57:55 +00:00
|
|
|
const position = this.autosuggestTextarea.textarea.selectionStart;
|
2017-07-17 08:57:45 +00:00
|
|
|
const emojiChar = data.unicode.split('-').map(code => String.fromCodePoint(parseInt(code, 16))).join('');
|
2017-07-14 17:47:53 +00:00
|
|
|
this._restoreCaret = position + emojiChar.length + 1;
|
2017-03-01 23:57:55 +00:00
|
|
|
this.props.onPickEmoji(position, data);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
|
2016-08-25 17:52:55 +00:00
|
|
|
render () {
|
2017-05-10 00:51:43 +00:00
|
|
|
const { intl, onPaste, showSearch } = this.props;
|
2017-04-10 19:30:58 +00:00
|
|
|
const disabled = this.props.is_submitting;
|
2017-07-28 22:06:29 +00:00
|
|
|
const text = [this.props.spoiler_text, countableText(this.props.text)].join('');
|
2017-02-13 17:38:00 +00:00
|
|
|
|
2017-07-28 22:06:29 +00:00
|
|
|
let publishText = '';
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2017-03-25 19:24:30 +00:00
|
|
|
if (this.props.privacy === 'private' || this.props.privacy === 'direct') {
|
2017-04-23 02:26:55 +00:00
|
|
|
publishText = <span className='compose-form__publish-private'><i className='fa fa-lock' /> {intl.formatMessage(messages.publish)}</span>;
|
2017-02-06 22:16:20 +00:00
|
|
|
} else {
|
2017-05-16 22:54:24 +00:00
|
|
|
publishText = this.props.privacy !== 'unlisted' ? intl.formatMessage(messages.publishLoud, { publish: intl.formatMessage(messages.publish) }) : intl.formatMessage(messages.publish);
|
2017-02-06 22:16:20 +00:00
|
|
|
}
|
|
|
|
|
2016-08-25 17:52:55 +00:00
|
|
|
return (
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='compose-form'>
|
2017-02-13 16:20:18 +00:00
|
|
|
<Collapsable isVisible={this.props.spoiler} fullHeight={50}>
|
2017-06-06 01:56:36 +00:00
|
|
|
<div className='spoiler-input'>
|
2017-07-27 22:54:48 +00:00
|
|
|
<label>
|
|
|
|
<span style={{ display: 'none' }}>{intl.formatMessage(messages.spoiler_placeholder)}</span>
|
|
|
|
<input placeholder={intl.formatMessage(messages.spoiler_placeholder)} value={this.props.spoiler_text} onChange={this.handleChangeSpoilerText} onKeyDown={this.handleKeyDown} type='text' className='spoiler-input__input' id='cw-spoiler-input' />
|
|
|
|
</label>
|
2017-02-13 16:20:18 +00:00
|
|
|
</div>
|
|
|
|
</Collapsable>
|
2017-01-13 04:54:26 +00:00
|
|
|
|
2017-04-23 22:38:37 +00:00
|
|
|
<WarningContainer />
|
2017-02-22 14:43:07 +00:00
|
|
|
|
|
|
|
<ReplyIndicatorContainer />
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='compose-form__autosuggest-wrapper'>
|
2017-03-24 23:01:43 +00:00
|
|
|
<AutosuggestTextarea
|
|
|
|
ref={this.setAutosuggestTextarea}
|
|
|
|
placeholder={intl.formatMessage(messages.placeholder)}
|
|
|
|
disabled={disabled}
|
|
|
|
value={this.props.text}
|
|
|
|
onChange={this.handleChange}
|
|
|
|
suggestions={this.props.suggestions}
|
|
|
|
onKeyDown={this.handleKeyDown}
|
|
|
|
onSuggestionsFetchRequested={this.onSuggestionsFetchRequested}
|
|
|
|
onSuggestionsClearRequested={this.onSuggestionsClearRequested}
|
|
|
|
onSuggestionSelected={this.onSuggestionSelected}
|
|
|
|
onPaste={onPaste}
|
2017-07-24 17:54:39 +00:00
|
|
|
autoFocus={!showSearch && !isMobile(window.innerWidth)}
|
2017-03-24 23:01:43 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='compose-form__modifiers'>
|
|
|
|
<UploadFormContainer />
|
|
|
|
</div>
|
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='compose-form__buttons-wrapper'>
|
2017-03-24 23:01:43 +00:00
|
|
|
<div className='compose-form__buttons'>
|
2017-03-01 23:57:55 +00:00
|
|
|
<UploadButtonContainer />
|
2017-03-24 23:01:43 +00:00
|
|
|
<PrivacyDropdownContainer />
|
|
|
|
<SensitiveButtonContainer />
|
|
|
|
<SpoilerButtonContainer />
|
2017-03-01 23:57:55 +00:00
|
|
|
</div>
|
2016-11-23 17:53:23 +00:00
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='compose-form__publish'>
|
|
|
|
<div className='character-counter__wrapper'><CharacterCounter max={500} text={text} /></div>
|
2017-07-28 22:06:29 +00:00
|
|
|
<div className='compose-form__publish-button-wrapper'><Button text={publishText} onClick={this.handleSubmit} disabled={disabled || this.props.is_uploading || length(text) > 500 || (text.length !== 0 && text.trim().length === 0)} block /></div>
|
2017-03-26 11:08:15 +00:00
|
|
|
</div>
|
2017-03-24 23:01:43 +00:00
|
|
|
</div>
|
2016-08-25 17:52:55 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|