about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/modal.js
blob: 7bd9d4b326b883db93e379e4979d54c9d6d2d023 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { MODAL_OPEN, MODAL_CLOSE } from 'flavours/glitch/actions/modal';

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;
  default:
    return state;
  }
};