2017-04-01 20:11:28 +00:00
|
|
|
import { MODAL_OPEN, MODAL_CLOSE } from '../actions/modal';
|
2021-02-11 18:59:47 +00:00
|
|
|
import { TIMELINE_DELETE } from '../actions/timelines';
|
2021-07-13 13:45:17 +00:00
|
|
|
import { Stack as ImmutableStack, Map as ImmutableMap } from 'immutable';
|
2016-10-24 16:07:40 +00:00
|
|
|
|
2021-07-13 13:45:17 +00:00
|
|
|
export default function modal(state = ImmutableStack(), action) {
|
2016-10-24 16:07:40 +00:00
|
|
|
switch(action.type) {
|
2017-04-01 20:11:28 +00:00
|
|
|
case MODAL_OPEN:
|
2021-07-14 03:36:23 +00:00
|
|
|
return state.unshift(ImmutableMap({ modalType: action.modalType, modalProps: action.modalProps }));
|
2017-01-16 12:27:58 +00:00
|
|
|
case MODAL_CLOSE:
|
2021-07-13 13:45:17 +00:00
|
|
|
return (action.modalType === undefined || action.modalType === state.getIn([0, 'modalType'])) ? state.shift() : state;
|
2021-02-11 18:59:47 +00:00
|
|
|
case TIMELINE_DELETE:
|
2021-07-14 03:36:23 +00:00
|
|
|
return state.filterNot((modal) => modal.get('modalProps').statusId === action.id);
|
2017-01-16 12:27:58 +00:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-24 16:07:40 +00:00
|
|
|
}
|
|
|
|
};
|