mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
847779b1e4
Port 08ae116dc6
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
21 lines
652 B
JavaScript
21 lines
652 B
JavaScript
import { MODAL_OPEN, MODAL_CLOSE } from 'flavours/glitch/actions/modal';
|
|
import { TIMELINE_DELETE } from 'flavours/glitch/actions/timelines';
|
|
|
|
const initialState = {
|
|
modalType: null,
|
|
modalProps: {},
|
|
};
|
|
|
|
export default function modal(state = initialState, action) {
|
|
switch(action.type) {
|
|
case MODAL_OPEN:
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
|
case MODAL_CLOSE:
|
|
return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
|
|
case TIMELINE_DELETE:
|
|
return (state.modalProps.statusId === action.id) ? initialState : state;
|
|
default:
|
|
return state;
|
|
}
|
|
};
|