2016-09-19 21:25:59 +00:00
|
|
|
import {
|
2016-11-21 09:52:11 +00:00
|
|
|
COMPOSE_MOUNT,
|
|
|
|
COMPOSE_UNMOUNT,
|
2016-09-19 21:25:59 +00:00
|
|
|
COMPOSE_CHANGE,
|
|
|
|
COMPOSE_REPLY,
|
|
|
|
COMPOSE_REPLY_CANCEL,
|
2016-10-24 15:11:02 +00:00
|
|
|
COMPOSE_MENTION,
|
2016-09-19 21:25:59 +00: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 17:13:05 +00:00
|
|
|
COMPOSE_UPLOAD_PROGRESS,
|
|
|
|
COMPOSE_SUGGESTIONS_CLEAR,
|
2016-11-12 13:33:21 +00:00
|
|
|
COMPOSE_SUGGESTIONS_READY,
|
2016-11-23 17:53:23 +00:00
|
|
|
COMPOSE_SUGGESTION_SELECT,
|
2016-11-30 20:32:11 +00:00
|
|
|
COMPOSE_SENSITIVITY_CHANGE,
|
2017-01-13 04:54:26 +00:00
|
|
|
COMPOSE_SPOILERNESS_CHANGE,
|
|
|
|
COMPOSE_SPOILER_TEXT_CHANGE,
|
2016-12-23 14:20:16 +00:00
|
|
|
COMPOSE_VISIBILITY_CHANGE,
|
2017-03-01 23:57:55 +00:00
|
|
|
COMPOSE_LISTABILITY_CHANGE,
|
|
|
|
COMPOSE_EMOJI_INSERT
|
2016-10-30 14:06:43 +00:00
|
|
|
} from '../actions/compose';
|
|
|
|
import { TIMELINE_DELETE } from '../actions/timelines';
|
2017-01-09 11:37:15 +00:00
|
|
|
import { STORE_HYDRATE } from '../actions/store';
|
2016-10-30 14:06:43 +00:00
|
|
|
import Immutable from 'immutable';
|
2016-08-31 14:15:12 +00:00
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
2016-11-21 09:52:11 +00:00
|
|
|
mounted: false,
|
2016-11-23 17:53:23 +00:00
|
|
|
sensitive: false,
|
2017-01-13 04:54:26 +00:00
|
|
|
spoiler: false,
|
|
|
|
spoiler_text: '',
|
2017-03-24 23:01:43 +00:00
|
|
|
privacy: null,
|
2016-08-31 14:15:12 +00:00
|
|
|
text: '',
|
2017-02-22 14:43:07 +00:00
|
|
|
focusDate: null,
|
|
|
|
preselectDate: null,
|
2016-08-31 20:58:10 +00:00
|
|
|
in_reply_to: null,
|
2016-09-07 16:17:15 +00:00
|
|
|
is_submitting: false,
|
|
|
|
is_uploading: false,
|
|
|
|
progress: 0,
|
2016-10-30 17:13:05 +00:00
|
|
|
media_attachments: Immutable.List(),
|
2016-11-12 13:33:21 +00:00
|
|
|
suggestion_token: null,
|
|
|
|
suggestions: Immutable.List(),
|
2017-01-16 13:21:55 +00:00
|
|
|
me: null,
|
2017-02-06 22:16:20 +00:00
|
|
|
default_privacy: 'public',
|
2017-01-16 13:21:55 +00:00
|
|
|
resetFileKey: Math.floor((Math.random() * 0x10000))
|
2016-08-31 14:15:12 +00:00
|
|
|
});
|
|
|
|
|
2016-09-26 13:49:28 +00:00
|
|
|
function statusToTextMentions(state, status) {
|
|
|
|
let set = Immutable.OrderedSet([]);
|
|
|
|
let me = state.get('me');
|
|
|
|
|
|
|
|
if (status.getIn(['account', 'id']) !== me) {
|
|
|
|
set = set.add(`@${status.getIn(['account', 'acct'])} `);
|
|
|
|
}
|
2016-10-24 15:11:02 +00:00
|
|
|
|
2016-09-26 13:49:28 +00:00
|
|
|
return set.union(status.get('mentions').filterNot(mention => mention.get('id') === me).map(mention => `@${mention.get('acct')} `)).join('');
|
2016-09-21 22:09:21 +00:00
|
|
|
};
|
|
|
|
|
2016-09-22 19:39:53 +00:00
|
|
|
function clearAll(state) {
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('text', '');
|
2017-01-13 04:54:26 +00:00
|
|
|
map.set('spoiler', false);
|
|
|
|
map.set('spoiler_text', '');
|
2016-09-22 19:39:53 +00:00
|
|
|
map.set('is_submitting', false);
|
|
|
|
map.set('in_reply_to', null);
|
2017-03-24 23:01:43 +00:00
|
|
|
map.set('privacy', state.get('default_privacy'));
|
2017-04-13 17:23:36 +00:00
|
|
|
map.set('sensitive', false);
|
2016-09-22 19:39:53 +00:00
|
|
|
map.update('media_attachments', list => list.clear());
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function appendMedia(state, media) {
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.update('media_attachments', list => list.push(media));
|
|
|
|
map.set('is_uploading', false);
|
2017-01-16 13:21:55 +00:00
|
|
|
map.set('resetFileKey', Math.floor((Math.random() * 0x10000)));
|
2017-04-12 16:21:07 +00:00
|
|
|
map.set('focusDate', new Date());
|
|
|
|
map.update('text', oldText => `${oldText.trim()} ${media.get('text_url')}`.trim() + ' ');
|
2016-09-22 19:39:53 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function removeMedia(state, mediaId) {
|
2017-02-09 19:25:39 +00:00
|
|
|
const media = state.get('media_attachments').find(item => item.get('id') === mediaId);
|
|
|
|
const prevSize = state.get('media_attachments').size;
|
2016-09-22 19:39:53 +00: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-02-09 19:25:39 +00:00
|
|
|
|
|
|
|
if (prevSize === 1) {
|
2017-02-13 16:20:18 +00:00
|
|
|
map.set('sensitive', false);
|
2017-02-09 19:25:39 +00:00
|
|
|
}
|
2016-09-22 19:39:53 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-12-14 17:21:31 +00:00
|
|
|
const insertSuggestion = (state, position, token, completion) => {
|
2016-11-12 13:33:21 +00:00
|
|
|
return state.withMutations(map => {
|
2017-01-20 20:39:41 +00:00
|
|
|
map.update('text', oldText => `${oldText.slice(0, position)}${completion} ${oldText.slice(position + token.length)}`);
|
2016-11-12 13:33:21 +00:00
|
|
|
map.set('suggestion_token', null);
|
|
|
|
map.update('suggestions', Immutable.List(), list => list.clear());
|
2017-02-22 14:43:07 +00:00
|
|
|
map.set('focusDate', new Date());
|
2016-11-12 13:33:21 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-03-01 23:57:55 +00:00
|
|
|
const insertEmoji = (state, position, emojiData) => {
|
|
|
|
const emoji = emojiData.shortname;
|
|
|
|
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.update('text', oldText => `${oldText.slice(0, position)}${emoji} ${oldText.slice(position)}`);
|
|
|
|
map.set('focusDate', new Date());
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-03-24 23:01:43 +00: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';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
export default function compose(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-24 23:49:08 +00:00
|
|
|
case STORE_HYDRATE:
|
2017-02-06 22:16:20 +00:00
|
|
|
return clearAll(state.merge(action.state.get('compose')));
|
2017-01-24 23:49:08 +00:00
|
|
|
case COMPOSE_MOUNT:
|
|
|
|
return state.set('mounted', true);
|
|
|
|
case COMPOSE_UNMOUNT:
|
|
|
|
return state.set('mounted', false);
|
|
|
|
case COMPOSE_SENSITIVITY_CHANGE:
|
2017-03-24 23:01:43 +00:00
|
|
|
return state.set('sensitive', !state.get('sensitive'));
|
2017-01-24 23:49:08 +00:00
|
|
|
case COMPOSE_SPOILERNESS_CHANGE:
|
2017-02-26 00:23:44 +00:00
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('spoiler_text', '');
|
2017-03-24 23:01:43 +00:00
|
|
|
map.set('spoiler', !state.get('spoiler'));
|
2017-02-26 00:23:44 +00:00
|
|
|
});
|
2017-01-24 23:49:08 +00:00
|
|
|
case COMPOSE_SPOILER_TEXT_CHANGE:
|
|
|
|
return state.set('spoiler_text', action.text);
|
|
|
|
case COMPOSE_VISIBILITY_CHANGE:
|
2017-03-24 23:01:43 +00:00
|
|
|
return state.set('privacy', action.value);
|
2017-01-24 23:49:08 +00:00
|
|
|
case COMPOSE_CHANGE:
|
|
|
|
return state.set('text', action.text);
|
|
|
|
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 23:01:43 +00:00
|
|
|
map.set('privacy', privacyPreference(action.status.get('visibility'), state.get('default_privacy')));
|
2017-02-22 14:43:07 +00:00
|
|
|
map.set('focusDate', new Date());
|
|
|
|
map.set('preselectDate', new Date());
|
2017-03-25 18:30:56 +00:00
|
|
|
|
|
|
|
if (action.status.get('spoiler_text').length > 0) {
|
|
|
|
map.set('spoiler', true);
|
|
|
|
map.set('spoiler_text', action.status.get('spoiler_text'));
|
2017-04-13 01:17:34 +00:00
|
|
|
} else {
|
|
|
|
map.set('spoiler', false);
|
|
|
|
map.set('spoiler_text', '');
|
2017-03-25 18:30:56 +00:00
|
|
|
}
|
2017-01-24 23:49:08 +00:00
|
|
|
});
|
|
|
|
case COMPOSE_REPLY_CANCEL:
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('in_reply_to', null);
|
|
|
|
map.set('text', '');
|
2017-03-25 18:30:56 +00:00
|
|
|
map.set('spoiler', false);
|
|
|
|
map.set('spoiler_text', '');
|
2017-03-24 23:01:43 +00:00
|
|
|
map.set('privacy', state.get('default_privacy'));
|
2017-01-24 23:49:08 +00:00
|
|
|
});
|
|
|
|
case COMPOSE_SUBMIT_REQUEST:
|
|
|
|
return state.set('is_submitting', true);
|
|
|
|
case COMPOSE_SUBMIT_SUCCESS:
|
|
|
|
return clearAll(state);
|
|
|
|
case COMPOSE_SUBMIT_FAIL:
|
|
|
|
return state.set('is_submitting', false);
|
|
|
|
case COMPOSE_UPLOAD_REQUEST:
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('is_uploading', true);
|
|
|
|
});
|
|
|
|
case COMPOSE_UPLOAD_SUCCESS:
|
|
|
|
return appendMedia(state, Immutable.fromJS(action.media));
|
|
|
|
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-02-22 14:43:07 +00:00
|
|
|
return state.update('text', text => `${text}@${action.account.get('acct')} `).set('focusDate', new Date());
|
2017-01-24 23:49:08 +00:00
|
|
|
case COMPOSE_SUGGESTIONS_CLEAR:
|
|
|
|
return state.update('suggestions', Immutable.List(), list => list.clear()).set('suggestion_token', null);
|
|
|
|
case COMPOSE_SUGGESTIONS_READY:
|
|
|
|
return state.set('suggestions', Immutable.List(action.accounts.map(item => item.id))).set('suggestion_token', action.token);
|
|
|
|
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 14:15:12 +00:00
|
|
|
return state;
|
2017-01-24 23:49:08 +00:00
|
|
|
}
|
2017-03-01 23:57:55 +00:00
|
|
|
case COMPOSE_EMOJI_INSERT:
|
|
|
|
return insertEmoji(state, action.position, action.emoji);
|
2017-01-24 23:49:08 +00:00
|
|
|
default:
|
|
|
|
return state;
|
2016-08-31 14:15:12 +00:00
|
|
|
}
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|