bigbuffet-rw/app/soapbox/reducers/mutes.js

30 lines
744 B
JavaScript
Raw Normal View History

2021-09-12 09:25:44 -07:00
import { Map as ImmutableMap } from 'immutable';
2020-03-27 13:59:38 -07:00
import {
MUTES_INIT_MODAL,
MUTES_TOGGLE_HIDE_NOTIFICATIONS,
} from '../actions/mutes';
2021-09-12 09:25:44 -07:00
const initialState = ImmutableMap({
new: ImmutableMap({
2020-03-27 13:59:38 -07:00
isSubmitting: false,
account: null,
notifications: true,
}),
});
export default function mutes(state = initialState, action) {
switch (action.type) {
case MUTES_INIT_MODAL:
return state.withMutations((state) => {
state.setIn(['new', 'isSubmitting'], false);
state.setIn(['new', 'account'], action.account);
state.setIn(['new', 'notifications'], true);
});
case MUTES_TOGGLE_HIDE_NOTIFICATIONS:
return state.updateIn(['new', 'notifications'], (old) => !old);
default:
return state;
}
}