about summary refs log tree commit diff
path: root/app/assets/javascripts/components/reducers/user_lists.jsx
blob: 686179af205e6206cb664765d6cbba93f566e741 (plain) (blame)
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
import {
  FOLLOWERS_FETCH_SUCCESS,
  FOLLOWING_FETCH_SUCCESS
} from '../actions/accounts';
import { SUGGESTIONS_FETCH_SUCCESS } from '../actions/suggestions';
import { REBLOGS_FETCH_SUCCESS } from '../actions/interactions';
import Immutable from 'immutable';

const initialState = Immutable.Map({
  followers: Immutable.Map(),
  following: Immutable.Map(),
  suggestions: Immutable.List()
});

export default function userLists(state = initialState, action) {
  switch(action.type) {
    case FOLLOWERS_FETCH_SUCCESS:
      return state.setIn(['followers', action.id], Immutable.List(action.accounts.map(item => item.id)));
    case FOLLOWING_FETCH_SUCCESS:
      return state.setIn(['following', action.id], Immutable.List(action.accounts.map(item => item.id)));
    case SUGGESTIONS_FETCH_SUCCESS:
      return state.set('suggestions', Immutable.List(action.accounts.map(item => item.id)));
    case REBLOGS_FETCH_SUCCESS:
      return state.setIn(['reblogged_by', action.id], Immutable.List(action.accounts.map(item => item.id)));
    default:
      return state;
  }
};