2016-10-27 15:59:56 -04:00
|
|
|
import {
|
|
|
|
FOLLOWERS_FETCH_SUCCESS,
|
2016-11-13 14:42:54 -05:00
|
|
|
FOLLOWERS_EXPAND_SUCCESS,
|
|
|
|
FOLLOWING_FETCH_SUCCESS,
|
2016-12-26 15:33:51 -05:00
|
|
|
FOLLOWING_EXPAND_SUCCESS,
|
|
|
|
FOLLOW_REQUESTS_FETCH_SUCCESS,
|
2017-02-05 13:18:11 -05:00
|
|
|
FOLLOW_REQUESTS_EXPAND_SUCCESS,
|
2016-12-26 15:33:51 -05:00
|
|
|
FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
FOLLOW_REQUEST_REJECT_SUCCESS,
|
2016-10-30 10:06:43 -04:00
|
|
|
} from '../actions/accounts';
|
2016-11-04 07:48:53 -04:00
|
|
|
import {
|
|
|
|
REBLOGS_FETCH_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
FAVOURITES_FETCH_SUCCESS,
|
2016-11-04 07:48:53 -04:00
|
|
|
} from '../actions/interactions';
|
2017-02-05 13:18:11 -05:00
|
|
|
import {
|
|
|
|
BLOCKS_FETCH_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
BLOCKS_EXPAND_SUCCESS,
|
2017-02-05 13:18:11 -05:00
|
|
|
} from '../actions/blocks';
|
2017-04-14 19:23:49 -04:00
|
|
|
import {
|
|
|
|
MUTES_FETCH_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
MUTES_EXPAND_SUCCESS,
|
2017-04-14 19:23:49 -04:00
|
|
|
} from '../actions/mutes';
|
2017-07-10 19:00:14 -04:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
2016-10-27 15:59:56 -04:00
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const initialState = ImmutableMap({
|
|
|
|
followers: ImmutableMap(),
|
|
|
|
following: ImmutableMap(),
|
|
|
|
reblogged_by: ImmutableMap(),
|
|
|
|
favourited_by: ImmutableMap(),
|
|
|
|
follow_requests: ImmutableMap(),
|
|
|
|
blocks: ImmutableMap(),
|
|
|
|
mutes: ImmutableMap(),
|
2016-10-27 15:59:56 -04:00
|
|
|
});
|
|
|
|
|
2016-11-13 14:55:24 -05:00
|
|
|
const normalizeList = (state, type, id, accounts, next) => {
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.setIn([type, id], ImmutableMap({
|
2016-11-13 14:55:24 -05:00
|
|
|
next,
|
2017-07-10 19:00:14 -04:00
|
|
|
items: ImmutableList(accounts.map(item => item.id)),
|
2016-11-13 14:42:54 -05:00
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2016-11-13 14:55:24 -05:00
|
|
|
const appendToList = (state, type, id, accounts, next) => {
|
2016-11-13 14:42:54 -05:00
|
|
|
return state.updateIn([type, id], map => {
|
2017-05-02 20:04:16 -04:00
|
|
|
return map.set('next', next).update('items', list => list.concat(accounts.map(item => item.id)));
|
2016-11-13 14:42:54 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-10-27 15:59:56 -04:00
|
|
|
export default function userLists(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-16 07:27:58 -05:00
|
|
|
case FOLLOWERS_FETCH_SUCCESS:
|
|
|
|
return normalizeList(state, 'followers', action.id, action.accounts, action.next);
|
|
|
|
case FOLLOWERS_EXPAND_SUCCESS:
|
|
|
|
return appendToList(state, 'followers', action.id, action.accounts, action.next);
|
|
|
|
case FOLLOWING_FETCH_SUCCESS:
|
|
|
|
return normalizeList(state, 'following', action.id, action.accounts, action.next);
|
|
|
|
case FOLLOWING_EXPAND_SUCCESS:
|
|
|
|
return appendToList(state, 'following', action.id, action.accounts, action.next);
|
|
|
|
case REBLOGS_FETCH_SUCCESS:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.setIn(['reblogged_by', action.id], ImmutableList(action.accounts.map(item => item.id)));
|
2017-01-16 07:27:58 -05:00
|
|
|
case FAVOURITES_FETCH_SUCCESS:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.setIn(['favourited_by', action.id], ImmutableList(action.accounts.map(item => item.id)));
|
2017-01-16 07:27:58 -05:00
|
|
|
case FOLLOW_REQUESTS_FETCH_SUCCESS:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.setIn(['follow_requests', 'items'], ImmutableList(action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
|
2017-02-05 13:18:11 -05:00
|
|
|
case FOLLOW_REQUESTS_EXPAND_SUCCESS:
|
2017-05-02 20:04:16 -04:00
|
|
|
return state.updateIn(['follow_requests', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
|
2017-01-16 07:27:58 -05:00
|
|
|
case FOLLOW_REQUEST_AUTHORIZE_SUCCESS:
|
|
|
|
case FOLLOW_REQUEST_REJECT_SUCCESS:
|
|
|
|
return state.updateIn(['follow_requests', 'items'], list => list.filterNot(item => item === action.id));
|
2017-02-05 13:18:11 -05:00
|
|
|
case BLOCKS_FETCH_SUCCESS:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.setIn(['blocks', 'items'], ImmutableList(action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
|
2017-02-05 13:18:11 -05:00
|
|
|
case BLOCKS_EXPAND_SUCCESS:
|
2017-05-02 20:04:16 -04:00
|
|
|
return state.updateIn(['blocks', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
|
2017-04-14 19:23:49 -04:00
|
|
|
case MUTES_FETCH_SUCCESS:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.setIn(['mutes', 'items'], ImmutableList(action.accounts.map(item => item.id))).setIn(['mutes', 'next'], action.next);
|
2017-04-14 19:23:49 -04:00
|
|
|
case MUTES_EXPAND_SUCCESS:
|
2017-05-02 20:04:16 -04:00
|
|
|
return state.updateIn(['mutes', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['mutes', 'next'], action.next);
|
2017-01-16 07:27:58 -05:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-27 15:59:56 -04:00
|
|
|
}
|
|
|
|
};
|