mastodon/app/javascript/mastodon/reducers/modal.js

17 lines
702 B
JavaScript
Raw Normal View History

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