This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-01 22:11:28 +02:00
|
|
|
import { MODAL_OPEN, MODAL_CLOSE } from '../actions/modal';
|
2017-02-05 02:48:11 +01:00
|
|
|
import Immutable from 'immutable';
|
2016-10-24 18:07:40 +02:00
|
|
|
|
2017-04-01 22:11:28 +02:00
|
|
|
const initialState = {
|
|
|
|
modalType: null,
|
|
|
|
modalProps: {}
|
|
|
|
};
|
2016-10-24 18:07:40 +02:00
|
|
|
|
|
|
|
export default function modal(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-04-01 22:11:28 +02:00
|
|
|
case MODAL_OPEN:
|
|
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
2017-01-16 13:27:58 +01:00
|
|
|
case MODAL_CLOSE:
|
2017-04-01 22:11:28 +02:00
|
|
|
return initialState;
|
2017-01-16 13:27:58 +01:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-24 18:07:40 +02:00
|
|
|
}
|
|
|
|
};
|