Replies in the compose form

This commit is contained in:
Eugen Rochko
2016-08-31 22:58:10 +02:00
parent 1e0e17ba85
commit dbae8062f4
15 changed files with 257 additions and 307 deletions

View File

@ -1,24 +1,32 @@
import { COMPOSE_CHANGE, COMPOSE_SUBMIT_REQUEST, COMPOSE_SUBMIT_SUCCESS, COMPOSE_SUBMIT_FAIL } from '../actions/compose';
import Immutable from 'immutable';
import * as constants from '../actions/compose';
import Immutable from 'immutable';
const initialState = Immutable.Map({
text: '',
in_reply_to_id: null,
isSubmitting: false
in_reply_to: null,
is_submitting: false
});
export default function compose(state = initialState, action) {
switch(action.type) {
case COMPOSE_CHANGE:
case constants.COMPOSE_CHANGE:
return state.set('text', action.text);
case COMPOSE_SUBMIT_REQUEST:
return state.set('isSubmitting', true);
case COMPOSE_SUBMIT_SUCCESS:
case constants.COMPOSE_REPLY:
return state.withMutations(map => {
map.set('text', '').set('isSubmitting', false);
map.set('in_reply_to', action.payload).set('text', `@${action.payload.getIn(['account', 'acct'])} `);
});
case COMPOSE_SUBMIT_FAIL:
return state.set('isSubmitting', false);
case constants.COMPOSE_REPLY_CANCEL:
return state.withMutations(map => {
map.set('in_reply_to', null).set('text', '');
});
case constants.COMPOSE_SUBMIT_REQUEST:
return state.set('is_submitting', true);
case constants.COMPOSE_SUBMIT_SUCCESS:
return state.withMutations(map => {
map.set('text', '').set('is_submitting', false),set('in_reply_to', null);
});
case constants.COMPOSE_SUBMIT_FAIL:
return state.set('is_submitting', false);
default:
return state;
}