about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/reducers/mutes.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/reducers/mutes.js')
-rw-r--r--app/javascript/themes/glitch/reducers/mutes.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/app/javascript/themes/glitch/reducers/mutes.js b/app/javascript/themes/glitch/reducers/mutes.js
deleted file mode 100644
index 8fe4ae0c3..000000000
--- a/app/javascript/themes/glitch/reducers/mutes.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import Immutable from 'immutable';
-
-import {
-  MUTES_INIT_MODAL,
-  MUTES_TOGGLE_HIDE_NOTIFICATIONS,
-} from 'themes/glitch/actions/mutes';
-
-const initialState = Immutable.Map({
-  new: Immutable.Map({
-    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;
-  }
-}