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.
29 lines
746 B
29 lines
746 B
import { |
|
FOLLOW_CHANGE, |
|
FOLLOW_SUBMIT_REQUEST, |
|
FOLLOW_SUBMIT_SUCCESS, |
|
FOLLOW_SUBMIT_FAIL |
|
} from '../actions/follow'; |
|
import Immutable from 'immutable'; |
|
|
|
const initialState = Immutable.Map({ |
|
text: '', |
|
is_submitting: false |
|
}); |
|
|
|
export default function follow(state = initialState, action) { |
|
switch(action.type) { |
|
case FOLLOW_CHANGE: |
|
return state.set('text', action.text); |
|
case FOLLOW_SUBMIT_REQUEST: |
|
return state.set('is_submitting', true); |
|
case FOLLOW_SUBMIT_SUCCESS: |
|
return state.withMutations(map => { |
|
map.set('text', '').set('is_submitting', false); |
|
}); |
|
case FOLLOW_SUBMIT_FAIL: |
|
return state.set('is_submitting', false); |
|
default: |
|
return state; |
|
} |
|
};
|
|
|