about summary refs log tree commit diff
path: root/app/assets/javascripts/components/reducers/suggestions.jsx
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-27 21:59:56 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-27 21:59:56 +0200
commit1c84d505c8cb926710d059725c5a2d966dd4736b (patch)
treec4ff6e08948a6432ce8f966c4ba8b5d7e11adb28 /app/assets/javascripts/components/reducers/suggestions.jsx
parent909d0d5e88b046f8bb69c893c54944bb2aad12cf (diff)
Adding following/followers lists to the UI
Diffstat (limited to 'app/assets/javascripts/components/reducers/suggestions.jsx')
-rw-r--r--app/assets/javascripts/components/reducers/suggestions.jsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/reducers/suggestions.jsx b/app/assets/javascripts/components/reducers/suggestions.jsx
new file mode 100644
index 000000000..9d2b7d96a
--- /dev/null
+++ b/app/assets/javascripts/components/reducers/suggestions.jsx
@@ -0,0 +1,13 @@
+import { SUGGESTIONS_FETCH_SUCCESS } from '../actions/suggestions';
+import Immutable                     from 'immutable';
+
+const initialState = Immutable.List();
+
+export default function suggestions(state = initialState, action) {
+  switch(action.type) {
+    case SUGGESTIONS_FETCH_SUCCESS:
+      return Immutable.List(action.accounts.map(item => item.id));
+    default:
+      return state;
+  }
+}