This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-10-27 12:59:56 -07:00
|
|
|
import {
|
|
|
|
FOLLOWERS_FETCH_SUCCESS,
|
|
|
|
FOLLOWING_FETCH_SUCCESS
|
2016-10-30 07:06:43 -07:00
|
|
|
} from '../actions/accounts';
|
|
|
|
import { SUGGESTIONS_FETCH_SUCCESS } from '../actions/suggestions';
|
|
|
|
import Immutable from 'immutable';
|
2016-10-27 12:59:56 -07:00
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
|
|
|
followers: Immutable.Map(),
|
2016-10-30 07:06:43 -07:00
|
|
|
following: Immutable.Map(),
|
|
|
|
suggestions: Immutable.List()
|
2016-10-27 12:59:56 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
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)));
|
2016-10-30 07:06:43 -07:00
|
|
|
case SUGGESTIONS_FETCH_SUCCESS:
|
|
|
|
return state.set('suggestions', Immutable.List(action.accounts.map(item => item.id)));
|
2016-10-27 12:59:56 -07:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|