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