2022-01-10 14:17:52 -08:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import { get } from 'lodash';
|
|
|
|
import PropTypes from 'prop-types';
|
2020-03-27 13:59:38 -07:00
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2022-01-10 14:01:24 -08:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2022-01-10 14:17:52 -08:00
|
|
|
import { defineMessages, FormattedMessage } from 'react-intl';
|
2022-03-17 18:17:28 -07:00
|
|
|
import { Link, withRouter } from 'react-router-dom';
|
2022-01-10 14:01:24 -08:00
|
|
|
import { length } from 'stringz';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2022-05-30 11:23:55 -07:00
|
|
|
import AutosuggestInput from 'soapbox/components/autosuggest_input';
|
|
|
|
import AutosuggestTextarea from 'soapbox/components/autosuggest_textarea';
|
2022-01-10 14:01:24 -08:00
|
|
|
import Icon from 'soapbox/components/icon';
|
2022-05-30 11:23:55 -07:00
|
|
|
import { Button } from 'soapbox/components/ui';
|
|
|
|
import { isMobile } from 'soapbox/is_mobile';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2022-04-10 03:07:03 -07:00
|
|
|
import ReplyMentions from '../components/reply_mentions';
|
2022-04-10 03:46:25 -07:00
|
|
|
import UploadForm from '../components/upload_form';
|
2022-01-10 14:17:52 -08:00
|
|
|
import Warning from '../components/warning';
|
|
|
|
import EmojiPickerDropdown from '../containers/emoji_picker_dropdown_container';
|
|
|
|
import MarkdownButtonContainer from '../containers/markdown_button_container';
|
|
|
|
import PollButtonContainer from '../containers/poll_button_container';
|
|
|
|
import PollFormContainer from '../containers/poll_form_container';
|
|
|
|
import PrivacyDropdownContainer from '../containers/privacy_dropdown_container';
|
2022-01-23 09:44:17 -08:00
|
|
|
import QuotedStatusContainer from '../containers/quoted_status_container';
|
2020-03-27 13:59:38 -07:00
|
|
|
import ReplyIndicatorContainer from '../containers/reply_indicator_container';
|
2021-06-18 09:04:31 -07:00
|
|
|
import ScheduleButtonContainer from '../containers/schedule_button_container';
|
2022-01-10 14:17:52 -08:00
|
|
|
import ScheduleFormContainer from '../containers/schedule_form_container';
|
|
|
|
import SpoilerButtonContainer from '../containers/spoiler_button_container';
|
|
|
|
import UploadButtonContainer from '../containers/upload_button_container';
|
2020-03-27 13:59:38 -07:00
|
|
|
import WarningContainer from '../containers/warning_container';
|
|
|
|
import { countableText } from '../util/counter';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
import TextCharacterCounter from './text_character_counter';
|
2022-01-10 14:01:24 -08:00
|
|
|
import VisualCharacterCounter from './visual_character_counter';
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
const allowedAroundShortCode = '><\u0085\u0020\u00a0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\u0009\u000a\u000b\u000c\u000d';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
2020-04-14 11:44:40 -07:00
|
|
|
placeholder: { id: 'compose_form.placeholder', defaultMessage: 'What\'s on your mind?' },
|
2020-03-27 13:59:38 -07:00
|
|
|
spoiler_placeholder: { id: 'compose_form.spoiler_placeholder', defaultMessage: 'Write your warning here' },
|
2022-04-19 13:24:12 -07:00
|
|
|
publish: { id: 'compose_form.publish', defaultMessage: 'Post' },
|
2020-03-27 13:59:38 -07:00
|
|
|
publishLoud: { id: 'compose_form.publish_loud', defaultMessage: '{publish}!' },
|
2021-10-13 12:24:22 -07:00
|
|
|
message: { id: 'compose_form.message', defaultMessage: 'Message' },
|
2021-06-27 22:36:44 -07:00
|
|
|
schedule: { id: 'compose_form.schedule', defaultMessage: 'Schedule' },
|
2022-04-27 13:50:35 -07:00
|
|
|
saveChanges: { id: 'compose_form.save_changes', defaultMessage: 'Save changes' },
|
2020-03-27 13:59:38 -07:00
|
|
|
});
|
|
|
|
|
2022-03-17 18:17:28 -07:00
|
|
|
export default @withRouter
|
|
|
|
class ComposeForm extends ImmutablePureComponent {
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
state = {
|
|
|
|
composeFocused: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
text: PropTypes.string.isRequired,
|
|
|
|
suggestions: ImmutablePropTypes.list,
|
|
|
|
spoiler: PropTypes.bool,
|
|
|
|
privacy: PropTypes.string,
|
|
|
|
spoilerText: PropTypes.string,
|
|
|
|
focusDate: PropTypes.instanceOf(Date),
|
|
|
|
caretPosition: PropTypes.number,
|
|
|
|
isSubmitting: PropTypes.bool,
|
|
|
|
isChangingUpload: PropTypes.bool,
|
2022-04-27 13:50:35 -07:00
|
|
|
isEditing: PropTypes.bool,
|
2020-03-27 13:59:38 -07:00
|
|
|
isUploading: PropTypes.bool,
|
|
|
|
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,
|
|
|
|
anyMedia: PropTypes.bool,
|
|
|
|
shouldCondense: PropTypes.bool,
|
|
|
|
autoFocus: PropTypes.bool,
|
|
|
|
group: ImmutablePropTypes.map,
|
|
|
|
isModalOpen: PropTypes.bool,
|
2020-04-15 13:21:53 -07:00
|
|
|
clickableAreaRef: PropTypes.object,
|
2021-06-18 09:04:31 -07:00
|
|
|
scheduledAt: PropTypes.instanceOf(Date),
|
2022-03-04 10:47:59 -08:00
|
|
|
features: PropTypes.object.isRequired,
|
2020-03-27 13:59:38 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
showSearch: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleChange = (e) => {
|
|
|
|
this.props.onChange(e.target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleComposeFocus = () => {
|
|
|
|
this.setState({
|
|
|
|
composeFocused: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyDown = (e) => {
|
|
|
|
if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
|
|
|
|
this.handleSubmit();
|
2020-05-30 15:29:50 -07:00
|
|
|
e.preventDefault(); // Prevent bubbling to other ComposeForm instances
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-15 13:21:53 -07:00
|
|
|
getClickableArea = () => {
|
|
|
|
const { clickableAreaRef } = this.props;
|
|
|
|
return clickableAreaRef ? clickableAreaRef.current : this.form;
|
|
|
|
}
|
|
|
|
|
2021-05-17 13:13:42 -07:00
|
|
|
isEmpty = () => {
|
|
|
|
const { text, spoilerText, anyMedia } = this.props;
|
|
|
|
return !(text || spoilerText || anyMedia);
|
|
|
|
}
|
|
|
|
|
2020-05-26 13:26:07 -07:00
|
|
|
isClickOutside = (e) => {
|
2020-04-20 14:53:22 -07:00
|
|
|
return ![
|
2020-05-26 13:26:07 -07:00
|
|
|
// List of elements that shouldn't collapse the composer when clicked
|
|
|
|
// FIXME: Make this less brittle
|
2020-04-20 14:53:22 -07:00
|
|
|
this.getClickableArea(),
|
|
|
|
document.querySelector('.privacy-dropdown__dropdown'),
|
|
|
|
document.querySelector('.emoji-picker-dropdown__menu'),
|
2022-03-21 11:09:01 -07:00
|
|
|
document.getElementById('modal-overlay'),
|
2022-02-18 18:04:03 -08:00
|
|
|
].some(element => element?.contains(e.target));
|
2020-04-20 14:53:22 -07:00
|
|
|
}
|
|
|
|
|
2020-03-27 13:59:38 -07:00
|
|
|
handleClick = (e) => {
|
2021-05-17 13:13:42 -07:00
|
|
|
if (this.isEmpty() && this.isClickOutside(e)) {
|
2020-03-27 13:59:38 -07:00
|
|
|
this.handleClickOutside();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleClickOutside = () => {
|
|
|
|
this.setState({
|
|
|
|
composeFocused: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSubmit = () => {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Submit disabled:
|
2020-04-01 13:15:55 -07:00
|
|
|
const { isSubmitting, isChangingUpload, isUploading, anyMedia, maxTootChars } = this.props;
|
2020-03-27 13:59:38 -07:00
|
|
|
const fulltext = [this.props.spoilerText, countableText(this.props.text)].join('');
|
|
|
|
|
2020-03-30 14:47:22 -07:00
|
|
|
if (isSubmitting || isUploading || isChangingUpload || length(fulltext) > maxTootChars || (fulltext.length !== 0 && fulltext.trim().length === 0 && !anyMedia)) {
|
2020-03-27 13:59:38 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-17 18:17:28 -07:00
|
|
|
this.props.onSubmit(this.props.history ? this.props.history : null, this.props.group);
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
onSuggestionsClearRequested = () => {
|
|
|
|
this.props.onClearSuggestions();
|
|
|
|
}
|
|
|
|
|
|
|
|
onSuggestionsFetchRequested = (token) => {
|
|
|
|
this.props.onFetchSuggestions(token);
|
|
|
|
}
|
|
|
|
|
|
|
|
onSuggestionSelected = (tokenStart, token, value) => {
|
|
|
|
this.props.onSuggestionSelected(tokenStart, token, value, ['text']);
|
|
|
|
}
|
|
|
|
|
|
|
|
onSpoilerSuggestionSelected = (tokenStart, token, value) => {
|
|
|
|
this.props.onSuggestionSelected(tokenStart, token, value, ['spoiler_text']);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleChangeSpoilerText = (e) => {
|
|
|
|
this.props.onChangeSpoilerText(e.target.value);
|
|
|
|
}
|
|
|
|
|
2020-05-26 14:11:24 -07:00
|
|
|
setCursor = (start, end = start) => {
|
|
|
|
if (!this.autosuggestTextarea) return;
|
|
|
|
this.autosuggestTextarea.textarea.setSelectionRange(start, end);
|
|
|
|
}
|
|
|
|
|
2020-03-27 13:59:38 -07:00
|
|
|
componentDidMount() {
|
2021-05-02 13:30:29 -07:00
|
|
|
const length = this.props.text.length;
|
2020-04-15 13:32:05 -07:00
|
|
|
document.addEventListener('click', this.handleClick, true);
|
2021-05-02 13:30:29 -07:00
|
|
|
|
|
|
|
if (length > 0) {
|
|
|
|
this.setCursor(length); // Set cursor at end
|
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
2020-04-15 13:32:05 -07:00
|
|
|
document.removeEventListener('click', this.handleClick, true);
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
setAutosuggestTextarea = (c) => {
|
|
|
|
this.autosuggestTextarea = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
setForm = (c) => {
|
|
|
|
this.form = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
setSpoilerText = (c) => {
|
|
|
|
this.spoilerText = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleEmojiPick = (data) => {
|
2022-05-24 03:24:26 -07:00
|
|
|
const { text } = this.props;
|
|
|
|
const position = this.autosuggestTextarea.textarea.selectionStart;
|
|
|
|
const needsSpace = data.custom && position > 0 && !allowedAroundShortCode.includes(text[position - 1]);
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
this.props.onPickEmoji(position, data, needsSpace);
|
|
|
|
}
|
|
|
|
|
2020-05-28 12:44:36 -07:00
|
|
|
focusSpoilerInput = () => {
|
|
|
|
const spoilerInput = get(this, ['spoilerText', 'input']);
|
|
|
|
if (spoilerInput) spoilerInput.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
focusTextarea = () => {
|
|
|
|
const textarea = get(this, ['autosuggestTextarea', 'textarea']);
|
|
|
|
if (textarea) textarea.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
maybeUpdateFocus = prevProps => {
|
|
|
|
const spoilerUpdated = this.props.spoiler !== prevProps.spoiler;
|
|
|
|
if (spoilerUpdated) {
|
|
|
|
switch (this.props.spoiler) {
|
2022-05-11 14:06:35 -07:00
|
|
|
case true: this.focusSpoilerInput(); break;
|
|
|
|
case false: this.focusTextarea(); break;
|
2020-05-28 12:44:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-28 19:58:56 -07:00
|
|
|
maybeUpdateCursor = prevProps => {
|
|
|
|
const shouldUpdate = [
|
|
|
|
// Autosuggest has been updated and
|
|
|
|
// the cursor position explicitly set
|
|
|
|
this.props.focusDate !== prevProps.focusDate,
|
|
|
|
typeof this.props.caretPosition === 'number',
|
|
|
|
].every(Boolean);
|
|
|
|
|
|
|
|
if (shouldUpdate) {
|
|
|
|
this.setCursor(this.props.caretPosition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-28 12:44:36 -07:00
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
this.maybeUpdateFocus(prevProps);
|
2020-09-28 19:58:56 -07:00
|
|
|
this.maybeUpdateCursor(prevProps);
|
2020-05-28 12:44:36 -07:00
|
|
|
}
|
|
|
|
|
2020-04-14 14:47:35 -07:00
|
|
|
render() {
|
2022-03-04 10:47:59 -08:00
|
|
|
const { intl, onPaste, showSearch, anyMedia, shouldCondense, autoFocus, isModalOpen, maxTootChars, scheduledStatusCount, features } = this.props;
|
2021-05-17 13:13:42 -07:00
|
|
|
const condensed = shouldCondense && !this.state.composeFocused && this.isEmpty() && !this.props.isUploading;
|
2020-03-27 13:59:38 -07:00
|
|
|
const disabled = this.props.isSubmitting;
|
|
|
|
const text = [this.props.spoilerText, countableText(this.props.text)].join('');
|
2020-03-30 14:47:22 -07:00
|
|
|
const disabledButton = disabled || this.props.isUploading || this.props.isChangingUpload || length(text) > maxTootChars || (text.length !== 0 && text.trim().length === 0 && !anyMedia);
|
2020-04-14 11:44:40 -07:00
|
|
|
const shouldAutoFocus = autoFocus && !showSearch && !isMobile(window.innerWidth);
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
let publishText = '';
|
|
|
|
|
2022-04-27 13:50:35 -07:00
|
|
|
if (this.props.isEditing) {
|
|
|
|
publishText = intl.formatMessage(messages.saveChanges);
|
|
|
|
} else if (this.props.privacy === 'direct') {
|
2021-10-13 12:24:22 -07:00
|
|
|
publishText = (
|
|
|
|
<>
|
|
|
|
<Icon src={require('@tabler/icons/icons/mail.svg')} />
|
|
|
|
{intl.formatMessage(messages.message)}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
} else if (this.props.privacy === 'private') {
|
|
|
|
publishText = (
|
|
|
|
<>
|
|
|
|
<Icon src={require('@tabler/icons/icons/lock.svg')} />
|
|
|
|
{intl.formatMessage(messages.publish)}
|
|
|
|
</>
|
|
|
|
);
|
2020-03-27 13:59:38 -07:00
|
|
|
} else {
|
|
|
|
publishText = this.props.privacy !== 'unlisted' ? intl.formatMessage(messages.publishLoud, { publish: intl.formatMessage(messages.publish) }) : intl.formatMessage(messages.publish);
|
|
|
|
}
|
|
|
|
|
2021-06-27 22:36:44 -07:00
|
|
|
if (this.props.scheduledAt) {
|
|
|
|
publishText = intl.formatMessage(messages.schedule);
|
|
|
|
}
|
|
|
|
|
2020-03-27 13:59:38 -07:00
|
|
|
return (
|
2022-03-21 11:09:01 -07:00
|
|
|
<div className='w-full' ref={this.setForm} onClick={this.handleClick}>
|
2021-06-27 15:15:57 -07:00
|
|
|
{scheduledStatusCount > 0 && (
|
|
|
|
<Warning
|
|
|
|
message={(
|
|
|
|
<FormattedMessage
|
|
|
|
id='compose_form.scheduled_statuses.message'
|
2021-06-27 17:44:40 -07:00
|
|
|
defaultMessage='You have scheduled posts. {click_here} to see them.'
|
2021-06-27 15:15:57 -07:00
|
|
|
values={{ click_here: (
|
|
|
|
<Link to='/scheduled_statuses'>
|
|
|
|
<FormattedMessage
|
|
|
|
id='compose_form.scheduled_statuses.click_here'
|
|
|
|
defaultMessage='Click here'
|
|
|
|
/>
|
|
|
|
</Link>
|
|
|
|
) }}
|
|
|
|
/>)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
2020-03-27 13:59:38 -07:00
|
|
|
<WarningContainer />
|
|
|
|
|
2022-01-04 12:06:08 -08:00
|
|
|
{!shouldCondense && <ReplyIndicatorContainer />}
|
|
|
|
|
|
|
|
{!shouldCondense && <ReplyMentions />}
|
2020-03-27 13:59:38 -07:00
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
<div
|
|
|
|
className={classNames({
|
|
|
|
'relative transition-height': true,
|
|
|
|
'hidden': !this.props.spoiler,
|
|
|
|
})}
|
|
|
|
>
|
2020-03-27 13:59:38 -07:00
|
|
|
<AutosuggestInput
|
|
|
|
placeholder={intl.formatMessage(messages.spoiler_placeholder)}
|
|
|
|
value={this.props.spoilerText}
|
|
|
|
onChange={this.handleChangeSpoilerText}
|
|
|
|
onKeyDown={this.handleKeyDown}
|
|
|
|
disabled={!this.props.spoiler}
|
|
|
|
ref={this.setSpoilerText}
|
|
|
|
suggestions={this.props.suggestions}
|
|
|
|
onSuggestionsFetchRequested={this.onSuggestionsFetchRequested}
|
|
|
|
onSuggestionsClearRequested={this.onSuggestionsClearRequested}
|
|
|
|
onSuggestionSelected={this.onSpoilerSuggestionSelected}
|
|
|
|
searchTokens={[':']}
|
|
|
|
id='cw-spoiler-input'
|
2022-03-26 21:53:44 -07:00
|
|
|
className='mb-2 border-none shadow-none px-0 py-2 text-base'
|
2021-10-14 10:35:05 -07:00
|
|
|
autoFocus
|
2020-03-27 13:59:38 -07:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<AutosuggestTextarea
|
|
|
|
ref={(isModalOpen && shouldCondense) ? null : this.setAutosuggestTextarea}
|
|
|
|
placeholder={intl.formatMessage(messages.placeholder)}
|
|
|
|
disabled={disabled}
|
|
|
|
value={this.props.text}
|
|
|
|
onChange={this.handleChange}
|
|
|
|
suggestions={this.props.suggestions}
|
|
|
|
onKeyDown={this.handleKeyDown}
|
|
|
|
onFocus={this.handleComposeFocus}
|
|
|
|
onSuggestionsFetchRequested={this.onSuggestionsFetchRequested}
|
|
|
|
onSuggestionsClearRequested={this.onSuggestionsClearRequested}
|
|
|
|
onSuggestionSelected={this.onSuggestionSelected}
|
|
|
|
onPaste={onPaste}
|
|
|
|
autoFocus={shouldAutoFocus}
|
2022-03-21 11:09:01 -07:00
|
|
|
condensed={condensed}
|
|
|
|
id='compose-textarea'
|
2020-03-27 13:59:38 -07:00
|
|
|
>
|
|
|
|
{
|
|
|
|
!condensed &&
|
|
|
|
<div className='compose-form__modifiers'>
|
2022-04-10 03:46:25 -07:00
|
|
|
<UploadForm />
|
2020-03-27 13:59:38 -07:00
|
|
|
<PollFormContainer />
|
2021-06-18 09:04:31 -07:00
|
|
|
<ScheduleFormContainer />
|
2020-03-27 13:59:38 -07:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</AutosuggestTextarea>
|
|
|
|
|
2022-05-26 11:38:24 -07:00
|
|
|
<div className='mb-2'>
|
|
|
|
<QuotedStatusContainer />
|
|
|
|
</div>
|
2022-01-23 09:44:17 -08:00
|
|
|
|
2022-03-21 11:09:01 -07:00
|
|
|
<div
|
2022-04-13 13:49:36 -07:00
|
|
|
className={classNames('flex flex-wrap items-center justify-between', {
|
2022-03-21 11:09:01 -07:00
|
|
|
'hidden': condensed,
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<div className='flex items-center space-x-2'>
|
2022-03-04 10:47:59 -08:00
|
|
|
{features.media && <UploadButtonContainer />}
|
2022-04-25 15:38:42 -07:00
|
|
|
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />
|
2022-03-04 10:47:59 -08:00
|
|
|
{features.polls && <PollButtonContainer />}
|
|
|
|
{features.privacyScopes && <PrivacyDropdownContainer />}
|
|
|
|
{features.scheduledStatuses && <ScheduleButtonContainer />}
|
|
|
|
{features.spoilers && <SpoilerButtonContainer />}
|
|
|
|
{features.richText && <MarkdownButtonContainer />}
|
2021-10-19 10:46:01 -07:00
|
|
|
</div>
|
2022-03-21 11:09:01 -07:00
|
|
|
|
2022-04-13 13:49:36 -07:00
|
|
|
<div className='flex items-center space-x-4 ml-auto'>
|
2022-03-21 11:09:01 -07:00
|
|
|
{maxTootChars && (
|
|
|
|
<div className='flex items-center space-x-1'>
|
|
|
|
<TextCharacterCounter max={maxTootChars} text={text} />
|
|
|
|
<VisualCharacterCounter max={maxTootChars} text={text} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<Button theme='primary' text={publishText} onClick={this.handleSubmit} disabled={disabledButton} />
|
2020-03-27 13:59:38 -07:00
|
|
|
</div>
|
2021-10-19 10:46:01 -07:00
|
|
|
</div>
|
2020-03-27 13:59:38 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|