2017-04-01 20:11:28 +00:00
|
|
|
import { MODAL_OPEN, MODAL_CLOSE } from '../actions/modal';
|
2016-10-24 16:07:40 +00:00
|
|
|
|
2017-04-01 20:11:28 +00:00
|
|
|
const initialState = {
|
|
|
|
modalType: null,
|
2017-05-20 15:31:47 +00:00
|
|
|
modalProps: {},
|
2017-04-01 20:11:28 +00:00
|
|
|
};
|
2016-10-24 16:07:40 +00:00
|
|
|
|
|
|
|
export default function modal(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-04-01 20:11:28 +00:00
|
|
|
case MODAL_OPEN:
|
|
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
2017-01-16 12:27:58 +00:00
|
|
|
case MODAL_CLOSE:
|
2019-08-06 09:59:46 +00:00
|
|
|
return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
|
2017-01-16 12:27:58 +00:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-24 16:07:40 +00:00
|
|
|
}
|
|
|
|
};
|