diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-07-13 23:55:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 23:55:09 +0200 |
commit | e42ed4502f9e4a599ecf7a860b7de80090ba46ad (patch) | |
tree | 224cbc337acea85bd7a358fb4985f0362432cf38 /app/javascript/mastodon/reducers/modal.js | |
parent | 82bc8e764798b74f475763136117592526d905fa (diff) | |
parent | fc500a606225b56c3da7eaebf2bfb94e9cc97d2f (diff) |
Merge pull request #1567 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/javascript/mastodon/reducers/modal.js')
-rw-r--r-- | app/javascript/mastodon/reducers/modal.js | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/app/javascript/mastodon/reducers/modal.js b/app/javascript/mastodon/reducers/modal.js index cb53887c7..ea81b4332 100644 --- a/app/javascript/mastodon/reducers/modal.js +++ b/app/javascript/mastodon/reducers/modal.js @@ -1,19 +1,15 @@ import { MODAL_OPEN, MODAL_CLOSE } from '../actions/modal'; import { TIMELINE_DELETE } from '../actions/timelines'; +import { Stack as ImmutableStack, Map as ImmutableMap } from 'immutable'; -const initialState = { - modalType: null, - modalProps: {}, -}; - -export default function modal(state = initialState, action) { +export default function modal(state = ImmutableStack(), action) { switch(action.type) { case MODAL_OPEN: - return { modalType: action.modalType, modalProps: action.modalProps }; + return state.unshift(ImmutableMap({ modalType: action.modalType, modalProps: action.modalProps })); case MODAL_CLOSE: - return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state; + return (action.modalType === undefined || action.modalType === state.getIn([0, 'modalType'])) ? state.shift() : state; case TIMELINE_DELETE: - return (state.modalProps.statusId === action.id) ? initialState : state; + return state.filterNot((modal) => modal.get('modalProps').statusId === action.id); default: return state; } |