2016-09-17 15:03:36 +00:00
|
|
|
import { TIMELINE_SET, TIMELINE_UPDATE, TIMELINE_DELETE } from '../actions/timelines';
|
|
|
|
import { REBLOG_SUCCESS, FAVOURITE_SUCCESS } from '../actions/interactions';
|
|
|
|
import { ACCOUNT_SET_SELF, ACCOUNT_FETCH_SUCCESS, ACCOUNT_FOLLOW_SUCCESS, ACCOUNT_UNFOLLOW_SUCCESS } from '../actions/accounts';
|
|
|
|
import { STATUS_FETCH_SUCCESS } from '../actions/statuses';
|
|
|
|
import { FOLLOW_SUBMIT_SUCCESS } from '../actions/follow';
|
|
|
|
import Immutable from 'immutable';
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-09-04 12:04:26 +00:00
|
|
|
const initialState = Immutable.Map({
|
2016-09-04 23:59:46 +00:00
|
|
|
home: Immutable.List([]),
|
|
|
|
mentions: Immutable.List([]),
|
2016-09-04 12:04:26 +00:00
|
|
|
statuses: Immutable.Map(),
|
2016-09-13 00:24:40 +00:00
|
|
|
accounts: Immutable.Map(),
|
2016-09-15 22:21:51 +00:00
|
|
|
me: null,
|
|
|
|
ancestors: Immutable.Map(),
|
|
|
|
descendants: Immutable.Map()
|
2016-09-04 12:04:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function statusToMaps(state, status) {
|
|
|
|
// Separate account
|
|
|
|
let account = status.get('account');
|
|
|
|
status = status.set('account', account.get('id'));
|
|
|
|
|
|
|
|
// Separate reblog, repeat for reblog
|
|
|
|
let reblog = status.get('reblog');
|
|
|
|
|
|
|
|
if (reblog !== null) {
|
|
|
|
status = status.set('reblog', reblog.get('id'));
|
|
|
|
state = statusToMaps(state, reblog);
|
|
|
|
}
|
|
|
|
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.setIn(['accounts', account.get('id')], account);
|
|
|
|
map.setIn(['statuses', status.get('id')], status);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function timelineToMaps(state, timeline, statuses) {
|
|
|
|
statuses.forEach((status, i) => {
|
|
|
|
state = statusToMaps(state, status);
|
|
|
|
state = state.setIn([timeline, i], status.get('id'));
|
2016-09-01 11:21:48 +00:00
|
|
|
});
|
2016-09-04 12:04:26 +00:00
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
|
|
|
function updateTimelineWithMaps(state, timeline, status) {
|
|
|
|
state = statusToMaps(state, status);
|
|
|
|
state = state.update(timeline, list => list.unshift(status.get('id')));
|
|
|
|
|
|
|
|
return state;
|
2016-09-01 11:21:48 +00:00
|
|
|
};
|
|
|
|
|
2016-09-04 23:59:46 +00:00
|
|
|
function deleteStatus(state, id) {
|
|
|
|
['home', 'mentions'].forEach(function (timeline) {
|
|
|
|
state = state.update(timeline, list => list.filterNot(item => item === id));
|
|
|
|
});
|
|
|
|
|
|
|
|
return state.deleteIn(['statuses', id]);
|
|
|
|
};
|
|
|
|
|
2016-09-15 22:21:51 +00:00
|
|
|
function accountToMaps(state, account) {
|
|
|
|
return state.setIn(['accounts', account.get('id')], account);
|
|
|
|
};
|
|
|
|
|
|
|
|
function contextToMaps(state, status, ancestors, descendants) {
|
|
|
|
state = statusToMaps(state, status);
|
|
|
|
|
|
|
|
let ancestorsIds = ancestors.map(ancestor => {
|
|
|
|
state = statusToMaps(state, ancestor);
|
|
|
|
return ancestor.get('id');
|
|
|
|
});
|
|
|
|
|
|
|
|
let descendantsIds = descendants.map(descendant => {
|
|
|
|
state = statusToMaps(state, descendant);
|
|
|
|
return descendant.get('id');
|
|
|
|
});
|
|
|
|
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.setIn(['ancestors', status.get('id')], ancestorsIds);
|
|
|
|
map.setIn(['descendants', status.get('id')], descendantsIds);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
export default function timelines(state = initialState, action) {
|
2016-08-24 15:56:44 +00:00
|
|
|
switch(action.type) {
|
2016-08-31 14:15:12 +00:00
|
|
|
case TIMELINE_SET:
|
2016-09-04 12:04:26 +00:00
|
|
|
return timelineToMaps(state, action.timeline, Immutable.fromJS(action.statuses));
|
2016-08-31 14:15:12 +00:00
|
|
|
case TIMELINE_UPDATE:
|
2016-09-04 23:59:46 +00:00
|
|
|
return updateTimelineWithMaps(state, action.timeline, Immutable.fromJS(action.status));
|
|
|
|
case TIMELINE_DELETE:
|
|
|
|
return deleteStatus(state, action.id);
|
2016-09-01 11:21:48 +00:00
|
|
|
case REBLOG_SUCCESS:
|
|
|
|
case FAVOURITE_SUCCESS:
|
2016-09-04 12:04:26 +00:00
|
|
|
return statusToMaps(state, Immutable.fromJS(action.response));
|
2016-09-13 00:24:40 +00:00
|
|
|
case ACCOUNT_SET_SELF:
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.setIn(['accounts', action.account.id], Immutable.fromJS(action.account));
|
|
|
|
map.set('me', action.account.id);
|
|
|
|
});
|
2016-09-15 22:21:51 +00:00
|
|
|
case ACCOUNT_FETCH_SUCCESS:
|
2016-09-17 15:03:36 +00:00
|
|
|
case FOLLOW_SUBMIT_SUCCESS:
|
|
|
|
case ACCOUNT_FOLLOW_SUCCESS:
|
|
|
|
case ACCOUNT_UNFOLLOW_SUCCESS:
|
2016-09-15 22:21:51 +00:00
|
|
|
return accountToMaps(state, Immutable.fromJS(action.account));
|
|
|
|
case STATUS_FETCH_SUCCESS:
|
|
|
|
return contextToMaps(state, Immutable.fromJS(action.status), Immutable.fromJS(action.context.ancestors), Immutable.fromJS(action.context.descendants));
|
2016-08-24 15:56:44 +00:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|