~cytrogen/masto-fe

ref: f3a2e15f8e0274b5fdf28e3ce062084dc142cb2e masto-fe/app/javascript/mastodon/reducers/mutes.js -rw-r--r-- 798 bytes
f3a2e15f — Eugen Rochko Fix mute button and volume slider feeling disconnected in web UI (#26827) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import Immutable from 'immutable';

import {
  MUTES_INIT_MODAL,
  MUTES_TOGGLE_HIDE_NOTIFICATIONS,
  MUTES_CHANGE_DURATION,
} from '../actions/mutes';

const initialState = Immutable.Map({
  new: Immutable.Map({
    account: null,
    notifications: true,
    duration: 0,
  }),
});

export default function mutes(state = initialState, action) {
  switch (action.type) {
  case MUTES_INIT_MODAL:
    return state.withMutations((state) => {
      state.setIn(['new', 'account'], action.account);
      state.setIn(['new', 'notifications'], true);
    });
  case MUTES_TOGGLE_HIDE_NOTIFICATIONS:
    return state.updateIn(['new', 'notifications'], (old) => !old);
  case MUTES_CHANGE_DURATION:
    return state.setIn(['new', 'duration'], Number(action.duration));
  default:
    return state;
  }
}