2016-09-18 09:18:46 -07:00
|
|
|
import {
|
2016-12-03 12:04:57 -08:00
|
|
|
TIMELINE_REFRESH_REQUEST,
|
2016-09-20 14:18:00 -07:00
|
|
|
TIMELINE_REFRESH_SUCCESS,
|
2016-09-18 09:18:46 -07:00
|
|
|
TIMELINE_UPDATE,
|
2016-09-21 16:08:35 -07:00
|
|
|
TIMELINE_DELETE,
|
2016-12-03 12:04:57 -08:00
|
|
|
TIMELINE_EXPAND_SUCCESS,
|
|
|
|
TIMELINE_SCROLL_TOP
|
2016-10-30 07:06:43 -07:00
|
|
|
} from '../actions/timelines';
|
2016-09-18 09:18:46 -07:00
|
|
|
import {
|
|
|
|
REBLOG_SUCCESS,
|
2016-10-02 06:14:26 -07:00
|
|
|
UNREBLOG_SUCCESS,
|
|
|
|
FAVOURITE_SUCCESS,
|
|
|
|
UNFAVOURITE_SUCCESS
|
2016-10-30 07:06:43 -07:00
|
|
|
} from '../actions/interactions';
|
2016-09-18 09:18:46 -07:00
|
|
|
import {
|
|
|
|
ACCOUNT_FETCH_SUCCESS,
|
2016-09-22 11:58:35 -07:00
|
|
|
ACCOUNT_TIMELINE_FETCH_SUCCESS,
|
2016-11-23 13:57:57 -08:00
|
|
|
ACCOUNT_TIMELINE_EXPAND_SUCCESS,
|
|
|
|
ACCOUNT_BLOCK_SUCCESS
|
2016-10-30 07:06:43 -07:00
|
|
|
} from '../actions/accounts';
|
2016-09-29 15:00:45 -07:00
|
|
|
import {
|
|
|
|
STATUS_FETCH_SUCCESS,
|
2016-10-30 07:06:43 -07:00
|
|
|
CONTEXT_FETCH_SUCCESS
|
|
|
|
} from '../actions/statuses';
|
|
|
|
import Immutable from 'immutable';
|
2016-08-24 08:56:44 -07:00
|
|
|
|
2016-09-04 05:04:26 -07:00
|
|
|
const initialState = Immutable.Map({
|
2016-12-03 12:04:57 -08:00
|
|
|
home: Immutable.Map({
|
|
|
|
loaded: false,
|
|
|
|
top: true,
|
|
|
|
items: Immutable.List()
|
|
|
|
}),
|
|
|
|
|
|
|
|
mentions: Immutable.Map({
|
|
|
|
loaded: false,
|
|
|
|
top: true,
|
|
|
|
items: Immutable.List()
|
|
|
|
}),
|
|
|
|
|
|
|
|
public: Immutable.Map({
|
|
|
|
loaded: false,
|
|
|
|
top: true,
|
|
|
|
items: Immutable.List()
|
|
|
|
}),
|
|
|
|
|
|
|
|
tag: Immutable.Map({
|
|
|
|
id: null,
|
|
|
|
loaded: false,
|
|
|
|
top: true,
|
|
|
|
items: Immutable.List()
|
|
|
|
}),
|
|
|
|
|
2016-09-18 09:18:46 -07:00
|
|
|
accounts_timelines: Immutable.Map(),
|
2016-09-15 15:21:51 -07:00
|
|
|
ancestors: Immutable.Map(),
|
2016-10-30 07:06:43 -07:00
|
|
|
descendants: Immutable.Map()
|
2016-09-04 05:04:26 -07:00
|
|
|
});
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const normalizeStatus = (state, status) => {
|
|
|
|
const replyToId = status.get('in_reply_to_id');
|
|
|
|
const id = status.get('id');
|
2016-09-04 05:04:26 -07:00
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
if (replyToId) {
|
|
|
|
if (!state.getIn(['descendants', replyToId], Immutable.List()).includes(id)) {
|
|
|
|
state = state.updateIn(['descendants', replyToId], Immutable.List(), set => set.push(id));
|
|
|
|
}
|
2016-09-18 03:51:09 -07:00
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
if (!state.getIn(['ancestors', id], Immutable.List()).includes(replyToId)) {
|
|
|
|
state = state.updateIn(['ancestors', id], Immutable.List(), set => set.push(replyToId));
|
2016-09-18 03:51:09 -07:00
|
|
|
}
|
2016-10-30 07:06:43 -07:00
|
|
|
}
|
2016-09-18 03:51:09 -07:00
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
return state;
|
2016-09-04 05:04:26 -07:00
|
|
|
};
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const normalizeTimeline = (state, timeline, statuses, replace = false) => {
|
2016-12-03 12:04:57 -08:00
|
|
|
let ids = Immutable.List();
|
|
|
|
const loaded = state.getIn([timeline, 'loaded']);
|
2016-10-17 16:48:46 -07:00
|
|
|
|
2016-09-04 05:04:26 -07:00
|
|
|
statuses.forEach((status, i) => {
|
2016-09-19 14:25:59 -07:00
|
|
|
state = normalizeStatus(state, status);
|
2016-10-17 16:48:46 -07:00
|
|
|
ids = ids.set(i, status.get('id'));
|
2016-09-01 04:21:48 -07:00
|
|
|
});
|
2016-09-04 05:04:26 -07:00
|
|
|
|
2016-12-03 12:04:57 -08:00
|
|
|
state = state.setIn([timeline, 'loaded'], true);
|
|
|
|
|
2016-12-12 05:39:18 -08:00
|
|
|
return state.updateIn([timeline, 'items'], Immutable.List(), list => (loaded ? list.unshift(...ids) : ids));
|
2016-09-04 05:04:26 -07:00
|
|
|
};
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const appendNormalizedTimeline = (state, timeline, statuses) => {
|
|
|
|
let moreIds = Immutable.List();
|
2016-09-21 16:08:35 -07:00
|
|
|
|
|
|
|
statuses.forEach((status, i) => {
|
|
|
|
state = normalizeStatus(state, status);
|
|
|
|
moreIds = moreIds.set(i, status.get('id'));
|
|
|
|
});
|
|
|
|
|
2016-12-03 12:04:57 -08:00
|
|
|
return state.updateIn([timeline, 'items'], Immutable.List(), list => list.push(...moreIds));
|
2016-09-21 16:08:35 -07:00
|
|
|
};
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const normalizeAccountTimeline = (state, accountId, statuses, replace = false) => {
|
|
|
|
let ids = Immutable.List();
|
2016-10-07 07:00:11 -07:00
|
|
|
|
2016-09-18 09:18:46 -07:00
|
|
|
statuses.forEach((status, i) => {
|
2016-09-19 14:25:59 -07:00
|
|
|
state = normalizeStatus(state, status);
|
2016-10-18 14:06:28 -07:00
|
|
|
ids = ids.set(i, status.get('id'));
|
2016-09-18 09:18:46 -07:00
|
|
|
});
|
|
|
|
|
2016-10-19 09:20:19 -07:00
|
|
|
return state.updateIn(['accounts_timelines', accountId], Immutable.List([]), list => (replace ? ids : list.unshift(...ids)));
|
2016-09-18 09:18:46 -07:00
|
|
|
};
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const appendNormalizedAccountTimeline = (state, accountId, statuses) => {
|
2016-10-07 07:00:11 -07:00
|
|
|
let moreIds = Immutable.List([]);
|
2016-09-22 11:58:35 -07:00
|
|
|
|
|
|
|
statuses.forEach((status, i) => {
|
|
|
|
state = normalizeStatus(state, status);
|
|
|
|
moreIds = moreIds.set(i, status.get('id'));
|
|
|
|
});
|
|
|
|
|
2016-10-07 07:00:11 -07:00
|
|
|
return state.updateIn(['accounts_timelines', accountId], Immutable.List([]), list => list.push(...moreIds));
|
2016-09-22 11:58:35 -07:00
|
|
|
};
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const updateTimeline = (state, timeline, status, references) => {
|
2016-12-03 12:04:57 -08:00
|
|
|
const top = state.getIn([timeline, 'top']);
|
|
|
|
|
2016-09-19 14:25:59 -07:00
|
|
|
state = normalizeStatus(state, status);
|
2016-10-16 16:34:16 -07:00
|
|
|
|
2016-12-03 12:04:57 -08:00
|
|
|
state = state.updateIn([timeline, 'items'], Immutable.List(), list => {
|
|
|
|
if (top && list.size > 40) {
|
|
|
|
list = list.take(20);
|
|
|
|
}
|
|
|
|
|
2016-11-03 03:06:55 -07:00
|
|
|
if (list.includes(status.get('id'))) {
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2016-10-16 16:34:16 -07:00
|
|
|
const reblogOfId = status.getIn(['reblog', 'id'], null);
|
|
|
|
|
|
|
|
if (reblogOfId !== null) {
|
2016-10-30 07:06:43 -07:00
|
|
|
list = list.filterNot(itemId => references.includes(itemId));
|
2016-10-16 16:34:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return list.unshift(status.get('id'));
|
|
|
|
});
|
|
|
|
|
2016-09-04 05:04:26 -07:00
|
|
|
return state;
|
2016-09-01 04:21:48 -07:00
|
|
|
};
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const deleteStatus = (state, id, accountId, references) => {
|
2016-09-29 15:00:45 -07:00
|
|
|
// Remove references from timelines
|
2016-11-05 07:20:05 -07:00
|
|
|
['home', 'mentions', 'public', 'tag'].forEach(function (timeline) {
|
2016-12-03 12:04:57 -08:00
|
|
|
state = state.updateIn([timeline, 'items'], list => list.filterNot(item => item === id));
|
2016-09-04 16:59:46 -07:00
|
|
|
});
|
|
|
|
|
2016-09-29 15:00:45 -07:00
|
|
|
// Remove references from account timelines
|
2016-10-30 07:06:43 -07:00
|
|
|
state = state.updateIn(['accounts_timelines', accountId], Immutable.List([]), list => list.filterNot(item => item === id));
|
2016-09-29 15:00:45 -07:00
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
// Remove references from context
|
|
|
|
state.getIn(['descendants', id], Immutable.List()).forEach(descendantId => {
|
|
|
|
state = state.updateIn(['ancestors', descendantId], Immutable.List(), list => list.filterNot(itemId => itemId === id));
|
2016-09-29 15:00:45 -07:00
|
|
|
});
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
state.getIn(['ancestors', id], Immutable.List()).forEach(ancestorId => {
|
|
|
|
state = state.updateIn(['descendants', ancestorId], Immutable.List(), list => list.filterNot(itemId => itemId === id));
|
|
|
|
});
|
2016-10-15 04:48:38 -07:00
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
state = state.deleteIn(['descendants', id]).deleteIn(['ancestors', id]);
|
2016-09-23 11:23:26 -07:00
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
// Remove reblogs of deleted status
|
|
|
|
references.forEach(ref => {
|
|
|
|
state = deleteStatus(state, ref[0], ref[1], []);
|
2016-10-28 11:05:44 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2016-11-23 13:57:57 -08:00
|
|
|
const filterTimelines = (state, relationship, statuses) => {
|
|
|
|
let references;
|
|
|
|
|
|
|
|
statuses.forEach(status => {
|
|
|
|
if (status.get('account') !== relationship.id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
references = statuses.filter(item => item.get('reblog') === status.get('id')).map(item => [item.get('id'), item.get('account')]);
|
|
|
|
state = deleteStatus(state, status.get('id'), status.get('account'), references);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2016-10-30 07:06:43 -07:00
|
|
|
const normalizeContext = (state, id, ancestors, descendants) => {
|
|
|
|
const ancestorsIds = ancestors.map(ancestor => ancestor.get('id'));
|
|
|
|
const descendantsIds = descendants.map(descendant => descendant.get('id'));
|
2016-09-15 15:21:51 -07:00
|
|
|
|
|
|
|
return state.withMutations(map => {
|
2016-10-30 07:06:43 -07:00
|
|
|
map.setIn(['ancestors', id], ancestorsIds);
|
|
|
|
map.setIn(['descendants', id], descendantsIds);
|
2016-09-15 15:21:51 -07:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-12-03 12:04:57 -08:00
|
|
|
const resetTimeline = (state, timeline, id) => {
|
|
|
|
if (timeline === 'tag' && state.getIn([timeline, 'id']) !== id) {
|
|
|
|
state = state.update(timeline, map => map
|
|
|
|
.set('id', id)
|
|
|
|
.set('loaded', false)
|
|
|
|
.update('items', list => list.clear()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
export default function timelines(state = initialState, action) {
|
2016-08-24 08:56:44 -07:00
|
|
|
switch(action.type) {
|
2016-12-03 12:04:57 -08:00
|
|
|
case TIMELINE_REFRESH_REQUEST:
|
|
|
|
return resetTimeline(state, action.timeline, action.id);
|
2016-09-20 14:18:00 -07:00
|
|
|
case TIMELINE_REFRESH_SUCCESS:
|
2016-12-03 12:04:57 -08:00
|
|
|
return normalizeTimeline(state, action.timeline, Immutable.fromJS(action.statuses));
|
2016-09-21 16:08:35 -07:00
|
|
|
case TIMELINE_EXPAND_SUCCESS:
|
|
|
|
return appendNormalizedTimeline(state, action.timeline, Immutable.fromJS(action.statuses));
|
2016-08-31 07:15:12 -07:00
|
|
|
case TIMELINE_UPDATE:
|
2016-10-30 07:06:43 -07:00
|
|
|
return updateTimeline(state, action.timeline, Immutable.fromJS(action.status), action.references);
|
2016-09-04 16:59:46 -07:00
|
|
|
case TIMELINE_DELETE:
|
2016-10-30 07:06:43 -07:00
|
|
|
return deleteStatus(state, action.id, action.accountId, action.references);
|
|
|
|
case CONTEXT_FETCH_SUCCESS:
|
|
|
|
return normalizeContext(state, action.id, Immutable.fromJS(action.ancestors), Immutable.fromJS(action.descendants));
|
2016-09-18 09:18:46 -07:00
|
|
|
case ACCOUNT_TIMELINE_FETCH_SUCCESS:
|
2016-10-19 09:20:19 -07:00
|
|
|
return normalizeAccountTimeline(state, action.id, Immutable.fromJS(action.statuses), action.replace);
|
2016-09-22 11:58:35 -07:00
|
|
|
case ACCOUNT_TIMELINE_EXPAND_SUCCESS:
|
|
|
|
return appendNormalizedAccountTimeline(state, action.id, Immutable.fromJS(action.statuses));
|
2016-11-23 13:57:57 -08:00
|
|
|
case ACCOUNT_BLOCK_SUCCESS:
|
|
|
|
return filterTimelines(state, action.relationship, action.statuses);
|
2016-12-03 12:04:57 -08:00
|
|
|
case TIMELINE_SCROLL_TOP:
|
|
|
|
return state.setIn([action.timeline, 'top'], action.top);
|
2016-08-24 08:56:44 -07:00
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|