kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Get rid of PollFormContainer
rodzic
fe9ce637e8
commit
fb94cb8cd1
|
@ -14,13 +14,13 @@ import Icon from 'soapbox/components/icon';
|
|||
import { Button } from 'soapbox/components/ui';
|
||||
import { isMobile } from 'soapbox/is_mobile';
|
||||
|
||||
import PollForm from '../components/polls/poll-form';
|
||||
import ReplyMentions from '../components/reply_mentions';
|
||||
import UploadForm from '../components/upload_form';
|
||||
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';
|
||||
import QuotedStatusContainer from '../containers/quoted_status_container';
|
||||
import ReplyIndicatorContainer from '../containers/reply_indicator_container';
|
||||
|
@ -361,7 +361,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
!condensed &&
|
||||
<div className='compose-form__modifiers'>
|
||||
<UploadForm />
|
||||
<PollFormContainer />
|
||||
<PollForm />
|
||||
<ScheduleFormContainer />
|
||||
</div>
|
||||
}
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
import React from 'react';
|
||||
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||
|
||||
import { addPollOption, changePollOption, changePollSettings, clearComposeSuggestions, fetchComposeSuggestions, removePoll, removePollOption, selectComposeSuggestion } from 'soapbox/actions/compose';
|
||||
import AutosuggestInput from 'soapbox/components/autosuggest_input';
|
||||
import { Button, Divider, HStack, Stack, Text, Toggle } from 'soapbox/components/ui';
|
||||
import { useAppSelector } from 'soapbox/hooks';
|
||||
import { useAppDispatch, useAppSelector } from 'soapbox/hooks';
|
||||
|
||||
import DurationSelector from './duration-selector';
|
||||
|
||||
|
@ -31,12 +32,8 @@ interface IOption {
|
|||
maxChars: number
|
||||
numOptions: number
|
||||
onChange(index: number, value: string): void
|
||||
onClearSuggestions(): void
|
||||
onFetchSuggestions(token: string): void
|
||||
onRemove(index: number): void
|
||||
onRemovePoll(): void
|
||||
onSuggestionSelected(tokenStart: number, token: string, value: string, key: (string | number)[]): void
|
||||
suggestions?: any // list
|
||||
title: string
|
||||
}
|
||||
|
||||
|
@ -46,16 +43,16 @@ const Option = (props: IOption) => {
|
|||
maxChars,
|
||||
numOptions,
|
||||
onChange,
|
||||
onClearSuggestions,
|
||||
onFetchSuggestions,
|
||||
onRemove,
|
||||
onRemovePoll,
|
||||
suggestions,
|
||||
title,
|
||||
} = props;
|
||||
|
||||
const dispatch = useAppDispatch();
|
||||
const intl = useIntl();
|
||||
|
||||
const suggestions = useAppSelector((state) => state.compose.get('suggestions'));
|
||||
|
||||
const handleOptionTitleChange = (event: React.ChangeEvent<HTMLInputElement>) => onChange(index, event.target.value);
|
||||
|
||||
const handleOptionRemove = () => {
|
||||
|
@ -66,13 +63,13 @@ const Option = (props: IOption) => {
|
|||
}
|
||||
};
|
||||
|
||||
const onSuggestionsClearRequested = () => onClearSuggestions();
|
||||
const onSuggestionsClearRequested = () => dispatch(clearComposeSuggestions());
|
||||
|
||||
const onSuggestionsFetchRequested = (token: string) => onFetchSuggestions(token);
|
||||
const onSuggestionsFetchRequested = (token: string) => dispatch(fetchComposeSuggestions(token));
|
||||
|
||||
const onSuggestionSelected = (tokenStart: number, token: string | null, value: AutoSuggestion) => {
|
||||
if (token && typeof value === 'string') {
|
||||
props.onSuggestionSelected(tokenStart, token, value, ['poll', 'options', index]);
|
||||
dispatch(selectComposeSuggestion(tokenStart, token, value, ['poll', 'options', index]));
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -107,42 +104,26 @@ const Option = (props: IOption) => {
|
|||
);
|
||||
};
|
||||
|
||||
interface IPollForm {
|
||||
expiresIn?: number
|
||||
isMultiple?: boolean
|
||||
onAddOption(value: string): void
|
||||
onChangeOption(): void
|
||||
onChangeSettings(value: string | number | undefined, isMultiple?: boolean): void
|
||||
onClearSuggestions(): void
|
||||
onFetchSuggestions(token: string): void
|
||||
onRemoveOption(): void
|
||||
onRemovePoll(): void
|
||||
onSuggestionSelected(tokenStart: number, token: string, value: string, key: (string | number)[]): void
|
||||
options?: any
|
||||
suggestions?: any // list
|
||||
}
|
||||
|
||||
const PollForm = (props: IPollForm) => {
|
||||
const {
|
||||
expiresIn,
|
||||
isMultiple,
|
||||
onAddOption,
|
||||
onChangeOption,
|
||||
onChangeSettings,
|
||||
onRemoveOption,
|
||||
options,
|
||||
...filteredProps
|
||||
} = props;
|
||||
|
||||
const PollForm = () => {
|
||||
const dispatch = useAppDispatch();
|
||||
const intl = useIntl();
|
||||
|
||||
const pollLimits = useAppSelector((state) => state.instance.getIn(['configuration', 'polls']) as any);
|
||||
const options = useAppSelector((state) => state.compose.getIn(['poll', 'options']));
|
||||
const expiresIn = useAppSelector((state) => state.compose.getIn(['poll', 'expires_in']));
|
||||
const isMultiple = useAppSelector((state) => state.compose.getIn(['poll', 'multiple']));
|
||||
|
||||
const maxOptions = pollLimits.get('max_options');
|
||||
const maxOptionChars = pollLimits.get('max_characters_per_option');
|
||||
|
||||
const handleAddOption = () => onAddOption('');
|
||||
const onRemoveOption = (index: number) => dispatch(removePollOption(index));
|
||||
const onChangeOption = (index: number, title: string) => dispatch(changePollOption(index, title));
|
||||
const handleAddOption = () => dispatch(addPollOption(''));
|
||||
const onChangeSettings = (expiresIn: string | number | undefined, isMultiple?: boolean) =>
|
||||
dispatch(changePollSettings(expiresIn, isMultiple));
|
||||
const handleSelectDuration = (value: number) => onChangeSettings(value, isMultiple);
|
||||
const handleToggleMultiple = () => onChangeSettings(expiresIn, !isMultiple);
|
||||
const onRemovePoll = () => dispatch(removePoll());
|
||||
|
||||
if (!options) {
|
||||
return null;
|
||||
|
@ -160,7 +141,7 @@ const PollForm = (props: IPollForm) => {
|
|||
onRemove={onRemoveOption}
|
||||
maxChars={maxOptionChars}
|
||||
numOptions={options.size}
|
||||
{...filteredProps}
|
||||
onRemovePoll={onRemovePoll}
|
||||
/>
|
||||
))}
|
||||
|
||||
|
@ -211,7 +192,7 @@ const PollForm = (props: IPollForm) => {
|
|||
|
||||
{/* Remove Poll */}
|
||||
<div className='text-center'>
|
||||
<Button theme='danger' size='sm' onClick={props.onRemovePoll}>
|
||||
<Button theme='danger' size='sm' onClick={onRemovePoll}>
|
||||
{intl.formatMessage(messages.removePoll)}
|
||||
</Button>
|
||||
</div>
|
||||
|
|
|
@ -1,57 +0,0 @@
|
|||
import { connect } from 'react-redux';
|
||||
|
||||
import {
|
||||
addPollOption,
|
||||
removePollOption,
|
||||
changePollOption,
|
||||
changePollSettings,
|
||||
removePoll,
|
||||
clearComposeSuggestions,
|
||||
fetchComposeSuggestions,
|
||||
selectComposeSuggestion,
|
||||
} from '../../../actions/compose';
|
||||
import PollForm from '../components/polls/poll-form';
|
||||
|
||||
const mapStateToProps = state => ({
|
||||
suggestions: state.getIn(['compose', 'suggestions']),
|
||||
options: state.getIn(['compose', 'poll', 'options']),
|
||||
expiresIn: state.getIn(['compose', 'poll', 'expires_in']),
|
||||
isMultiple: state.getIn(['compose', 'poll', 'multiple']),
|
||||
});
|
||||
|
||||
const mapDispatchToProps = dispatch => ({
|
||||
onAddOption(title) {
|
||||
dispatch(addPollOption(title));
|
||||
},
|
||||
|
||||
onRemoveOption(index) {
|
||||
dispatch(removePollOption(index));
|
||||
},
|
||||
|
||||
onChangeOption(index, title) {
|
||||
dispatch(changePollOption(index, title));
|
||||
},
|
||||
|
||||
onChangeSettings(expiresIn, isMultiple) {
|
||||
dispatch(changePollSettings(expiresIn, isMultiple));
|
||||
},
|
||||
|
||||
onClearSuggestions() {
|
||||
dispatch(clearComposeSuggestions());
|
||||
},
|
||||
|
||||
onFetchSuggestions(token) {
|
||||
dispatch(fetchComposeSuggestions(token));
|
||||
},
|
||||
|
||||
onSuggestionSelected(position, token, accountId, path) {
|
||||
dispatch(selectComposeSuggestion(position, token, accountId, path));
|
||||
},
|
||||
|
||||
onRemovePoll() {
|
||||
dispatch(removePoll());
|
||||
},
|
||||
|
||||
});
|
||||
|
||||
export default connect(mapStateToProps, mapDispatchToProps)(PollForm);
|
Ładowanie…
Reference in New Issue