|
|
@ -20,22 +20,22 @@ import {
|
|
|
|
MUTES_FETCH_SUCCESS,
|
|
|
|
MUTES_FETCH_SUCCESS,
|
|
|
|
MUTES_EXPAND_SUCCESS,
|
|
|
|
MUTES_EXPAND_SUCCESS,
|
|
|
|
} from '../actions/mutes';
|
|
|
|
} from '../actions/mutes';
|
|
|
|
import Immutable from 'immutable';
|
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
|
|
|
|
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
|
|
|
const initialState = ImmutableMap({
|
|
|
|
followers: Immutable.Map(),
|
|
|
|
followers: ImmutableMap(),
|
|
|
|
following: Immutable.Map(),
|
|
|
|
following: ImmutableMap(),
|
|
|
|
reblogged_by: Immutable.Map(),
|
|
|
|
reblogged_by: ImmutableMap(),
|
|
|
|
favourited_by: Immutable.Map(),
|
|
|
|
favourited_by: ImmutableMap(),
|
|
|
|
follow_requests: Immutable.Map(),
|
|
|
|
follow_requests: ImmutableMap(),
|
|
|
|
blocks: Immutable.Map(),
|
|
|
|
blocks: ImmutableMap(),
|
|
|
|
mutes: Immutable.Map(),
|
|
|
|
mutes: ImmutableMap(),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const normalizeList = (state, type, id, accounts, next) => {
|
|
|
|
const normalizeList = (state, type, id, accounts, next) => {
|
|
|
|
return state.setIn([type, id], Immutable.Map({
|
|
|
|
return state.setIn([type, id], ImmutableMap({
|
|
|
|
next,
|
|
|
|
next,
|
|
|
|
items: Immutable.List(accounts.map(item => item.id)),
|
|
|
|
items: ImmutableList(accounts.map(item => item.id)),
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
@ -56,22 +56,22 @@ export default function userLists(state = initialState, action) {
|
|
|
|
case FOLLOWING_EXPAND_SUCCESS:
|
|
|
|
case FOLLOWING_EXPAND_SUCCESS:
|
|
|
|
return appendToList(state, 'following', action.id, action.accounts, action.next);
|
|
|
|
return appendToList(state, 'following', action.id, action.accounts, action.next);
|
|
|
|
case REBLOGS_FETCH_SUCCESS:
|
|
|
|
case REBLOGS_FETCH_SUCCESS:
|
|
|
|
return state.setIn(['reblogged_by', action.id], Immutable.List(action.accounts.map(item => item.id)));
|
|
|
|
return state.setIn(['reblogged_by', action.id], ImmutableList(action.accounts.map(item => item.id)));
|
|
|
|
case FAVOURITES_FETCH_SUCCESS:
|
|
|
|
case FAVOURITES_FETCH_SUCCESS:
|
|
|
|
return state.setIn(['favourited_by', action.id], Immutable.List(action.accounts.map(item => item.id)));
|
|
|
|
return state.setIn(['favourited_by', action.id], ImmutableList(action.accounts.map(item => item.id)));
|
|
|
|
case FOLLOW_REQUESTS_FETCH_SUCCESS:
|
|
|
|
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);
|
|
|
|
return state.setIn(['follow_requests', 'items'], ImmutableList(action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
|
|
|
|
case FOLLOW_REQUESTS_EXPAND_SUCCESS:
|
|
|
|
case FOLLOW_REQUESTS_EXPAND_SUCCESS:
|
|
|
|
return state.updateIn(['follow_requests', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
|
|
|
|
return state.updateIn(['follow_requests', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['follow_requests', 'next'], action.next);
|
|
|
|
case FOLLOW_REQUEST_AUTHORIZE_SUCCESS:
|
|
|
|
case FOLLOW_REQUEST_AUTHORIZE_SUCCESS:
|
|
|
|
case FOLLOW_REQUEST_REJECT_SUCCESS:
|
|
|
|
case FOLLOW_REQUEST_REJECT_SUCCESS:
|
|
|
|
return state.updateIn(['follow_requests', 'items'], list => list.filterNot(item => item === action.id));
|
|
|
|
return state.updateIn(['follow_requests', 'items'], list => list.filterNot(item => item === action.id));
|
|
|
|
case BLOCKS_FETCH_SUCCESS:
|
|
|
|
case BLOCKS_FETCH_SUCCESS:
|
|
|
|
return state.setIn(['blocks', 'items'], Immutable.List(action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
|
|
|
|
return state.setIn(['blocks', 'items'], ImmutableList(action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
|
|
|
|
case BLOCKS_EXPAND_SUCCESS:
|
|
|
|
case BLOCKS_EXPAND_SUCCESS:
|
|
|
|
return state.updateIn(['blocks', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
|
|
|
|
return state.updateIn(['blocks', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['blocks', 'next'], action.next);
|
|
|
|
case MUTES_FETCH_SUCCESS:
|
|
|
|
case MUTES_FETCH_SUCCESS:
|
|
|
|
return state.setIn(['mutes', 'items'], Immutable.List(action.accounts.map(item => item.id))).setIn(['mutes', 'next'], action.next);
|
|
|
|
return state.setIn(['mutes', 'items'], ImmutableList(action.accounts.map(item => item.id))).setIn(['mutes', 'next'], action.next);
|
|
|
|
case MUTES_EXPAND_SUCCESS:
|
|
|
|
case MUTES_EXPAND_SUCCESS:
|
|
|
|
return state.updateIn(['mutes', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['mutes', 'next'], action.next);
|
|
|
|
return state.updateIn(['mutes', 'items'], list => list.concat(action.accounts.map(item => item.id))).setIn(['mutes', 'next'], action.next);
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|