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