You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
830 B

import { COMPOSE_CHANGE, COMPOSE_SUBMIT_REQUEST, COMPOSE_SUBMIT_SUCCESS, COMPOSE_SUBMIT_FAIL } from '../actions/compose';
import Immutable from 'immutable';
const initialState = Immutable.Map({
text: '',
in_reply_to_id: null,
isSubmitting: false
});
export default function compose(state = initialState, action) {
switch(action.type) {
case COMPOSE_CHANGE:
return state.set('text', action.text);
case COMPOSE_SUBMIT_REQUEST:
return state.set('isSubmitting', true);
case COMPOSE_SUBMIT_SUCCESS:
return state.withMutations(map => {
map.set('text', '').set('isSubmitting', false);
});
case COMPOSE_SUBMIT_FAIL:
return state.set('isSubmitting', false);
default:
return state;
}
}