2017-01-16 07:27:58 -05:00
|
|
|
import {
|
|
|
|
FAVOURITED_STATUSES_FETCH_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
FAVOURITED_STATUSES_EXPAND_SUCCESS,
|
2017-01-16 07:27:58 -05:00
|
|
|
} from '../actions/favourites';
|
|
|
|
import Immutable from 'immutable';
|
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
|
|
|
favourites: Immutable.Map({
|
|
|
|
next: null,
|
|
|
|
loaded: false,
|
2017-05-20 11:31:47 -04:00
|
|
|
items: Immutable.List(),
|
|
|
|
}),
|
2017-01-16 07:27:58 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
const normalizeList = (state, listType, statuses, next) => {
|
|
|
|
return state.update(listType, listMap => listMap.withMutations(map => {
|
|
|
|
map.set('next', next);
|
|
|
|
map.set('loaded', true);
|
|
|
|
map.set('items', Immutable.List(statuses.map(item => item.id)));
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
|
|
|
const appendToList = (state, listType, statuses, next) => {
|
|
|
|
return state.update(listType, listMap => listMap.withMutations(map => {
|
|
|
|
map.set('next', next);
|
2017-05-02 20:04:16 -04:00
|
|
|
map.set('items', map.get('items').concat(statuses.map(item => item.id)));
|
2017-01-16 07:27:58 -05:00
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function statusLists(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
|
|
|
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);
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|