2016-09-19 17:25:59 -04:00
|
|
|
import {
|
2016-11-21 04:52:11 -05:00
|
|
|
COMPOSE_MOUNT,
|
|
|
|
COMPOSE_UNMOUNT,
|
2016-09-19 17:25:59 -04:00
|
|
|
COMPOSE_CHANGE,
|
|
|
|
COMPOSE_REPLY,
|
|
|
|
COMPOSE_REPLY_CANCEL,
|
2016-10-24 11:11:02 -04:00
|
|
|
COMPOSE_MENTION,
|
2016-09-19 17:25:59 -04:00
|
|
|
COMPOSE_SUBMIT_REQUEST,
|
|
|
|
COMPOSE_SUBMIT_SUCCESS,
|
|
|
|
COMPOSE_SUBMIT_FAIL,
|
|
|
|
COMPOSE_UPLOAD_REQUEST,
|
|
|
|
COMPOSE_UPLOAD_SUCCESS,
|
|
|
|
COMPOSE_UPLOAD_FAIL,
|
|
|
|
COMPOSE_UPLOAD_UNDO,
|
2016-10-30 13:13:05 -04:00
|
|
|
COMPOSE_UPLOAD_PROGRESS,
|
|
|
|
COMPOSE_SUGGESTIONS_CLEAR,
|
2016-11-12 08:33:21 -05:00
|
|
|
COMPOSE_SUGGESTIONS_READY,
|
2016-11-23 12:53:23 -05:00
|
|
|
COMPOSE_SUGGESTION_SELECT,
|
2017-07-01 17:39:19 -04:00
|
|
|
COMPOSE_ADVANCED_OPTIONS_CHANGE,
|
2016-11-30 15:32:11 -05:00
|
|
|
COMPOSE_SENSITIVITY_CHANGE,
|
2017-01-12 23:54:26 -05:00
|
|
|
COMPOSE_SPOILERNESS_CHANGE,
|
|
|
|
COMPOSE_SPOILER_TEXT_CHANGE,
|
2016-12-23 09:20:16 -05:00
|
|
|
COMPOSE_VISIBILITY_CHANGE,
|
2017-05-20 11:31:47 -04:00
|
|
|
COMPOSE_EMOJI_INSERT,
|
2017-09-28 09:31:31 -04:00
|
|
|
COMPOSE_UPLOAD_CHANGE_REQUEST,
|
|
|
|
COMPOSE_UPLOAD_CHANGE_SUCCESS,
|
|
|
|
COMPOSE_UPLOAD_CHANGE_FAIL,
|
2017-10-13 18:58:38 -04:00
|
|
|
COMPOSE_DOODLE_SET,
|
2017-10-05 19:07:59 -04:00
|
|
|
COMPOSE_RESET,
|
2017-12-04 02:26:40 -05:00
|
|
|
} from 'flavours/glitch/actions/compose';
|
|
|
|
import { TIMELINE_DELETE } from 'flavours/glitch/actions/timelines';
|
|
|
|
import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
|
2017-07-10 19:00:14 -04:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList, OrderedSet as ImmutableOrderedSet, fromJS } from 'immutable';
|
2017-12-04 02:26:40 -05:00
|
|
|
import uuid from 'flavours/glitch/util/uuid';
|
|
|
|
import { me } from 'flavours/glitch/util/initial_state';
|
2018-01-05 21:23:06 -05:00
|
|
|
import { overwrite } from 'flavours/glitch/util/js_helpers';
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const initialState = ImmutableMap({
|
2016-11-21 04:52:11 -05:00
|
|
|
mounted: false,
|
2017-07-12 05:03:17 -04:00
|
|
|
advanced_options: ImmutableMap({
|
2017-07-03 01:07:18 -04:00
|
|
|
do_not_federate: false,
|
2018-01-05 21:23:06 -05:00
|
|
|
threaded_mode: false,
|
2017-07-01 17:39:19 -04:00
|
|
|
}),
|
2016-11-23 12:53:23 -05:00
|
|
|
sensitive: false,
|
2017-01-12 23:54:26 -05:00
|
|
|
spoiler: false,
|
|
|
|
spoiler_text: '',
|
2017-03-24 19:01:43 -04:00
|
|
|
privacy: null,
|
2016-08-31 10:15:12 -04:00
|
|
|
text: '',
|
2017-02-22 09:43:07 -05:00
|
|
|
focusDate: null,
|
|
|
|
preselectDate: null,
|
2016-08-31 16:58:10 -04:00
|
|
|
in_reply_to: null,
|
2016-09-07 12:17:15 -04:00
|
|
|
is_submitting: false,
|
|
|
|
is_uploading: false,
|
|
|
|
progress: 0,
|
2017-07-10 19:00:14 -04:00
|
|
|
media_attachments: ImmutableList(),
|
2016-11-12 08:33:21 -05:00
|
|
|
suggestion_token: null,
|
2017-07-10 19:00:14 -04:00
|
|
|
suggestions: ImmutableList(),
|
2017-07-12 05:03:17 -04:00
|
|
|
default_advanced_options: ImmutableMap({
|
2017-07-03 01:07:18 -04:00
|
|
|
do_not_federate: false,
|
2018-01-05 21:23:06 -05:00
|
|
|
threaded_mode: null, // Do not reset
|
2017-07-01 18:36:56 -04:00
|
|
|
}),
|
2017-02-06 17:16:20 -05:00
|
|
|
default_privacy: 'public',
|
2017-07-10 08:00:32 -04:00
|
|
|
default_sensitive: false,
|
2017-04-25 09:04:49 -04:00
|
|
|
resetFileKey: Math.floor((Math.random() * 0x10000)),
|
2017-05-20 11:31:47 -04:00
|
|
|
idempotencyKey: null,
|
2017-10-13 18:58:38 -04:00
|
|
|
doodle: ImmutableMap({
|
|
|
|
fg: 'rgb( 0, 0, 0)',
|
|
|
|
bg: 'rgb(255, 255, 255)',
|
2017-10-14 06:24:35 -04:00
|
|
|
swapped: false,
|
2017-10-13 18:58:38 -04:00
|
|
|
mode: 'draw',
|
2017-10-14 06:24:35 -04:00
|
|
|
size: 'normal',
|
2017-10-13 18:58:38 -04:00
|
|
|
weight: 2,
|
|
|
|
opacity: 1,
|
|
|
|
adaptiveStroke: true,
|
|
|
|
smoothing: false,
|
|
|
|
}),
|
2016-08-31 10:15:12 -04:00
|
|
|
});
|
|
|
|
|
2016-09-26 09:49:28 -04:00
|
|
|
function statusToTextMentions(state, status) {
|
2017-07-10 19:00:14 -04:00
|
|
|
let set = ImmutableOrderedSet([]);
|
2016-09-26 09:49:28 -04:00
|
|
|
|
|
|
|
if (status.getIn(['account', 'id']) !== me) {
|
|
|
|
set = set.add(`@${status.getIn(['account', 'acct'])} `);
|
|
|
|
}
|
2016-10-24 11:11:02 -04:00
|
|
|
|
2016-09-26 09:49:28 -04:00
|
|
|
return set.union(status.get('mentions').filterNot(mention => mention.get('id') === me).map(mention => `@${mention.get('acct')} `)).join('');
|
2016-09-21 18:09:21 -04:00
|
|
|
};
|
|
|
|
|
2018-01-05 21:23:06 -05:00
|
|
|
function apiStatusToTextMentions (state, status) {
|
|
|
|
let set = ImmutableOrderedSet([]);
|
|
|
|
|
|
|
|
if (status.account.id !== me) {
|
|
|
|
set = set.add(`@${status.account.acct} `);
|
|
|
|
}
|
|
|
|
|
|
|
|
return set.union(status.mentions.filter(
|
|
|
|
mention => mention.id !== me
|
|
|
|
).map(
|
|
|
|
mention => `@${mention.acct} `
|
|
|
|
)).join('');
|
|
|
|
}
|
|
|
|
|
2016-09-22 15:39:53 -04:00
|
|
|
function clearAll(state) {
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('text', '');
|
2017-01-12 23:54:26 -05:00
|
|
|
map.set('spoiler', false);
|
|
|
|
map.set('spoiler_text', '');
|
2016-09-22 15:39:53 -04:00
|
|
|
map.set('is_submitting', false);
|
|
|
|
map.set('in_reply_to', null);
|
2018-01-05 21:23:06 -05:00
|
|
|
map.update(
|
|
|
|
'advanced_options',
|
|
|
|
map => map.mergeWith(overwrite, state.get('default_advanced_options'))
|
|
|
|
);
|
2017-03-24 19:01:43 -04:00
|
|
|
map.set('privacy', state.get('default_privacy'));
|
2017-04-13 13:23:36 -04:00
|
|
|
map.set('sensitive', false);
|
2016-09-22 15:39:53 -04:00
|
|
|
map.update('media_attachments', list => list.clear());
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2016-09-22 15:39:53 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-01-05 21:23:06 -05:00
|
|
|
function continueThread (state, status) {
|
|
|
|
return state.withMutations(function (map) {
|
|
|
|
map.set('text', apiStatusToTextMentions(state, status));
|
|
|
|
if (status.spoiler_text) {
|
|
|
|
map.set('spoiler', true);
|
|
|
|
map.set('spoiler_text', status.spoiler_text);
|
|
|
|
} else {
|
|
|
|
map.set('spoiler', false);
|
|
|
|
map.set('spoiler_text', '');
|
|
|
|
}
|
|
|
|
map.set('is_submitting', false);
|
|
|
|
map.set('in_reply_to', status.id);
|
|
|
|
map.update(
|
|
|
|
'advanced_options',
|
|
|
|
map => map.merge(new ImmutableMap({ do_not_federate: /👁\ufe0f?\u200b?(?:<\/p>)?$/.test(status.content) }))
|
|
|
|
);
|
|
|
|
map.set('privacy', privacyPreference(status.visibility, state.get('default_privacy')));
|
|
|
|
map.set('sensitive', false);
|
|
|
|
map.update('media_attachments', list => list.clear());
|
|
|
|
map.set('idempotencyKey', uuid());
|
|
|
|
map.set('focusDate', new Date());
|
|
|
|
map.set('preselectDate', new Date());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-09-22 15:39:53 -04:00
|
|
|
function appendMedia(state, media) {
|
2017-07-10 08:00:32 -04:00
|
|
|
const prevSize = state.get('media_attachments').size;
|
|
|
|
|
2016-09-22 15:39:53 -04:00
|
|
|
return state.withMutations(map => {
|
|
|
|
map.update('media_attachments', list => list.push(media));
|
|
|
|
map.set('is_uploading', false);
|
2017-01-16 08:21:55 -05:00
|
|
|
map.set('resetFileKey', Math.floor((Math.random() * 0x10000)));
|
2017-04-21 14:06:25 -04:00
|
|
|
map.update('text', oldText => `${oldText.trim()} ${media.get('text_url')}`);
|
2017-04-12 12:21:07 -04:00
|
|
|
map.set('focusDate', new Date());
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2017-07-10 08:00:32 -04:00
|
|
|
|
2017-07-30 10:27:57 -04:00
|
|
|
if (prevSize === 0 && (state.get('default_sensitive') || state.get('spoiler'))) {
|
2017-07-10 08:00:32 -04:00
|
|
|
map.set('sensitive', true);
|
|
|
|
}
|
2016-09-22 15:39:53 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function removeMedia(state, mediaId) {
|
2017-02-09 14:25:39 -05:00
|
|
|
const media = state.get('media_attachments').find(item => item.get('id') === mediaId);
|
|
|
|
const prevSize = state.get('media_attachments').size;
|
2016-09-22 15:39:53 -04:00
|
|
|
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.update('media_attachments', list => list.filterNot(item => item.get('id') === mediaId));
|
|
|
|
map.update('text', text => text.replace(media.get('text_url'), '').trim());
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2017-02-09 14:25:39 -05:00
|
|
|
|
|
|
|
if (prevSize === 1) {
|
2017-02-13 11:20:18 -05:00
|
|
|
map.set('sensitive', false);
|
2017-02-09 14:25:39 -05:00
|
|
|
}
|
2016-09-22 15:39:53 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-12-14 12:21:31 -05:00
|
|
|
const insertSuggestion = (state, position, token, completion) => {
|
2016-11-12 08:33:21 -05:00
|
|
|
return state.withMutations(map => {
|
2017-12-24 01:16:45 -05:00
|
|
|
map.update('text', oldText => `${oldText.slice(0, position)}${completion}${completion[0] === ':' ? '\u200B' : ' '}${oldText.slice(position + token.length)}`);
|
2016-11-12 08:33:21 -05:00
|
|
|
map.set('suggestion_token', null);
|
2017-07-10 19:00:14 -04:00
|
|
|
map.update('suggestions', ImmutableList(), list => list.clear());
|
2017-02-22 09:43:07 -05:00
|
|
|
map.set('focusDate', new Date());
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2016-11-12 08:33:21 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-03-01 18:57:55 -05:00
|
|
|
const insertEmoji = (state, position, emojiData) => {
|
2017-09-22 19:41:00 -04:00
|
|
|
const emoji = emojiData.native;
|
2017-03-01 18:57:55 -05:00
|
|
|
|
|
|
|
return state.withMutations(map => {
|
2017-10-13 18:48:53 -04:00
|
|
|
map.update('text', oldText => `${oldText.slice(0, position)}${emoji}\u200B${oldText.slice(position)}`);
|
2017-03-01 18:57:55 -05:00
|
|
|
map.set('focusDate', new Date());
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2017-03-01 18:57:55 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-03-24 19:01:43 -04:00
|
|
|
const privacyPreference = (a, b) => {
|
|
|
|
if (a === 'direct' || b === 'direct') {
|
|
|
|
return 'direct';
|
|
|
|
} else if (a === 'private' || b === 'private') {
|
|
|
|
return 'private';
|
|
|
|
} else if (a === 'unlisted' || b === 'unlisted') {
|
|
|
|
return 'unlisted';
|
|
|
|
} else {
|
|
|
|
return 'public';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-13 22:53:31 -04:00
|
|
|
const hydrate = (state, hydratedState) => {
|
|
|
|
state = clearAll(state.merge(hydratedState));
|
|
|
|
|
|
|
|
if (hydratedState.has('text')) {
|
|
|
|
state = state.set('text', hydratedState.get('text'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
export default function compose(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-07-09 06:16:08 -04:00
|
|
|
case STORE_HYDRATE:
|
2017-08-13 22:53:31 -04:00
|
|
|
return hydrate(state, action.state.get('compose'));
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_MOUNT:
|
|
|
|
return state.set('mounted', true);
|
|
|
|
case COMPOSE_UNMOUNT:
|
2018-01-05 00:17:30 -05:00
|
|
|
return state.set('mounted', false);
|
2017-07-01 17:39:19 -04:00
|
|
|
case COMPOSE_ADVANCED_OPTIONS_CHANGE:
|
|
|
|
return state
|
2018-01-05 21:23:06 -05:00
|
|
|
.set('advanced_options', state.get('advanced_options').set(action.option, !!overwrite(!state.getIn(['advanced_options', action.option]), action.value)))
|
2017-07-01 17:39:19 -04:00
|
|
|
.set('idempotencyKey', uuid());
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_SENSITIVITY_CHANGE:
|
2017-07-30 23:06:56 -04:00
|
|
|
return state.withMutations(map => {
|
|
|
|
if (!state.get('spoiler')) {
|
|
|
|
map.set('sensitive', !state.get('sensitive'));
|
|
|
|
}
|
|
|
|
|
|
|
|
map.set('idempotencyKey', uuid());
|
|
|
|
});
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_SPOILERNESS_CHANGE:
|
2017-02-25 19:23:44 -05:00
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('spoiler_text', '');
|
2017-03-24 19:01:43 -04:00
|
|
|
map.set('spoiler', !state.get('spoiler'));
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2017-07-30 10:27:57 -04:00
|
|
|
|
|
|
|
if (!state.get('sensitive') && state.get('media_attachments').size >= 1) {
|
|
|
|
map.set('sensitive', true);
|
|
|
|
}
|
2017-02-25 19:23:44 -05:00
|
|
|
});
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_SPOILER_TEXT_CHANGE:
|
2017-04-25 09:04:49 -04:00
|
|
|
return state
|
|
|
|
.set('spoiler_text', action.text)
|
|
|
|
.set('idempotencyKey', uuid());
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_VISIBILITY_CHANGE:
|
2017-04-25 09:04:49 -04:00
|
|
|
return state
|
|
|
|
.set('privacy', action.value)
|
|
|
|
.set('idempotencyKey', uuid());
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_CHANGE:
|
2017-04-25 09:04:49 -04:00
|
|
|
return state
|
|
|
|
.set('text', action.text)
|
|
|
|
.set('idempotencyKey', uuid());
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_REPLY:
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('in_reply_to', action.status.get('id'));
|
|
|
|
map.set('text', statusToTextMentions(state, action.status));
|
2017-03-24 19:01:43 -04:00
|
|
|
map.set('privacy', privacyPreference(action.status.get('visibility'), state.get('default_privacy')));
|
2018-01-05 21:23:06 -05:00
|
|
|
map.update(
|
|
|
|
'advanced_options',
|
|
|
|
map => map.merge(new ImmutableMap({ do_not_federate: /👁\ufe0f?\u200b?(?:<\/p>)?$/.test(action.status.get('content')) }))
|
|
|
|
);
|
2017-02-22 09:43:07 -05:00
|
|
|
map.set('focusDate', new Date());
|
|
|
|
map.set('preselectDate', new Date());
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2017-03-25 14:30:56 -04:00
|
|
|
|
|
|
|
if (action.status.get('spoiler_text').length > 0) {
|
|
|
|
map.set('spoiler', true);
|
|
|
|
map.set('spoiler_text', action.status.get('spoiler_text'));
|
2017-04-12 21:17:34 -04:00
|
|
|
} else {
|
|
|
|
map.set('spoiler', false);
|
|
|
|
map.set('spoiler_text', '');
|
2017-03-25 14:30:56 -04:00
|
|
|
}
|
2017-01-24 18:49:08 -05:00
|
|
|
});
|
|
|
|
case COMPOSE_REPLY_CANCEL:
|
2017-10-05 19:07:59 -04:00
|
|
|
case COMPOSE_RESET:
|
2017-01-24 18:49:08 -05:00
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('in_reply_to', null);
|
|
|
|
map.set('text', '');
|
2017-03-25 14:30:56 -04:00
|
|
|
map.set('spoiler', false);
|
|
|
|
map.set('spoiler_text', '');
|
2017-03-24 19:01:43 -04:00
|
|
|
map.set('privacy', state.get('default_privacy'));
|
2018-01-05 21:23:06 -05:00
|
|
|
map.update(
|
|
|
|
'advanced_options',
|
|
|
|
map => map.mergeWith(overwrite, state.get('default_advanced_options'))
|
|
|
|
);
|
2017-04-25 09:04:49 -04:00
|
|
|
map.set('idempotencyKey', uuid());
|
2017-01-24 18:49:08 -05:00
|
|
|
});
|
|
|
|
case COMPOSE_SUBMIT_REQUEST:
|
2017-09-28 09:31:31 -04:00
|
|
|
case COMPOSE_UPLOAD_CHANGE_REQUEST:
|
2017-01-24 18:49:08 -05:00
|
|
|
return state.set('is_submitting', true);
|
|
|
|
case COMPOSE_SUBMIT_SUCCESS:
|
2018-01-05 21:23:06 -05:00
|
|
|
return action.status && state.get('advanced_options', 'threaded_mode') ? continueThread(state, action.status) : clearAll(state);
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_SUBMIT_FAIL:
|
2017-09-28 09:31:31 -04:00
|
|
|
case COMPOSE_UPLOAD_CHANGE_FAIL:
|
2017-01-24 18:49:08 -05:00
|
|
|
return state.set('is_submitting', false);
|
|
|
|
case COMPOSE_UPLOAD_REQUEST:
|
2017-09-28 09:31:31 -04:00
|
|
|
return state.set('is_uploading', true);
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_UPLOAD_SUCCESS:
|
2017-07-10 19:00:14 -04:00
|
|
|
return appendMedia(state, fromJS(action.media));
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_UPLOAD_FAIL:
|
|
|
|
return state.set('is_uploading', false);
|
|
|
|
case COMPOSE_UPLOAD_UNDO:
|
|
|
|
return removeMedia(state, action.media_id);
|
|
|
|
case COMPOSE_UPLOAD_PROGRESS:
|
|
|
|
return state.set('progress', Math.round((action.loaded / action.total) * 100));
|
|
|
|
case COMPOSE_MENTION:
|
2017-04-25 09:04:49 -04:00
|
|
|
return state
|
|
|
|
.update('text', text => `${text}@${action.account.get('acct')} `)
|
|
|
|
.set('focusDate', new Date())
|
|
|
|
.set('idempotencyKey', uuid());
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_SUGGESTIONS_CLEAR:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.update('suggestions', ImmutableList(), list => list.clear()).set('suggestion_token', null);
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_SUGGESTIONS_READY:
|
2017-09-23 08:47:32 -04:00
|
|
|
return state.set('suggestions', ImmutableList(action.accounts ? action.accounts.map(item => item.id) : action.emojis)).set('suggestion_token', action.token);
|
2017-01-24 18:49:08 -05:00
|
|
|
case COMPOSE_SUGGESTION_SELECT:
|
|
|
|
return insertSuggestion(state, action.position, action.token, action.completion);
|
|
|
|
case TIMELINE_DELETE:
|
|
|
|
if (action.id === state.get('in_reply_to')) {
|
|
|
|
return state.set('in_reply_to', null);
|
|
|
|
} else {
|
2016-08-31 10:15:12 -04:00
|
|
|
return state;
|
2017-01-24 18:49:08 -05:00
|
|
|
}
|
2017-03-01 18:57:55 -05:00
|
|
|
case COMPOSE_EMOJI_INSERT:
|
|
|
|
return insertEmoji(state, action.position, action.emoji);
|
2017-09-28 09:31:31 -04:00
|
|
|
case COMPOSE_UPLOAD_CHANGE_SUCCESS:
|
|
|
|
return state
|
|
|
|
.set('is_submitting', false)
|
|
|
|
.update('media_attachments', list => list.map(item => {
|
|
|
|
if (item.get('id') === action.media.id) {
|
|
|
|
return item.set('description', action.media.description);
|
|
|
|
}
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}));
|
2017-10-13 18:58:38 -04:00
|
|
|
case COMPOSE_DOODLE_SET:
|
|
|
|
return state.mergeIn(['doodle'], action.options);
|
2017-01-24 18:49:08 -05:00
|
|
|
default:
|
|
|
|
return state;
|
2016-08-31 10:15:12 -04:00
|
|
|
}
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|