2022-10-14 14:14:22 +00:00
|
|
|
import axios from 'axios';
|
2017-09-30 03:11:44 +00:00
|
|
|
import { throttle } from 'lodash';
|
2022-10-14 01:16:37 +00:00
|
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
import api from 'flavours/glitch/api';
|
2022-10-11 10:36:24 +00:00
|
|
|
import { search as emojiSearch } from 'flavours/glitch/features/emoji/emoji_mart_search_light';
|
2022-10-14 01:16:37 +00:00
|
|
|
import { tagHistory } from 'flavours/glitch/settings';
|
2022-10-11 08:41:15 +00:00
|
|
|
import { recoverHashtags } from 'flavours/glitch/utils/hashtag';
|
|
|
|
import resizeImage from 'flavours/glitch/utils/resize_image';
|
2022-10-14 01:16:37 +00:00
|
|
|
import { showAlert, showAlertForError } from './alerts';
|
|
|
|
import { useEmoji } from './emojis';
|
2019-03-05 19:15:43 +00:00
|
|
|
import { importFetchedAccounts } from './importer';
|
2021-07-24 23:14:43 +00:00
|
|
|
import { openModal } from './modal';
|
2022-10-14 01:16:37 +00:00
|
|
|
import { updateTimeline } from './timelines';
|
2016-11-03 10:06:55 +00:00
|
|
|
|
2022-10-14 01:16:37 +00:00
|
|
|
/** @type {AbortController | undefined} */
|
|
|
|
let fetchComposeSuggestionsAccountsController;
|
|
|
|
/** @type {AbortController | undefined} */
|
|
|
|
let fetchComposeSuggestionsTagsController;
|
2018-03-20 13:17:49 +00:00
|
|
|
|
2016-09-07 16:17:15 +00:00
|
|
|
export const COMPOSE_CHANGE = 'COMPOSE_CHANGE';
|
2018-01-14 03:22:37 +00:00
|
|
|
export const COMPOSE_CYCLE_ELEFRIEND = 'COMPOSE_CYCLE_ELEFRIEND';
|
2016-09-07 16:17:15 +00:00
|
|
|
export const COMPOSE_SUBMIT_REQUEST = 'COMPOSE_SUBMIT_REQUEST';
|
|
|
|
export const COMPOSE_SUBMIT_SUCCESS = 'COMPOSE_SUBMIT_SUCCESS';
|
|
|
|
export const COMPOSE_SUBMIT_FAIL = 'COMPOSE_SUBMIT_FAIL';
|
2016-09-18 16:38:44 +00:00
|
|
|
export const COMPOSE_REPLY = 'COMPOSE_REPLY';
|
2016-09-07 16:17:15 +00:00
|
|
|
export const COMPOSE_REPLY_CANCEL = 'COMPOSE_REPLY_CANCEL';
|
2018-03-29 19:13:47 +00:00
|
|
|
export const COMPOSE_DIRECT = 'COMPOSE_DIRECT';
|
2016-10-24 15:11:02 +00:00
|
|
|
export const COMPOSE_MENTION = 'COMPOSE_MENTION';
|
2017-10-05 23:07:59 +00:00
|
|
|
export const COMPOSE_RESET = 'COMPOSE_RESET';
|
2022-10-29 18:05:53 +00:00
|
|
|
|
|
|
|
export const COMPOSE_UPLOAD_REQUEST = 'COMPOSE_UPLOAD_REQUEST';
|
|
|
|
export const COMPOSE_UPLOAD_SUCCESS = 'COMPOSE_UPLOAD_SUCCESS';
|
|
|
|
export const COMPOSE_UPLOAD_FAIL = 'COMPOSE_UPLOAD_FAIL';
|
|
|
|
export const COMPOSE_UPLOAD_PROGRESS = 'COMPOSE_UPLOAD_PROGRESS';
|
|
|
|
export const COMPOSE_UPLOAD_PROCESSING = 'COMPOSE_UPLOAD_PROCESSING';
|
|
|
|
export const COMPOSE_UPLOAD_UNDO = 'COMPOSE_UPLOAD_UNDO';
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2020-07-07 10:14:19 +00:00
|
|
|
export const THUMBNAIL_UPLOAD_REQUEST = 'THUMBNAIL_UPLOAD_REQUEST';
|
|
|
|
export const THUMBNAIL_UPLOAD_SUCCESS = 'THUMBNAIL_UPLOAD_SUCCESS';
|
|
|
|
export const THUMBNAIL_UPLOAD_FAIL = 'THUMBNAIL_UPLOAD_FAIL';
|
|
|
|
export const THUMBNAIL_UPLOAD_PROGRESS = 'THUMBNAIL_UPLOAD_PROGRESS';
|
|
|
|
|
2016-10-30 17:13:05 +00:00
|
|
|
export const COMPOSE_SUGGESTIONS_CLEAR = 'COMPOSE_SUGGESTIONS_CLEAR';
|
|
|
|
export const COMPOSE_SUGGESTIONS_READY = 'COMPOSE_SUGGESTIONS_READY';
|
2016-11-12 13:33:21 +00:00
|
|
|
export const COMPOSE_SUGGESTION_SELECT = 'COMPOSE_SUGGESTION_SELECT';
|
2021-12-15 22:47:19 +00:00
|
|
|
export const COMPOSE_SUGGESTION_IGNORE = 'COMPOSE_SUGGESTION_IGNORE';
|
2018-08-28 11:52:18 +00:00
|
|
|
export const COMPOSE_SUGGESTION_TAGS_UPDATE = 'COMPOSE_SUGGESTION_TAGS_UPDATE';
|
|
|
|
|
|
|
|
export const COMPOSE_TAG_HISTORY_UPDATE = 'COMPOSE_TAG_HISTORY_UPDATE';
|
2016-10-30 17:13:05 +00:00
|
|
|
|
2016-11-21 09:52:11 +00:00
|
|
|
export const COMPOSE_MOUNT = 'COMPOSE_MOUNT';
|
|
|
|
export const COMPOSE_UNMOUNT = 'COMPOSE_UNMOUNT';
|
|
|
|
|
2017-07-01 21:39:19 +00:00
|
|
|
export const COMPOSE_ADVANCED_OPTIONS_CHANGE = 'COMPOSE_ADVANCED_OPTIONS_CHANGE';
|
2022-05-16 09:18:35 +00:00
|
|
|
export const COMPOSE_SENSITIVITY_CHANGE = 'COMPOSE_SENSITIVITY_CHANGE';
|
|
|
|
export const COMPOSE_SPOILERNESS_CHANGE = 'COMPOSE_SPOILERNESS_CHANGE';
|
2017-01-13 04:54:26 +00:00
|
|
|
export const COMPOSE_SPOILER_TEXT_CHANGE = 'COMPOSE_SPOILER_TEXT_CHANGE';
|
2022-05-16 09:18:35 +00:00
|
|
|
export const COMPOSE_VISIBILITY_CHANGE = 'COMPOSE_VISIBILITY_CHANGE';
|
|
|
|
export const COMPOSE_LISTABILITY_CHANGE = 'COMPOSE_LISTABILITY_CHANGE';
|
2019-02-17 22:53:51 +00:00
|
|
|
export const COMPOSE_CONTENT_TYPE_CHANGE = 'COMPOSE_CONTENT_TYPE_CHANGE';
|
2022-05-16 09:18:35 +00:00
|
|
|
export const COMPOSE_LANGUAGE_CHANGE = 'COMPOSE_LANGUAGE_CHANGE';
|
2016-11-23 17:53:23 +00:00
|
|
|
|
2017-03-01 23:57:55 +00:00
|
|
|
export const COMPOSE_EMOJI_INSERT = 'COMPOSE_EMOJI_INSERT';
|
|
|
|
|
2017-09-28 13:31:31 +00:00
|
|
|
export const COMPOSE_UPLOAD_CHANGE_REQUEST = 'COMPOSE_UPLOAD_UPDATE_REQUEST';
|
|
|
|
export const COMPOSE_UPLOAD_CHANGE_SUCCESS = 'COMPOSE_UPLOAD_UPDATE_SUCCESS';
|
|
|
|
export const COMPOSE_UPLOAD_CHANGE_FAIL = 'COMPOSE_UPLOAD_UPDATE_FAIL';
|
|
|
|
|
2017-10-13 22:58:38 +00:00
|
|
|
export const COMPOSE_DOODLE_SET = 'COMPOSE_DOODLE_SET';
|
|
|
|
|
2019-03-06 11:30:11 +00:00
|
|
|
export const COMPOSE_POLL_ADD = 'COMPOSE_POLL_ADD';
|
|
|
|
export const COMPOSE_POLL_REMOVE = 'COMPOSE_POLL_REMOVE';
|
|
|
|
export const COMPOSE_POLL_OPTION_ADD = 'COMPOSE_POLL_OPTION_ADD';
|
|
|
|
export const COMPOSE_POLL_OPTION_CHANGE = 'COMPOSE_POLL_OPTION_CHANGE';
|
|
|
|
export const COMPOSE_POLL_OPTION_REMOVE = 'COMPOSE_POLL_OPTION_REMOVE';
|
|
|
|
export const COMPOSE_POLL_SETTINGS_CHANGE = 'COMPOSE_POLL_SETTINGS_CHANGE';
|
|
|
|
|
2021-07-24 23:14:43 +00:00
|
|
|
export const INIT_MEDIA_EDIT_MODAL = 'INIT_MEDIA_EDIT_MODAL';
|
|
|
|
|
|
|
|
export const COMPOSE_CHANGE_MEDIA_DESCRIPTION = 'COMPOSE_CHANGE_MEDIA_DESCRIPTION';
|
|
|
|
export const COMPOSE_CHANGE_MEDIA_FOCUS = 'COMPOSE_CHANGE_MEDIA_FOCUS';
|
|
|
|
|
2022-02-09 23:15:30 +00:00
|
|
|
export const COMPOSE_SET_STATUS = 'COMPOSE_SET_STATUS';
|
|
|
|
|
2019-02-10 20:35:04 +00:00
|
|
|
const messages = defineMessages({
|
|
|
|
uploadErrorLimit: { id: 'upload_error.limit', defaultMessage: 'File upload limit exceeded.' },
|
2019-03-06 12:52:14 +00:00
|
|
|
uploadErrorPoll: { id: 'upload_error.poll', defaultMessage: 'File upload not allowed with polls.' },
|
2019-02-10 20:35:04 +00:00
|
|
|
});
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
export const ensureComposeIsVisible = (getState, routerHistory) => {
|
2022-10-22 21:15:14 +00:00
|
|
|
if (!getState().getIn(['compose', 'mounted'])) {
|
2021-09-26 03:46:13 +00:00
|
|
|
routerHistory.push('/publish');
|
2019-05-25 19:27:00 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-09 23:15:30 +00:00
|
|
|
export function setComposeToStatus(status, text, spoiler_text) {
|
|
|
|
return{
|
|
|
|
type: COMPOSE_SET_STATUS,
|
|
|
|
status,
|
|
|
|
text,
|
|
|
|
spoiler_text,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
export function changeCompose(text) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CHANGE,
|
2017-05-20 15:31:47 +00:00
|
|
|
text: text,
|
2016-08-31 14:15:12 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2018-01-14 03:22:37 +00:00
|
|
|
export function cycleElefriendCompose() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CYCLE_ELEFRIEND,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
export function replyCompose(status, routerHistory) {
|
2016-11-21 09:52:11 +00:00
|
|
|
return (dispatch, getState) => {
|
2020-01-07 17:11:50 +00:00
|
|
|
const prependCWRe = getState().getIn(['local_settings', 'prepend_cw_re']);
|
2016-11-21 09:52:11 +00:00
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_REPLY,
|
2017-05-20 15:31:47 +00:00
|
|
|
status: status,
|
2020-01-07 17:11:50 +00:00
|
|
|
prependCWRe: prependCWRe,
|
2016-11-21 09:52:11 +00:00
|
|
|
});
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
ensureComposeIsVisible(getState, routerHistory);
|
2016-08-31 20:58:10 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-08-31 20:58:10 +00:00
|
|
|
|
|
|
|
export function cancelReplyCompose() {
|
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: COMPOSE_REPLY_CANCEL,
|
2016-08-31 20:58:10 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-08-31 20:58:10 +00:00
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
export function resetCompose() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_RESET,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
export function mentionCompose(account, routerHistory) {
|
2017-01-30 20:40:55 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_MENTION,
|
2017-05-20 15:31:47 +00:00
|
|
|
account: account,
|
2017-01-30 20:40:55 +00:00
|
|
|
});
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
ensureComposeIsVisible(getState, routerHistory);
|
2016-10-24 15:11:02 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
export function directCompose(account, routerHistory) {
|
2018-03-29 19:13:47 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_DIRECT,
|
|
|
|
account: account,
|
|
|
|
});
|
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
ensureComposeIsVisible(getState, routerHistory);
|
2018-03-29 19:13:47 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-12-13 15:50:37 +00:00
|
|
|
export function submitCompose(routerHistory) {
|
2016-08-31 14:15:12 +00:00
|
|
|
return function (dispatch, getState) {
|
2022-02-09 23:15:30 +00:00
|
|
|
let status = getState().getIn(['compose', 'text'], '');
|
|
|
|
const media = getState().getIn(['compose', 'media_attachments']);
|
|
|
|
const statusId = getState().getIn(['compose', 'id'], null);
|
2019-06-30 09:09:54 +00:00
|
|
|
const spoilers = getState().getIn(['compose', 'spoiler']) || getState().getIn(['local_settings', 'always_show_spoilers_field']);
|
|
|
|
let spoilerText = spoilers ? getState().getIn(['compose', 'spoiler_text'], '') : '';
|
2017-07-14 17:47:53 +00:00
|
|
|
|
2018-03-12 17:39:07 +00:00
|
|
|
if ((!status || !status.length) && media.size === 0) {
|
2017-04-17 18:30:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-07-14 17:47:53 +00:00
|
|
|
|
2017-07-01 22:36:30 +00:00
|
|
|
if (getState().getIn(['compose', 'advanced_options', 'do_not_federate'])) {
|
|
|
|
status = status + ' 👁️';
|
|
|
|
}
|
2022-02-09 23:15:30 +00:00
|
|
|
|
|
|
|
dispatch(submitComposeRequest());
|
|
|
|
|
|
|
|
api(getState).request({
|
|
|
|
url: statusId === null ? '/api/v1/statuses' : `/api/v1/statuses/${statusId}`,
|
|
|
|
method: statusId === null ? 'post' : 'put',
|
|
|
|
data: {
|
|
|
|
status,
|
|
|
|
content_type: getState().getIn(['compose', 'content_type']),
|
|
|
|
in_reply_to_id: getState().getIn(['compose', 'in_reply_to'], null),
|
|
|
|
media_ids: media.map(item => item.get('id')),
|
|
|
|
sensitive: getState().getIn(['compose', 'sensitive']) || (spoilerText.length > 0 && media.size !== 0),
|
|
|
|
spoiler_text: spoilerText,
|
|
|
|
visibility: getState().getIn(['compose', 'privacy']),
|
|
|
|
poll: getState().getIn(['compose', 'poll'], null),
|
2022-05-16 09:18:35 +00:00
|
|
|
language: getState().getIn(['compose', 'language']),
|
2022-02-09 23:15:30 +00:00
|
|
|
},
|
2017-04-25 13:04:49 +00:00
|
|
|
headers: {
|
2017-05-20 15:31:47 +00:00
|
|
|
'Idempotency-Key': getState().getIn(['compose', 'idempotencyKey']),
|
|
|
|
},
|
2016-08-31 14:15:12 +00:00
|
|
|
}).then(function (response) {
|
2021-09-26 03:46:13 +00:00
|
|
|
if (routerHistory
|
2021-09-27 05:23:48 +00:00
|
|
|
&& (routerHistory.location.pathname === '/publish' || routerHistory.location.pathname === '/statuses/new')
|
2018-12-30 12:53:39 +00:00
|
|
|
&& window.history.state
|
|
|
|
&& !getState().getIn(['compose', 'advanced_options', 'threaded_mode'])) {
|
|
|
|
routerHistory.goBack();
|
|
|
|
}
|
|
|
|
|
2018-08-28 11:54:56 +00:00
|
|
|
dispatch(insertIntoTagHistory(response.data.tags, status));
|
2016-12-04 17:32:31 +00:00
|
|
|
dispatch(submitComposeSuccess({ ...response.data }));
|
2016-12-04 17:34:30 +00:00
|
|
|
|
2018-01-06 02:23:06 +00:00
|
|
|
// If the response has no data then we can't do anything else.
|
|
|
|
if (!response.data) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-04 17:34:30 +00:00
|
|
|
// To make the app more responsive, immediately get the status into the columns
|
|
|
|
|
2018-05-27 17:10:37 +00:00
|
|
|
const insertIfOnline = (timelineId) => {
|
2019-03-07 21:17:52 +00:00
|
|
|
const timeline = getState().getIn(['timelines', timelineId]);
|
|
|
|
|
|
|
|
if (timeline && timeline.get('items').size > 0 && timeline.getIn(['items', 0]) !== null && timeline.get('online')) {
|
2017-09-08 19:43:34 +00:00
|
|
|
dispatch(updateTimeline(timelineId, { ...response.data }));
|
2017-03-01 00:43:29 +00:00
|
|
|
}
|
2017-09-08 19:43:34 +00:00
|
|
|
};
|
2017-03-01 00:43:29 +00:00
|
|
|
|
2022-02-09 23:15:30 +00:00
|
|
|
if (statusId === null) {
|
|
|
|
insertIfOnline('home');
|
|
|
|
}
|
2017-09-08 19:43:34 +00:00
|
|
|
|
2022-02-09 23:15:30 +00:00
|
|
|
if (statusId === null && response.data.in_reply_to_id === null && response.data.visibility === 'public') {
|
2018-05-27 17:10:37 +00:00
|
|
|
insertIfOnline('community');
|
2019-01-08 17:33:43 +00:00
|
|
|
if (!response.data.local_only) {
|
|
|
|
insertIfOnline('public');
|
|
|
|
}
|
2022-02-09 23:15:30 +00:00
|
|
|
} else if (statusId === null && response.data.visibility === 'direct') {
|
2018-05-27 17:10:37 +00:00
|
|
|
insertIfOnline('direct');
|
2016-12-04 17:34:30 +00:00
|
|
|
}
|
2016-08-31 14:15:12 +00:00
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(submitComposeFail(error));
|
|
|
|
});
|
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-08-31 14:15:12 +00:00
|
|
|
|
|
|
|
export function submitComposeRequest() {
|
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: COMPOSE_SUBMIT_REQUEST,
|
2016-08-31 14:15:12 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2016-09-01 11:21:48 +00:00
|
|
|
export function submitComposeSuccess(status) {
|
2016-11-03 18:52:09 +00:00
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
status: status,
|
2016-08-31 14:15:12 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-08-31 14:15:12 +00:00
|
|
|
|
|
|
|
export function submitComposeFail(error) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error: error,
|
2016-08-31 14:15:12 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2017-10-13 22:58:38 +00:00
|
|
|
export function doodleSet(options) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_DOODLE_SET,
|
|
|
|
options: options,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-07 16:17:15 +00:00
|
|
|
export function uploadCompose(files) {
|
|
|
|
return function (dispatch, getState) {
|
2019-02-10 20:35:04 +00:00
|
|
|
const uploadLimit = 4;
|
|
|
|
const media = getState().getIn(['compose', 'media_attachments']);
|
2019-11-07 07:07:03 +00:00
|
|
|
const pending = getState().getIn(['compose', 'pending_media_attachments']);
|
2019-02-10 20:35:04 +00:00
|
|
|
const progress = new Array(files.length).fill(0);
|
2019-04-24 15:59:11 +00:00
|
|
|
let total = Array.from(files).reduce((a, v) => a + v.size, 0);
|
2019-02-10 20:35:04 +00:00
|
|
|
|
2019-11-07 07:07:03 +00:00
|
|
|
if (files.length + media.size + pending > uploadLimit) {
|
2019-02-10 20:35:04 +00:00
|
|
|
dispatch(showAlert(undefined, messages.uploadErrorLimit));
|
2017-03-24 23:01:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-03-06 12:52:14 +00:00
|
|
|
|
|
|
|
if (getState().getIn(['compose', 'poll'])) {
|
|
|
|
dispatch(showAlert(undefined, messages.uploadErrorPoll));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-07 16:17:15 +00:00
|
|
|
dispatch(uploadComposeRequest());
|
|
|
|
|
2019-02-10 20:35:04 +00:00
|
|
|
for (const [i, f] of Array.from(files).entries()) {
|
|
|
|
if (media.size + i > 3) break;
|
|
|
|
|
|
|
|
resizeImage(f).then(file => {
|
|
|
|
const data = new FormData();
|
|
|
|
data.append('file', file);
|
2019-04-24 15:59:11 +00:00
|
|
|
// Account for disparity in size of original image and resized data
|
|
|
|
total += file.size - f.size;
|
2019-02-10 20:35:04 +00:00
|
|
|
|
2020-03-08 22:56:18 +00:00
|
|
|
return api(getState).post('/api/v2/media', data, {
|
2019-02-10 20:35:04 +00:00
|
|
|
onUploadProgress: function({ loaded }){
|
|
|
|
progress[i] = loaded;
|
|
|
|
dispatch(uploadComposeProgress(progress.reduce((a, v) => a + v, 0), total));
|
|
|
|
},
|
2020-03-08 22:56:18 +00:00
|
|
|
}).then(({ status, data }) => {
|
|
|
|
// If server-side processing of the media attachment has not completed yet,
|
|
|
|
// poll the server until it is, before showing the media attachment as uploaded
|
|
|
|
|
|
|
|
if (status === 200) {
|
|
|
|
dispatch(uploadComposeSuccess(data, f));
|
|
|
|
} else if (status === 202) {
|
2022-10-29 18:05:53 +00:00
|
|
|
dispatch(uploadComposeProcessing());
|
|
|
|
|
2022-01-10 13:25:08 +00:00
|
|
|
let tryCount = 1;
|
2022-10-29 18:05:53 +00:00
|
|
|
|
2020-03-08 22:56:18 +00:00
|
|
|
const poll = () => {
|
|
|
|
api(getState).get(`/api/v1/media/${data.id}`).then(response => {
|
|
|
|
if (response.status === 200) {
|
2020-03-10 10:59:44 +00:00
|
|
|
dispatch(uploadComposeSuccess(response.data, f));
|
2020-03-08 22:56:18 +00:00
|
|
|
} else if (response.status === 206) {
|
2022-10-29 18:05:53 +00:00
|
|
|
const retryAfter = (Math.log2(tryCount) || 1) * 1000;
|
2022-01-10 13:25:08 +00:00
|
|
|
tryCount += 1;
|
|
|
|
setTimeout(() => poll(), retryAfter);
|
2020-03-08 22:56:18 +00:00
|
|
|
}
|
|
|
|
}).catch(error => dispatch(uploadComposeFail(error)));
|
|
|
|
};
|
|
|
|
|
|
|
|
poll();
|
|
|
|
}
|
|
|
|
});
|
2019-11-29 16:02:18 +00:00
|
|
|
}).catch(error => dispatch(uploadComposeFail(error)));
|
2019-02-10 20:35:04 +00:00
|
|
|
};
|
2016-09-07 16:17:15 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-07 16:17:15 +00:00
|
|
|
|
2022-10-29 18:05:53 +00:00
|
|
|
export const uploadComposeProcessing = () => ({
|
|
|
|
type: COMPOSE_UPLOAD_PROCESSING,
|
|
|
|
});
|
|
|
|
|
2020-07-07 10:14:19 +00:00
|
|
|
export const uploadThumbnail = (id, file) => (dispatch, getState) => {
|
|
|
|
dispatch(uploadThumbnailRequest());
|
|
|
|
|
|
|
|
const total = file.size;
|
|
|
|
const data = new FormData();
|
|
|
|
|
|
|
|
data.append('thumbnail', file);
|
|
|
|
|
|
|
|
api(getState).put(`/api/v1/media/${id}`, data, {
|
|
|
|
onUploadProgress: ({ loaded }) => {
|
|
|
|
dispatch(uploadThumbnailProgress(loaded, total));
|
|
|
|
},
|
|
|
|
}).then(({ data }) => {
|
|
|
|
dispatch(uploadThumbnailSuccess(data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(uploadThumbnailFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export const uploadThumbnailRequest = () => ({
|
|
|
|
type: THUMBNAIL_UPLOAD_REQUEST,
|
|
|
|
skipLoading: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const uploadThumbnailProgress = (loaded, total) => ({
|
|
|
|
type: THUMBNAIL_UPLOAD_PROGRESS,
|
|
|
|
loaded,
|
|
|
|
total,
|
|
|
|
skipLoading: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const uploadThumbnailSuccess = media => ({
|
|
|
|
type: THUMBNAIL_UPLOAD_SUCCESS,
|
|
|
|
media,
|
|
|
|
skipLoading: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const uploadThumbnailFail = error => ({
|
|
|
|
type: THUMBNAIL_UPLOAD_FAIL,
|
|
|
|
error,
|
|
|
|
skipLoading: true,
|
|
|
|
});
|
|
|
|
|
2021-07-24 23:14:43 +00:00
|
|
|
export function initMediaEditModal(id) {
|
|
|
|
return dispatch => {
|
|
|
|
dispatch({
|
|
|
|
type: INIT_MEDIA_EDIT_MODAL,
|
|
|
|
id,
|
|
|
|
});
|
|
|
|
|
|
|
|
dispatch(openModal('FOCAL_POINT', { id }));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function onChangeMediaDescription(description) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CHANGE_MEDIA_DESCRIPTION,
|
|
|
|
description,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function onChangeMediaFocus(focusX, focusY) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CHANGE_MEDIA_FOCUS,
|
|
|
|
focusX,
|
|
|
|
focusY,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-18 09:01:53 +00:00
|
|
|
export function changeUploadCompose(id, params) {
|
2017-09-28 13:31:31 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(changeUploadComposeRequest());
|
|
|
|
|
2018-08-18 09:01:53 +00:00
|
|
|
api(getState).put(`/api/v1/media/${id}`, params).then(response => {
|
2017-09-28 13:31:31 +00:00
|
|
|
dispatch(changeUploadComposeSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(changeUploadComposeFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function changeUploadComposeRequest() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_CHANGE_REQUEST,
|
|
|
|
skipLoading: true,
|
|
|
|
};
|
|
|
|
};
|
2020-07-07 10:14:19 +00:00
|
|
|
|
2017-09-28 13:31:31 +00:00
|
|
|
export function changeUploadComposeSuccess(media) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_CHANGE_SUCCESS,
|
|
|
|
media: media,
|
|
|
|
skipLoading: true,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-11-29 16:02:18 +00:00
|
|
|
export function changeUploadComposeFail(error) {
|
2017-09-28 13:31:31 +00:00
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_CHANGE_FAIL,
|
|
|
|
error: error,
|
|
|
|
skipLoading: true,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-07 16:17:15 +00:00
|
|
|
export function uploadComposeRequest() {
|
|
|
|
return {
|
2017-03-24 02:50:30 +00:00
|
|
|
type: COMPOSE_UPLOAD_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
skipLoading: true,
|
2016-09-07 16:17:15 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-07 16:17:15 +00:00
|
|
|
|
|
|
|
export function uploadComposeProgress(loaded, total) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_PROGRESS,
|
|
|
|
loaded: loaded,
|
2017-05-20 15:31:47 +00:00
|
|
|
total: total,
|
2016-09-07 16:17:15 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-07 16:17:15 +00:00
|
|
|
|
2019-09-27 00:16:11 +00:00
|
|
|
export function uploadComposeSuccess(media, file) {
|
2016-09-07 16:17:15 +00:00
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_SUCCESS,
|
2017-03-24 02:50:30 +00:00
|
|
|
media: media,
|
2019-09-27 00:16:11 +00:00
|
|
|
file: file,
|
2017-05-20 15:31:47 +00:00
|
|
|
skipLoading: true,
|
2016-09-07 16:17:15 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-07 16:17:15 +00:00
|
|
|
|
|
|
|
export function uploadComposeFail(error) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_FAIL,
|
2017-03-24 02:50:30 +00:00
|
|
|
error: error,
|
2017-05-20 15:31:47 +00:00
|
|
|
skipLoading: true,
|
2016-09-07 16:17:15 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-07 16:17:15 +00:00
|
|
|
|
|
|
|
export function undoUploadCompose(media_id) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_UNDO,
|
2017-05-20 15:31:47 +00:00
|
|
|
media_id: media_id,
|
2016-09-07 16:17:15 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-10-30 17:13:05 +00:00
|
|
|
|
|
|
|
export function clearComposeSuggestions() {
|
2022-10-14 01:16:37 +00:00
|
|
|
if (fetchComposeSuggestionsAccountsController) {
|
|
|
|
fetchComposeSuggestionsAccountsController.abort();
|
2018-03-20 13:17:49 +00:00
|
|
|
}
|
2016-10-30 17:13:05 +00:00
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: COMPOSE_SUGGESTIONS_CLEAR,
|
2016-10-30 17:13:05 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-09-30 03:11:44 +00:00
|
|
|
const fetchComposeSuggestionsAccounts = throttle((dispatch, getState, token) => {
|
2022-10-14 01:16:37 +00:00
|
|
|
if (fetchComposeSuggestionsAccountsController) {
|
|
|
|
fetchComposeSuggestionsAccountsController.abort();
|
2018-03-20 13:17:49 +00:00
|
|
|
}
|
2019-07-28 12:37:52 +00:00
|
|
|
|
2022-10-14 01:16:37 +00:00
|
|
|
fetchComposeSuggestionsAccountsController = new AbortController();
|
|
|
|
|
2017-09-30 03:11:44 +00:00
|
|
|
api(getState).get('/api/v1/accounts/search', {
|
2022-10-14 01:16:37 +00:00
|
|
|
signal: fetchComposeSuggestionsAccountsController.signal,
|
2019-07-28 12:37:52 +00:00
|
|
|
|
2017-09-30 03:11:44 +00:00
|
|
|
params: {
|
|
|
|
q: token.slice(1),
|
|
|
|
resolve: false,
|
|
|
|
limit: 4,
|
|
|
|
},
|
|
|
|
}).then(response => {
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2017-09-30 03:11:44 +00:00
|
|
|
dispatch(readyComposeSuggestionsAccounts(token, response.data));
|
2019-02-10 20:28:29 +00:00
|
|
|
}).catch(error => {
|
2022-10-14 14:14:22 +00:00
|
|
|
if (!axios.isCancel(error)) {
|
2019-02-10 20:28:29 +00:00
|
|
|
dispatch(showAlertForError(error));
|
|
|
|
}
|
2022-10-14 14:14:22 +00:00
|
|
|
}).finally(() => {
|
|
|
|
fetchComposeSuggestionsAccountsController = undefined;
|
2017-09-30 03:11:44 +00:00
|
|
|
});
|
|
|
|
}, 200, { leading: true, trailing: true });
|
|
|
|
|
|
|
|
const fetchComposeSuggestionsEmojis = (dispatch, getState, token) => {
|
2017-10-02 05:22:24 +00:00
|
|
|
const results = emojiSearch(token.replace(':', ''), { maxResults: 5 });
|
2017-09-30 03:11:44 +00:00
|
|
|
dispatch(readyComposeSuggestionsEmojis(token, results));
|
|
|
|
};
|
|
|
|
|
2019-07-28 12:37:52 +00:00
|
|
|
const fetchComposeSuggestionsTags = throttle((dispatch, getState, token) => {
|
2022-10-14 01:16:37 +00:00
|
|
|
if (fetchComposeSuggestionsTagsController) {
|
|
|
|
fetchComposeSuggestionsTagsController.abort();
|
2019-07-28 12:37:52 +00:00
|
|
|
}
|
|
|
|
|
2019-08-22 02:37:18 +00:00
|
|
|
dispatch(updateSuggestionTags(token));
|
|
|
|
|
2022-10-14 01:16:37 +00:00
|
|
|
fetchComposeSuggestionsTagsController = new AbortController();
|
|
|
|
|
2019-07-28 12:37:52 +00:00
|
|
|
api(getState).get('/api/v2/search', {
|
2022-10-14 01:16:37 +00:00
|
|
|
signal: fetchComposeSuggestionsTagsController.signal,
|
2019-07-28 12:37:52 +00:00
|
|
|
|
|
|
|
params: {
|
|
|
|
type: 'hashtags',
|
|
|
|
q: token.slice(1),
|
|
|
|
resolve: false,
|
|
|
|
limit: 4,
|
|
|
|
},
|
|
|
|
}).then(({ data }) => {
|
|
|
|
dispatch(readyComposeSuggestionsTags(token, data.hashtags));
|
|
|
|
}).catch(error => {
|
2022-10-14 14:14:22 +00:00
|
|
|
if (!axios.isCancel(error)) {
|
2019-07-28 12:37:52 +00:00
|
|
|
dispatch(showAlertForError(error));
|
|
|
|
}
|
2022-10-14 14:14:22 +00:00
|
|
|
}).finally(() => {
|
|
|
|
fetchComposeSuggestionsTagsController = undefined;
|
2019-07-28 12:37:52 +00:00
|
|
|
});
|
|
|
|
}, 200, { leading: true, trailing: true });
|
2018-08-28 11:52:18 +00:00
|
|
|
|
2016-10-30 17:13:05 +00:00
|
|
|
export function fetchComposeSuggestions(token) {
|
2017-09-28 06:55:53 +00:00
|
|
|
return (dispatch, getState) => {
|
2018-08-28 11:52:18 +00:00
|
|
|
switch (token[0]) {
|
|
|
|
case ':':
|
2017-09-30 03:11:44 +00:00
|
|
|
fetchComposeSuggestionsEmojis(dispatch, getState, token);
|
2018-08-28 11:52:18 +00:00
|
|
|
break;
|
|
|
|
case '#':
|
|
|
|
fetchComposeSuggestionsTags(dispatch, getState, token);
|
|
|
|
break;
|
|
|
|
default:
|
2017-09-30 03:11:44 +00:00
|
|
|
fetchComposeSuggestionsAccounts(dispatch, getState, token);
|
2018-08-28 11:52:18 +00:00
|
|
|
break;
|
2017-09-23 12:47:32 +00:00
|
|
|
}
|
2017-09-28 06:55:53 +00:00
|
|
|
};
|
2016-10-30 17:13:05 +00:00
|
|
|
};
|
|
|
|
|
2017-09-23 12:47:32 +00:00
|
|
|
export function readyComposeSuggestionsEmojis(token, emojis) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUGGESTIONS_READY,
|
|
|
|
token,
|
|
|
|
emojis,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function readyComposeSuggestionsAccounts(token, accounts) {
|
2016-10-30 17:13:05 +00:00
|
|
|
return {
|
|
|
|
type: COMPOSE_SUGGESTIONS_READY,
|
2016-11-12 13:33:21 +00:00
|
|
|
token,
|
2017-05-20 15:31:47 +00:00
|
|
|
accounts,
|
2016-10-30 17:13:05 +00:00
|
|
|
};
|
|
|
|
};
|
2016-11-12 13:33:21 +00:00
|
|
|
|
2019-07-28 12:37:52 +00:00
|
|
|
export const readyComposeSuggestionsTags = (token, tags) => ({
|
|
|
|
type: COMPOSE_SUGGESTIONS_READY,
|
|
|
|
token,
|
|
|
|
tags,
|
|
|
|
});
|
|
|
|
|
2019-04-11 15:07:06 +00:00
|
|
|
export function selectComposeSuggestion(position, token, suggestion, path) {
|
2016-11-12 13:33:21 +00:00
|
|
|
return (dispatch, getState) => {
|
2018-08-28 11:52:18 +00:00
|
|
|
let completion;
|
2019-07-29 13:04:49 +00:00
|
|
|
if (suggestion.type === 'emoji') {
|
2018-08-28 11:52:18 +00:00
|
|
|
dispatch(useEmoji(suggestion));
|
|
|
|
completion = suggestion.native || suggestion.colons;
|
2019-07-29 13:04:49 +00:00
|
|
|
} else if (suggestion.type === 'hashtag') {
|
2019-07-28 12:37:52 +00:00
|
|
|
completion = `#${suggestion.name}`;
|
2019-07-29 13:04:49 +00:00
|
|
|
} else if (suggestion.type === 'account') {
|
|
|
|
completion = '@' + getState().getIn(['accounts', suggestion.id, 'acct']);
|
2018-08-28 11:52:18 +00:00
|
|
|
}
|
2016-11-12 13:33:21 +00:00
|
|
|
|
2021-12-15 22:47:19 +00:00
|
|
|
// We don't want to replace hashtags that vary only in case due to accessibility, but we need to fire off an event so that
|
|
|
|
// the suggestions are dismissed and the cursor moves forward.
|
|
|
|
if (suggestion.type !== 'hashtag' || token.slice(1).localeCompare(suggestion.name, undefined, { sensitivity: 'accent' }) !== 0) {
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_SUGGESTION_SELECT,
|
|
|
|
position,
|
|
|
|
token,
|
|
|
|
completion,
|
|
|
|
path,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_SUGGESTION_IGNORE,
|
|
|
|
position,
|
|
|
|
token,
|
|
|
|
completion,
|
|
|
|
path,
|
|
|
|
});
|
|
|
|
}
|
2016-11-12 13:33:21 +00:00
|
|
|
};
|
|
|
|
};
|
2016-11-21 09:52:11 +00:00
|
|
|
|
2018-08-28 11:52:18 +00:00
|
|
|
export function updateSuggestionTags(token) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUGGESTION_TAGS_UPDATE,
|
|
|
|
token,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function updateTagHistory(tags) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_TAG_HISTORY_UPDATE,
|
|
|
|
tags,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hydrateCompose() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const me = getState().getIn(['meta', 'me']);
|
|
|
|
const history = tagHistory.get(me);
|
|
|
|
|
|
|
|
if (history !== null) {
|
|
|
|
dispatch(updateTagHistory(history));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-08-28 11:54:56 +00:00
|
|
|
function insertIntoTagHistory(recognizedTags, text) {
|
2018-08-28 11:52:18 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
|
|
|
const oldHistory = state.getIn(['compose', 'tagHistory']);
|
|
|
|
const me = state.getIn(['meta', 'me']);
|
2018-08-28 11:54:56 +00:00
|
|
|
const names = recoverHashtags(recognizedTags, text);
|
|
|
|
const intersectedOldHistory = oldHistory.filter(name => names.findIndex(newName => newName.toLowerCase() === name.toLowerCase()) === -1);
|
2018-08-28 11:52:18 +00:00
|
|
|
|
|
|
|
names.push(...intersectedOldHistory.toJS());
|
|
|
|
|
|
|
|
const newHistory = names.slice(0, 1000);
|
|
|
|
|
|
|
|
tagHistory.set(me, newHistory);
|
|
|
|
dispatch(updateTagHistory(newHistory));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-11-21 09:52:11 +00:00
|
|
|
export function mountCompose() {
|
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: COMPOSE_MOUNT,
|
2016-11-21 09:52:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unmountCompose() {
|
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: COMPOSE_UNMOUNT,
|
2016-11-21 09:52:11 +00:00
|
|
|
};
|
|
|
|
};
|
2016-11-23 17:53:23 +00:00
|
|
|
|
2018-01-06 02:23:06 +00:00
|
|
|
export function changeComposeAdvancedOption(option, value) {
|
2017-07-01 21:39:19 +00:00
|
|
|
return {
|
2018-01-06 02:23:06 +00:00
|
|
|
option,
|
2017-07-01 21:39:19 +00:00
|
|
|
type: COMPOSE_ADVANCED_OPTIONS_CHANGE,
|
2018-01-06 02:23:06 +00:00
|
|
|
value,
|
2017-07-01 21:39:19 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-03-24 23:01:43 +00:00
|
|
|
export function changeComposeSensitivity() {
|
2016-11-23 17:53:23 +00:00
|
|
|
return {
|
|
|
|
type: COMPOSE_SENSITIVITY_CHANGE,
|
|
|
|
};
|
|
|
|
};
|
2016-11-30 20:32:11 +00:00
|
|
|
|
2022-05-16 09:18:35 +00:00
|
|
|
export const changeComposeLanguage = language => ({
|
|
|
|
type: COMPOSE_LANGUAGE_CHANGE,
|
|
|
|
language,
|
|
|
|
});
|
|
|
|
|
2017-03-24 23:01:43 +00:00
|
|
|
export function changeComposeSpoilerness() {
|
2017-01-13 04:54:26 +00:00
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: COMPOSE_SPOILERNESS_CHANGE,
|
2017-01-13 04:54:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function changeComposeSpoilerText(text) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SPOILER_TEXT_CHANGE,
|
2017-05-20 15:31:47 +00:00
|
|
|
text,
|
2017-01-13 04:54:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-24 23:01:43 +00:00
|
|
|
export function changeComposeVisibility(value) {
|
2016-11-30 20:32:11 +00:00
|
|
|
return {
|
|
|
|
type: COMPOSE_VISIBILITY_CHANGE,
|
2017-05-20 15:31:47 +00:00
|
|
|
value,
|
2016-12-23 14:20:16 +00:00
|
|
|
};
|
|
|
|
};
|
2017-03-01 23:57:55 +00:00
|
|
|
|
2019-02-17 22:53:51 +00:00
|
|
|
export function changeComposeContentType(value) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CONTENT_TYPE_CHANGE,
|
|
|
|
value,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-01 23:57:55 +00:00
|
|
|
export function insertEmojiCompose(position, emoji) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_EMOJI_INSERT,
|
|
|
|
position,
|
2017-05-20 15:31:47 +00:00
|
|
|
emoji,
|
2017-03-01 23:57:55 +00:00
|
|
|
};
|
|
|
|
};
|
2019-03-06 11:30:11 +00:00
|
|
|
|
|
|
|
export function addPoll() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_POLL_ADD,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function removePoll() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_POLL_REMOVE,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function addPollOption(title) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_POLL_OPTION_ADD,
|
|
|
|
title,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function changePollOption(index, title) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_POLL_OPTION_CHANGE,
|
|
|
|
index,
|
|
|
|
title,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function removePollOption(index) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_POLL_OPTION_REMOVE,
|
|
|
|
index,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function changePollSettings(expiresIn, isMultiple) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_POLL_SETTINGS_CHANGE,
|
|
|
|
expiresIn,
|
|
|
|
isMultiple,
|
|
|
|
};
|
|
|
|
};
|