|
|
@ -1,4 +1,5 @@
|
|
|
|
import { MODAL_OPEN, MODAL_CLOSE } from 'flavours/glitch/actions/modal';
|
|
|
|
import { MODAL_OPEN, MODAL_CLOSE } from 'flavours/glitch/actions/modal';
|
|
|
|
|
|
|
|
import { TIMELINE_DELETE } from 'flavours/glitch/actions/timelines';
|
|
|
|
|
|
|
|
|
|
|
|
const initialState = {
|
|
|
|
const initialState = {
|
|
|
|
modalType: null,
|
|
|
|
modalType: null,
|
|
|
@ -11,6 +12,8 @@ export default function modal(state = initialState, action) {
|
|
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
|
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
|
|
|
case MODAL_CLOSE:
|
|
|
|
case MODAL_CLOSE:
|
|
|
|
return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
|
|
|
|
return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
|
|
|
|
|
|
|
|
case TIMELINE_DELETE:
|
|
|
|
|
|
|
|
return (state.modalProps.statusId === action.id) ? initialState : state;
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|