2017-12-04 07:26:40 +00:00
|
|
|
import api from 'flavours/glitch/util/api';
|
2018-03-20 13:17:49 +00:00
|
|
|
import { CancelToken } from 'axios';
|
2017-09-30 03:11:44 +00:00
|
|
|
import { throttle } from 'lodash';
|
2017-12-04 07:26:40 +00:00
|
|
|
import { search as emojiSearch } from 'flavours/glitch/util/emoji/emoji_mart_search_light';
|
2017-10-08 19:47:15 +00:00
|
|
|
import { useEmoji } from './emojis';
|
2018-08-28 11:52:18 +00:00
|
|
|
import { tagHistory } from 'flavours/glitch/util/settings';
|
2018-08-28 11:54:56 +00:00
|
|
|
import { recoverHashtags } from 'flavours/glitch/util/hashtag';
|
2018-05-25 09:26:37 +00:00
|
|
|
import resizeImage from 'flavours/glitch/util/resize_image';
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2018-05-27 17:10:37 +00:00
|
|
|
import { updateTimeline } from './timelines';
|
2016-11-03 10:06:55 +00:00
|
|
|
|
2018-03-20 13:17:49 +00:00
|
|
|
let cancelFetchComposeSuggestionsAccounts;
|
|
|
|
|
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';
|
2016-09-07 16:17:15 +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_UNDO = 'COMPOSE_UPLOAD_UNDO';
|
2016-08-31 14:15:12 +00:00
|
|
|
|
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';
|
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';
|
2016-11-23 17:53:23 +00:00
|
|
|
export const COMPOSE_SENSITIVITY_CHANGE = 'COMPOSE_SENSITIVITY_CHANGE';
|
2017-01-13 04:54:26 +00:00
|
|
|
export const COMPOSE_SPOILERNESS_CHANGE = 'COMPOSE_SPOILERNESS_CHANGE';
|
|
|
|
export const COMPOSE_SPOILER_TEXT_CHANGE = 'COMPOSE_SPOILER_TEXT_CHANGE';
|
2016-11-30 20:32:11 +00:00
|
|
|
export const COMPOSE_VISIBILITY_CHANGE = 'COMPOSE_VISIBILITY_CHANGE';
|
2016-12-24 00:22:47 +00:00
|
|
|
export const COMPOSE_LISTABILITY_CHANGE = 'COMPOSE_LISTABILITY_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';
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-11-21 09:52:11 +00:00
|
|
|
export function replyCompose(status, router) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_REPLY,
|
2017-05-20 15:31:47 +00:00
|
|
|
status: status,
|
2016-11-21 09:52:11 +00:00
|
|
|
});
|
|
|
|
|
2018-01-06 02:23:06 +00:00
|
|
|
if (router && !getState().getIn(['compose', 'mounted'])) {
|
2016-11-21 09:52:11 +00:00
|
|
|
router.push('/statuses/new');
|
|
|
|
}
|
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,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-01-30 20:40:55 +00:00
|
|
|
export function mentionCompose(account, router) {
|
|
|
|
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
|
|
|
});
|
|
|
|
|
|
|
|
if (!getState().getIn(['compose', 'mounted'])) {
|
|
|
|
router.push('/statuses/new');
|
|
|
|
}
|
2016-10-24 15:11:02 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-03-29 19:13:47 +00:00
|
|
|
export function directCompose(account, router) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_DIRECT,
|
|
|
|
account: account,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!getState().getIn(['compose', 'mounted'])) {
|
|
|
|
router.push('/statuses/new');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
export function submitCompose() {
|
|
|
|
return function (dispatch, getState) {
|
2017-07-15 22:42:39 +00:00
|
|
|
let status = getState().getIn(['compose', 'text'], '');
|
2018-03-12 17:39:07 +00:00
|
|
|
let media = getState().getIn(['compose', 'media_attachments']);
|
2018-10-20 11:08:13 +00:00
|
|
|
let spoilerText = 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
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
dispatch(submitComposeRequest());
|
2017-07-01 22:36:30 +00:00
|
|
|
if (getState().getIn(['compose', 'advanced_options', 'do_not_federate'])) {
|
|
|
|
status = status + ' 👁️';
|
|
|
|
}
|
2016-09-27 14:58:23 +00:00
|
|
|
api(getState).post('/api/v1/statuses', {
|
2017-04-17 18:30:38 +00:00
|
|
|
status,
|
2016-09-07 16:17:15 +00:00
|
|
|
in_reply_to_id: getState().getIn(['compose', 'in_reply_to'], null),
|
2018-03-12 17:39:07 +00:00
|
|
|
media_ids: media.map(item => item.get('id')),
|
2018-10-20 11:08:13 +00:00
|
|
|
sensitive: getState().getIn(['compose', 'sensitive']) || spoilerText.length > 0,
|
|
|
|
spoiler_text: spoilerText,
|
2017-05-20 15:31:47 +00:00
|
|
|
visibility: getState().getIn(['compose', 'privacy']),
|
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) {
|
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) => {
|
|
|
|
if (getState().getIn(['timelines', timelineId, 'items', 0]) !== null) {
|
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
|
|
|
|
2018-05-27 17:10:37 +00:00
|
|
|
insertIfOnline('home');
|
2017-09-08 19:43:34 +00:00
|
|
|
|
|
|
|
if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
|
2018-05-27 17:10:37 +00:00
|
|
|
insertIfOnline('community');
|
|
|
|
insertIfOnline('public');
|
2017-10-16 04:02:39 +00:00
|
|
|
} else if (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) {
|
2017-03-24 23:01:43 +00:00
|
|
|
if (getState().getIn(['compose', 'media_attachments']).size > 3) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-07 16:17:15 +00:00
|
|
|
dispatch(uploadComposeRequest());
|
|
|
|
|
2018-05-25 09:26:37 +00:00
|
|
|
resizeImage(files[0]).then(file => {
|
|
|
|
const data = new FormData();
|
|
|
|
data.append('file', file);
|
2016-09-07 16:17:15 +00:00
|
|
|
|
2018-05-25 09:26:37 +00:00
|
|
|
return api(getState).post('/api/v1/media', data, {
|
|
|
|
onUploadProgress: ({ loaded, total }) => dispatch(uploadComposeProgress(loaded, total)),
|
|
|
|
}).then(({ data }) => dispatch(uploadComposeSuccess(data)));
|
|
|
|
}).catch(error => dispatch(uploadComposeFail(error)));
|
2016-09-07 16:17:15 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-07 16:17:15 +00:00
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
export function changeUploadComposeSuccess(media) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_CHANGE_SUCCESS,
|
|
|
|
media: media,
|
|
|
|
skipLoading: true,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function changeUploadComposeFail(error) {
|
|
|
|
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
|
|
|
|
|
|
|
export function uploadComposeSuccess(media) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_SUCCESS,
|
2017-03-24 02:50:30 +00:00
|
|
|
media: media,
|
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() {
|
2018-03-20 13:17:49 +00:00
|
|
|
if (cancelFetchComposeSuggestionsAccounts) {
|
|
|
|
cancelFetchComposeSuggestionsAccounts();
|
|
|
|
}
|
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) => {
|
2018-03-20 13:17:49 +00:00
|
|
|
if (cancelFetchComposeSuggestionsAccounts) {
|
|
|
|
cancelFetchComposeSuggestionsAccounts();
|
|
|
|
}
|
2017-09-30 03:11:44 +00:00
|
|
|
api(getState).get('/api/v1/accounts/search', {
|
2018-03-20 13:17:49 +00:00
|
|
|
cancelToken: new CancelToken(cancel => {
|
|
|
|
cancelFetchComposeSuggestionsAccounts = cancel;
|
|
|
|
}),
|
2017-09-30 03:11:44 +00:00
|
|
|
params: {
|
|
|
|
q: token.slice(1),
|
|
|
|
resolve: false,
|
|
|
|
limit: 4,
|
|
|
|
},
|
|
|
|
}).then(response => {
|
|
|
|
dispatch(readyComposeSuggestionsAccounts(token, response.data));
|
|
|
|
});
|
|
|
|
}, 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));
|
|
|
|
};
|
|
|
|
|
2018-08-28 11:52:18 +00:00
|
|
|
const fetchComposeSuggestionsTags = (dispatch, getState, token) => {
|
|
|
|
dispatch(updateSuggestionTags(token));
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2017-09-23 12:47:32 +00:00
|
|
|
export function selectComposeSuggestion(position, token, suggestion) {
|
2016-11-12 13:33:21 +00:00
|
|
|
return (dispatch, getState) => {
|
2018-08-28 11:52:18 +00:00
|
|
|
let completion;
|
|
|
|
if (typeof suggestion === 'object' && suggestion.id) {
|
|
|
|
dispatch(useEmoji(suggestion));
|
|
|
|
completion = suggestion.native || suggestion.colons;
|
|
|
|
} else if (suggestion[0] === '#') {
|
|
|
|
completion = suggestion;
|
|
|
|
} else {
|
|
|
|
completion = '@' + getState().getIn(['accounts', suggestion, 'acct']);
|
|
|
|
}
|
2016-11-12 13:33:21 +00:00
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_SUGGESTION_SELECT,
|
2017-12-24 06:16:45 +00:00
|
|
|
position,
|
2016-12-14 17:21:31 +00:00
|
|
|
token,
|
2017-05-20 15:31:47 +00:00
|
|
|
completion,
|
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
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
};
|