2017-11-17 22:11:18 -05:00
|
|
|
import { MODAL_OPEN, MODAL_CLOSE } from 'themes/glitch/actions/modal';
|
2016-10-24 12:07:40 -04:00
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
const initialState = {
|
|
|
|
modalType: null,
|
2017-05-20 11:31:47 -04:00
|
|
|
modalProps: {},
|
2017-04-01 16:11:28 -04:00
|
|
|
};
|
2016-10-24 12:07:40 -04:00
|
|
|
|
|
|
|
export default function modal(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-04-01 16:11:28 -04:00
|
|
|
case MODAL_OPEN:
|
|
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
2017-01-16 07:27:58 -05:00
|
|
|
case MODAL_CLOSE:
|
2017-04-01 16:11:28 -04:00
|
|
|
return initialState;
|
2017-01-16 07:27:58 -05:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-24 12:07:40 -04:00
|
|
|
}
|
|
|
|
};
|