2017-01-16 12:27:58 +00:00
|
|
|
import {
|
2017-12-09 01:22:13 +00:00
|
|
|
FAVOURITED_STATUSES_FETCH_REQUEST,
|
2017-01-16 12:27:58 +00:00
|
|
|
FAVOURITED_STATUSES_FETCH_SUCCESS,
|
2017-12-09 01:22:13 +00:00
|
|
|
FAVOURITED_STATUSES_FETCH_FAIL,
|
|
|
|
FAVOURITED_STATUSES_EXPAND_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
FAVOURITED_STATUSES_EXPAND_SUCCESS,
|
2017-12-09 01:22:13 +00:00
|
|
|
FAVOURITED_STATUSES_EXPAND_FAIL,
|
2017-01-16 12:27:58 +00:00
|
|
|
} from '../actions/favourites';
|
2017-09-07 07:58:11 +00:00
|
|
|
import {
|
|
|
|
PINNED_STATUSES_FETCH_SUCCESS,
|
|
|
|
} from '../actions/pin_statuses';
|
2017-07-10 23:00:14 +00:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
2017-08-20 21:23:05 +00:00
|
|
|
import {
|
|
|
|
FAVOURITE_SUCCESS,
|
|
|
|
UNFAVOURITE_SUCCESS,
|
2017-09-07 07:58:11 +00:00
|
|
|
PIN_SUCCESS,
|
|
|
|
UNPIN_SUCCESS,
|
2017-08-20 21:23:05 +00:00
|
|
|
} from '../actions/interactions';
|
2017-01-16 12:27:58 +00:00
|
|
|
|
2017-07-10 23:00:14 +00:00
|
|
|
const initialState = ImmutableMap({
|
|
|
|
favourites: ImmutableMap({
|
2017-01-16 12:27:58 +00:00
|
|
|
next: null,
|
|
|
|
loaded: false,
|
2017-07-10 23:00:14 +00:00
|
|
|
items: ImmutableList(),
|
2017-05-20 15:31:47 +00:00
|
|
|
}),
|
2017-09-07 07:58:11 +00:00
|
|
|
pins: ImmutableMap({
|
|
|
|
next: null,
|
|
|
|
loaded: false,
|
|
|
|
items: ImmutableList(),
|
|
|
|
}),
|
2017-01-16 12:27:58 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const normalizeList = (state, listType, statuses, next) => {
|
|
|
|
return state.update(listType, listMap => listMap.withMutations(map => {
|
|
|
|
map.set('next', next);
|
|
|
|
map.set('loaded', true);
|
2017-12-09 01:22:13 +00:00
|
|
|
map.set('isLoading', false);
|
2017-07-10 23:00:14 +00:00
|
|
|
map.set('items', ImmutableList(statuses.map(item => item.id)));
|
2017-01-16 12:27:58 +00:00
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
|
|
|
const appendToList = (state, listType, statuses, next) => {
|
|
|
|
return state.update(listType, listMap => listMap.withMutations(map => {
|
|
|
|
map.set('next', next);
|
2017-12-09 01:22:13 +00:00
|
|
|
map.set('isLoading', false);
|
2017-05-03 00:04:16 +00:00
|
|
|
map.set('items', map.get('items').concat(statuses.map(item => item.id)));
|
2017-01-16 12:27:58 +00:00
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2017-08-08 22:22:26 +00:00
|
|
|
const prependOneToList = (state, listType, status) => {
|
|
|
|
return state.update(listType, listMap => listMap.withMutations(map => {
|
|
|
|
map.set('items', map.get('items').unshift(status.get('id')));
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2017-08-20 21:23:05 +00:00
|
|
|
const removeOneFromList = (state, listType, status) => {
|
|
|
|
return state.update(listType, listMap => listMap.withMutations(map => {
|
|
|
|
map.set('items', map.get('items').filter(item => item !== status.get('id')));
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2017-01-16 12:27:58 +00:00
|
|
|
export default function statusLists(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-12-09 01:22:13 +00:00
|
|
|
case FAVOURITED_STATUSES_FETCH_REQUEST:
|
|
|
|
case FAVOURITED_STATUSES_EXPAND_REQUEST:
|
|
|
|
return state.setIn(['favourites', 'isLoading'], true);
|
|
|
|
case FAVOURITED_STATUSES_FETCH_FAIL:
|
|
|
|
case FAVOURITED_STATUSES_EXPAND_FAIL:
|
|
|
|
return state.setIn(['favourites', 'isLoading'], false);
|
2017-01-16 12:27:58 +00:00
|
|
|
case FAVOURITED_STATUSES_FETCH_SUCCESS:
|
|
|
|
return normalizeList(state, 'favourites', action.statuses, action.next);
|
|
|
|
case FAVOURITED_STATUSES_EXPAND_SUCCESS:
|
|
|
|
return appendToList(state, 'favourites', action.statuses, action.next);
|
2017-08-08 22:22:26 +00:00
|
|
|
case FAVOURITE_SUCCESS:
|
|
|
|
return prependOneToList(state, 'favourites', action.status);
|
2017-08-20 21:23:05 +00:00
|
|
|
case UNFAVOURITE_SUCCESS:
|
|
|
|
return removeOneFromList(state, 'favourites', action.status);
|
2017-09-07 07:58:11 +00:00
|
|
|
case PINNED_STATUSES_FETCH_SUCCESS:
|
|
|
|
return normalizeList(state, 'pins', action.statuses, action.next);
|
|
|
|
case PIN_SUCCESS:
|
|
|
|
return prependOneToList(state, 'pins', action.status);
|
|
|
|
case UNPIN_SUCCESS:
|
|
|
|
return removeOneFromList(state, 'pins', action.status);
|
2017-01-16 12:27:58 +00:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|