2017-08-07 00:36:04 +02:00
|
|
|
import Immutable from 'immutable';
|
|
|
|
|
|
|
|
import {
|
2017-08-07 01:00:38 +02:00
|
|
|
MUTES_INIT_MODAL,
|
|
|
|
MUTES_TOGGLE_HIDE_NOTIFICATIONS,
|
2017-08-07 00:36:04 +02:00
|
|
|
} from '../actions/mutes';
|
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
2017-08-07 01:00:38 +02:00
|
|
|
new: Immutable.Map({
|
|
|
|
isSubmitting: false,
|
|
|
|
account: null,
|
|
|
|
notifications: true,
|
|
|
|
}),
|
2017-08-07 00:36:04 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default function mutes(state = initialState, action) {
|
2017-08-07 01:00:38 +02:00
|
|
|
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.setIn(['new', 'notifications'], !state.getIn(['new', 'notifications']));
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2017-08-07 01:15:44 +02:00
|
|
|
}
|