about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/domain_lists.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-03-04 21:33:08 +0100
committerThibaut Girka <thib@sitedethib.com>2018-03-30 10:07:33 +0200
commit482ad7d7c4f522deaea2487a150eeaaa0a795979 (patch)
tree790fef044e4b2a3c0e8b1ae618b5551b3ce66730 /app/javascript/flavours/glitch/reducers/domain_lists.js
parent79da0ad7a232d3aa8049125cad0970d29d016014 (diff)
Keep list of blocked domains
Might be overkill, but I'm trying to follow the same logic as for blocked users
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/domain_lists.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/domain_lists.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/reducers/domain_lists.js b/app/javascript/flavours/glitch/reducers/domain_lists.js
new file mode 100644
index 000000000..a9e3519f3
--- /dev/null
+++ b/app/javascript/flavours/glitch/reducers/domain_lists.js
@@ -0,0 +1,23 @@
+import {
+  DOMAIN_BLOCKS_FETCH_SUCCESS,
+  DOMAIN_BLOCKS_EXPAND_SUCCESS,
+  DOMAIN_UNBLOCK_SUCCESS,
+} from '../actions/domain_blocks';
+import { Map as ImmutableMap, OrderedSet as ImmutableOrderedSet } from 'immutable';
+
+const initialState = ImmutableMap({
+  blocks: ImmutableMap(),
+});
+
+export default function domainLists(state = initialState, action) {
+  switch(action.type) {
+  case DOMAIN_BLOCKS_FETCH_SUCCESS:
+    return state.setIn(['blocks', 'items'], ImmutableOrderedSet(action.domains)).setIn(['blocks', 'next'], action.next);
+  case DOMAIN_BLOCKS_EXPAND_SUCCESS:
+    return state.updateIn(['blocks', 'items'], set => set.union(action.domains)).setIn(['blocks', 'next'], action.next);
+  case DOMAIN_UNBLOCK_SUCCESS:
+    return state.updateIn(['blocks', 'items'], set => set.delete(action.domain));
+  default:
+    return state;
+  }
+};