2016-09-19 14:25:59 -07:00
|
|
|
import {
|
2016-11-21 01:52:11 -08:00
|
|
|
COMPOSE_MOUNT,
|
|
|
|
COMPOSE_UNMOUNT,
|
2016-09-19 14:25:59 -07:00
|
|
|
COMPOSE_CHANGE,
|
|
|
|
COMPOSE_REPLY,
|
|
|
|
COMPOSE_REPLY_CANCEL,
|
2016-10-24 08:11:02 -07:00
|
|
|
COMPOSE_MENTION,
|
2016-09-19 14:25:59 -07: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 10:13:05 -07:00
|
|
|
COMPOSE_UPLOAD_PROGRESS,
|
|
|
|
COMPOSE_SUGGESTIONS_CLEAR,
|
2016-11-12 05:33:21 -08:00
|
|
|
COMPOSE_SUGGESTIONS_READY,
|
2016-11-23 09:53:23 -08:00
|
|
|
COMPOSE_SUGGESTION_SELECT,
|
2016-11-30 12:32:11 -08:00
|
|
|
COMPOSE_SENSITIVITY_CHANGE,
|
|
|
|
COMPOSE_VISIBILITY_CHANGE
|
2016-10-30 07:06:43 -07:00
|
|
|
} from '../actions/compose';
|
|
|
|
import { TIMELINE_DELETE } from '../actions/timelines';
|
2016-09-26 06:49:28 -07:00
|
|
|
import { ACCOUNT_SET_SELF } from '../actions/accounts';
|
2016-10-30 07:06:43 -07:00
|
|
|
import Immutable from 'immutable';
|
2016-08-31 07:15:12 -07:00
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
2016-11-21 01:52:11 -08:00
|
|
|
mounted: false,
|
2016-11-23 09:53:23 -08:00
|
|
|
sensitive: false,
|
2016-12-22 15:38:16 -08:00
|
|
|
private: false,
|
2016-08-31 07:15:12 -07:00
|
|
|
text: '',
|
2016-08-31 13:58:10 -07:00
|
|
|
in_reply_to: null,
|
2016-09-07 09:17:15 -07:00
|
|
|
is_submitting: false,
|
|
|
|
is_uploading: false,
|
|
|
|
progress: 0,
|
2016-10-30 10:13:05 -07:00
|
|
|
media_attachments: Immutable.List(),
|
2016-11-12 05:33:21 -08:00
|
|
|
suggestion_token: null,
|
|
|
|
suggestions: Immutable.List(),
|
2016-09-26 06:49:28 -07:00
|
|
|
me: null
|
2016-08-31 07:15:12 -07:00
|
|
|
});
|
|
|
|
|
2016-09-26 06:49:28 -07: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 08:11:02 -07:00
|
|
|
|
2016-09-26 06:49:28 -07:00
|
|
|
return set.union(status.get('mentions').filterNot(mention => mention.get('id') === me).map(mention => `@${mention.get('acct')} `)).join('');
|
2016-09-21 15:09:21 -07:00
|
|
|
};
|
|
|
|
|
2016-09-22 12:39:53 -07:00
|
|
|
function clearAll(state) {
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('text', '');
|
|
|
|
map.set('is_submitting', false);
|
|
|
|
map.set('in_reply_to', null);
|
|
|
|
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);
|
|
|
|
map.update('text', oldText => `${oldText} ${media.get('text_url')}`.trim());
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function removeMedia(state, mediaId) {
|
|
|
|
const media = state.get('media_attachments').find(item => item.get('id') === mediaId);
|
|
|
|
|
|
|
|
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());
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-12-14 09:21:31 -08:00
|
|
|
const insertSuggestion = (state, position, token, completion) => {
|
2016-11-12 05:33:21 -08:00
|
|
|
return state.withMutations(map => {
|
2016-12-14 09:21:31 -08:00
|
|
|
map.update('text', oldText => `${oldText.slice(0, position)}${completion}${oldText.slice(position + token.length)}`);
|
2016-11-12 05:33:21 -08:00
|
|
|
map.set('suggestion_token', null);
|
|
|
|
map.update('suggestions', Immutable.List(), list => list.clear());
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
export default function compose(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2016-11-21 01:52:11 -08:00
|
|
|
case COMPOSE_MOUNT:
|
|
|
|
return state.set('mounted', true);
|
|
|
|
case COMPOSE_UNMOUNT:
|
|
|
|
return state.set('mounted', false);
|
2016-11-23 09:53:23 -08:00
|
|
|
case COMPOSE_SENSITIVITY_CHANGE:
|
|
|
|
return state.set('sensitive', action.checked);
|
2016-11-30 12:32:11 -08:00
|
|
|
case COMPOSE_VISIBILITY_CHANGE:
|
2016-12-22 15:38:16 -08:00
|
|
|
return state.set('private', action.checked);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_CHANGE:
|
2016-08-31 07:15:12 -07:00
|
|
|
return state.set('text', action.text);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_REPLY:
|
2016-08-31 07:15:12 -07:00
|
|
|
return state.withMutations(map => {
|
2016-09-05 07:56:43 -07:00
|
|
|
map.set('in_reply_to', action.status.get('id'));
|
2016-09-26 06:49:28 -07:00
|
|
|
map.set('text', statusToTextMentions(state, action.status));
|
2016-08-31 07:15:12 -07:00
|
|
|
});
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_REPLY_CANCEL:
|
2016-08-31 13:58:10 -07:00
|
|
|
return state.withMutations(map => {
|
2016-09-07 09:17:15 -07:00
|
|
|
map.set('in_reply_to', null);
|
|
|
|
map.set('text', '');
|
2016-08-31 13:58:10 -07:00
|
|
|
});
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_SUBMIT_REQUEST:
|
2016-08-31 13:58:10 -07:00
|
|
|
return state.set('is_submitting', true);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_SUBMIT_SUCCESS:
|
2016-09-22 12:39:53 -07:00
|
|
|
return clearAll(state);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_SUBMIT_FAIL:
|
2016-08-31 13:58:10 -07:00
|
|
|
return state.set('is_submitting', false);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_UPLOAD_REQUEST:
|
2016-09-07 09:17:15 -07:00
|
|
|
return state.set('is_uploading', true);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_UPLOAD_SUCCESS:
|
2016-09-22 12:39:53 -07:00
|
|
|
return appendMedia(state, Immutable.fromJS(action.media));
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_UPLOAD_FAIL:
|
2016-09-07 09:17:15 -07:00
|
|
|
return state.set('is_uploading', false);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_UPLOAD_UNDO:
|
2016-09-22 12:39:53 -07:00
|
|
|
return removeMedia(state, action.media_id);
|
2016-09-19 14:25:59 -07:00
|
|
|
case COMPOSE_UPLOAD_PROGRESS:
|
2016-09-07 09:17:15 -07:00
|
|
|
return state.set('progress', Math.round((action.loaded / action.total) * 100));
|
2016-10-24 08:11:02 -07:00
|
|
|
case COMPOSE_MENTION:
|
|
|
|
return state.update('text', text => `${text}@${action.account.get('acct')} `);
|
2016-10-30 10:13:05 -07:00
|
|
|
case COMPOSE_SUGGESTIONS_CLEAR:
|
2016-11-12 05:33:21 -08:00
|
|
|
return state.update('suggestions', Immutable.List(), list => list.clear()).set('suggestion_token', null);
|
2016-10-30 10:13:05 -07:00
|
|
|
case COMPOSE_SUGGESTIONS_READY:
|
2016-11-12 05:33:21 -08:00
|
|
|
return state.set('suggestions', Immutable.List(action.accounts.map(item => item.id))).set('suggestion_token', action.token);
|
|
|
|
case COMPOSE_SUGGESTION_SELECT:
|
2016-12-14 09:21:31 -08:00
|
|
|
return insertSuggestion(state, action.position, action.token, action.completion);
|
2016-09-05 07:56:43 -07:00
|
|
|
case TIMELINE_DELETE:
|
|
|
|
if (action.id === state.get('in_reply_to')) {
|
|
|
|
return state.set('in_reply_to', null);
|
|
|
|
} else {
|
|
|
|
return state;
|
|
|
|
}
|
2016-09-26 06:49:28 -07:00
|
|
|
case ACCOUNT_SET_SELF:
|
2016-12-22 15:38:16 -08:00
|
|
|
return state.set('me', action.account.id).set('private', action.account.locked);
|
2016-08-31 07:15:12 -07:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|