static-cms/src/reducers/config.js

18 lines
490 B
JavaScript
Raw Normal View History

2016-02-25 00:45:56 -08:00
import Immutable from 'immutable';
import { CONFIG_REQUEST, CONFIG_SUCCESS, CONFIG_FAILURE } from '../actions/config';
2016-02-25 00:45:56 -08:00
2016-06-10 00:16:01 -03:00
const config = (state = null, action) => {
2016-02-25 00:45:56 -08:00
switch (action.type) {
case CONFIG_REQUEST:
2016-06-16 22:49:48 -03:00
return Immutable.Map({ isFetching: true });
case CONFIG_SUCCESS:
return Immutable.fromJS(action.payload);
case CONFIG_FAILURE:
2016-06-16 22:49:48 -03:00
return Immutable.Map({ error: action.payload.toString() });
2016-02-25 00:45:56 -08:00
default:
return state;
}
2016-06-10 00:16:01 -03:00
};
export default config;