about summary refs log tree commit diff
path: root/app/assets/javascripts/components/reducers/follow.jsx
blob: 348510eafe2b4bcbd5c90692c8169cc5e3c27888 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import * as constants from '../actions/follow';
import Immutable                                                                                              from 'immutable';

const initialState = Immutable.Map({
  text: '',
  is_submitting: false
});

export default function compose(state = initialState, action) {
  switch(action.type) {
    case constants.FOLLOW_CHANGE:
      return state.set('text', action.text);
    case constants.FOLLOW_SUBMIT_REQUEST:
      return state.set('is_submitting', true);
    case constants.FOLLOW_SUBMIT_SUCCESS:
      return state.withMutations(map => {
        map.set('text', '').set('is_submitting', false);
      });
    case constants.FOLLOW_SUBMIT_FAIL:
      return state.set('is_submitting', false);
    default:
      return state;
  }
}