This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/flavours/glitch/reducers/modal.js

18 lines
482 B
JavaScript
Raw Normal View History

2017-12-03 23:26:40 -08:00
import { MODAL_OPEN, MODAL_CLOSE } from 'flavours/glitch/actions/modal';
2016-10-24 09:07:40 -07:00
2017-04-01 13:11:28 -07:00
const initialState = {
modalType: null,
modalProps: {},
2017-04-01 13:11:28 -07:00
};
2016-10-24 09:07:40 -07:00
export default function modal(state = initialState, action) {
switch(action.type) {
2017-04-01 13:11:28 -07:00
case MODAL_OPEN:
return { modalType: action.modalType, modalProps: action.modalProps };
2017-01-16 04:27:58 -08:00
case MODAL_CLOSE:
return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
2017-01-16 04:27:58 -08:00
default:
return state;
2016-10-24 09:07:40 -07:00
}
};