2017-04-01 15:11:28 -05:00
|
|
|
import { MODAL_OPEN, MODAL_CLOSE } from '../actions/modal';
|
2017-02-04 19:48:11 -06:00
|
|
|
import Immutable from 'immutable';
|
2016-10-24 11:07:40 -05:00
|
|
|
|
2017-04-01 15:11:28 -05:00
|
|
|
const initialState = {
|
|
|
|
modalType: null,
|
|
|
|
modalProps: {}
|
|
|
|
};
|
2016-10-24 11:07:40 -05:00
|
|
|
|
|
|
|
export default function modal(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-04-01 15:11:28 -05:00
|
|
|
case MODAL_OPEN:
|
|
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
2017-01-16 06:27:58 -06:00
|
|
|
case MODAL_CLOSE:
|
2017-04-01 15:11:28 -05:00
|
|
|
return initialState;
|
2017-01-16 06:27:58 -06:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-24 11:07:40 -05:00
|
|
|
}
|
|
|
|
};
|