2018-03-24 08:06:27 -04:00
|
|
|
import { importFetchedStatus, importFetchedStatuses } from './importer';
|
2017-05-20 11:31:47 -04:00
|
|
|
import api, { getLinks } from '../api';
|
2018-05-17 20:32:35 -04:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
2016-09-12 12:22:43 -04:00
|
|
|
|
|
|
|
export const TIMELINE_UPDATE = 'TIMELINE_UPDATE';
|
|
|
|
export const TIMELINE_DELETE = 'TIMELINE_DELETE';
|
|
|
|
|
2016-09-18 07:45:39 -04:00
|
|
|
export const TIMELINE_EXPAND_REQUEST = 'TIMELINE_EXPAND_REQUEST';
|
|
|
|
export const TIMELINE_EXPAND_SUCCESS = 'TIMELINE_EXPAND_SUCCESS';
|
|
|
|
export const TIMELINE_EXPAND_FAIL = 'TIMELINE_EXPAND_FAIL';
|
|
|
|
|
2016-12-03 15:04:57 -05:00
|
|
|
export const TIMELINE_SCROLL_TOP = 'TIMELINE_SCROLL_TOP';
|
|
|
|
|
2017-04-02 15:44:06 -04:00
|
|
|
export const TIMELINE_DISCONNECT = 'TIMELINE_DISCONNECT';
|
|
|
|
|
2017-10-03 19:01:44 -04:00
|
|
|
export const TIMELINE_CONTEXT_UPDATE = 'CONTEXT_UPDATE';
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
export function updateTimeline(timeline, status) {
|
2016-10-30 10:06:43 -04:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const references = status.reblog ? getState().get('statuses').filter((item, itemId) => (itemId === status.reblog.id || item.get('reblog') === status.reblog.id)).map((_, itemId) => itemId) : [];
|
2017-10-03 19:01:44 -04:00
|
|
|
const parents = [];
|
|
|
|
|
|
|
|
if (status.in_reply_to_id) {
|
|
|
|
let parent = getState().getIn(['statuses', status.in_reply_to_id]);
|
|
|
|
|
2017-10-04 10:28:39 -04:00
|
|
|
while (parent && parent.get('in_reply_to_id')) {
|
2017-10-03 19:01:44 -04:00
|
|
|
parents.push(parent.get('id'));
|
|
|
|
parent = getState().getIn(['statuses', parent.get('in_reply_to_id')]);
|
|
|
|
}
|
|
|
|
}
|
2016-10-30 10:06:43 -04:00
|
|
|
|
2018-03-24 08:06:27 -04:00
|
|
|
dispatch(importFetchedStatus(status));
|
|
|
|
|
2016-10-30 10:06:43 -04:00
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_UPDATE,
|
|
|
|
timeline,
|
|
|
|
status,
|
2017-05-20 11:31:47 -04:00
|
|
|
references,
|
2016-10-30 10:06:43 -04:00
|
|
|
});
|
2017-10-03 19:01:44 -04:00
|
|
|
|
|
|
|
if (parents.length > 0) {
|
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_CONTEXT_UPDATE,
|
|
|
|
status,
|
|
|
|
references: parents,
|
|
|
|
});
|
|
|
|
}
|
2016-08-31 10:15:12 -04:00
|
|
|
};
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|
2016-09-04 19:59:46 -04:00
|
|
|
|
2016-09-09 14:54:49 -04:00
|
|
|
export function deleteFromTimelines(id) {
|
2016-10-30 10:06:43 -04:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const accountId = getState().getIn(['statuses', id, 'account']);
|
|
|
|
const references = getState().get('statuses').filter(status => status.get('reblog') === id).map(status => [status.get('id'), status.get('account')]);
|
2017-01-07 09:44:22 -05:00
|
|
|
const reblogOf = getState().getIn(['statuses', id, 'reblog'], null);
|
2016-10-30 10:06:43 -04:00
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_DELETE,
|
|
|
|
id,
|
|
|
|
accountId,
|
2017-01-07 09:44:22 -05:00
|
|
|
references,
|
2017-05-20 11:31:47 -04:00
|
|
|
reblogOf,
|
2016-10-30 10:06:43 -04:00
|
|
|
});
|
2016-09-04 19:59:46 -04:00
|
|
|
};
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|
2016-09-12 12:22:43 -04:00
|
|
|
|
2018-05-17 20:32:35 -04:00
|
|
|
const noOp = () => {};
|
|
|
|
|
|
|
|
export function expandTimeline(timelineId, path, params = {}, done = noOp) {
|
2016-09-21 19:08:35 -04:00
|
|
|
return (dispatch, getState) => {
|
2017-07-10 19:00:14 -04:00
|
|
|
const timeline = getState().getIn(['timelines', timelineId], ImmutableMap());
|
2017-01-16 07:27:58 -05:00
|
|
|
|
2018-03-24 10:25:15 -04:00
|
|
|
if (timeline.get('isLoading')) {
|
2018-05-17 20:32:35 -04:00
|
|
|
done();
|
2017-02-19 14:25:54 -05:00
|
|
|
return;
|
2016-11-05 10:20:05 -04:00
|
|
|
}
|
|
|
|
|
2018-05-17 20:32:35 -04:00
|
|
|
if (!params.max_id && timeline.get('items', ImmutableList()).size > 0) {
|
|
|
|
params.since_id = timeline.getIn(['items', 0]);
|
|
|
|
}
|
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
dispatch(expandTimelineRequest(timelineId));
|
2017-02-19 14:25:54 -05:00
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
api(getState).get(path, { params }).then(response => {
|
2017-02-19 14:25:54 -05:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2018-03-24 08:06:27 -04:00
|
|
|
dispatch(importFetchedStatuses(response.data));
|
2018-03-24 10:25:15 -04:00
|
|
|
dispatch(expandTimelineSuccess(timelineId, response.data, next ? next.uri : null, response.code === 206));
|
2018-05-17 20:32:35 -04:00
|
|
|
done();
|
2016-09-21 19:08:35 -04:00
|
|
|
}).catch(error => {
|
2017-06-11 11:07:35 -04:00
|
|
|
dispatch(expandTimelineFail(timelineId, error));
|
2018-05-17 20:32:35 -04:00
|
|
|
done();
|
2016-09-21 19:08:35 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-05-17 20:32:35 -04:00
|
|
|
export const expandHomeTimeline = ({ maxId } = {}, done = noOp) => expandTimeline('home', '/api/v1/timelines/home', { max_id: maxId }, done);
|
|
|
|
export const expandPublicTimeline = ({ maxId } = {}, done = noOp) => expandTimeline('public', '/api/v1/timelines/public', { max_id: maxId }, done);
|
|
|
|
export const expandCommunityTimeline = ({ maxId } = {}, done = noOp) => expandTimeline('community', '/api/v1/timelines/public', { local: true, max_id: maxId }, done);
|
|
|
|
export const expandDirectTimeline = ({ maxId } = {}, done = noOp) => expandTimeline('direct', '/api/v1/timelines/direct', { max_id: maxId }, done);
|
2018-03-24 10:25:15 -04:00
|
|
|
export const expandAccountTimeline = (accountId, { maxId, withReplies } = {}) => expandTimeline(`account:${accountId}${withReplies ? ':with_replies' : ''}`, `/api/v1/accounts/${accountId}/statuses`, { exclude_replies: !withReplies, max_id: maxId });
|
|
|
|
export const expandAccountFeaturedTimeline = accountId => expandTimeline(`account:${accountId}:pinned`, `/api/v1/accounts/${accountId}/statuses`, { pinned: true });
|
|
|
|
export const expandAccountMediaTimeline = (accountId, { maxId } = {}) => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { max_id: maxId, only_media: true });
|
2018-05-17 20:32:35 -04:00
|
|
|
export const expandHashtagTimeline = (hashtag, { maxId } = {}, done = noOp) => expandTimeline(`hashtag:${hashtag}`, `/api/v1/timelines/tag/${hashtag}`, { max_id: maxId }, done);
|
|
|
|
export const expandListTimeline = (id, { maxId } = {}, done = noOp) => expandTimeline(`list:${id}`, `/api/v1/timelines/list/${id}`, { max_id: maxId }, done);
|
2017-06-11 11:07:35 -04:00
|
|
|
|
2017-02-19 14:25:54 -05:00
|
|
|
export function expandTimelineRequest(timeline) {
|
2016-09-21 19:08:35 -04:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_REQUEST,
|
2017-05-20 11:31:47 -04:00
|
|
|
timeline,
|
2016-09-21 19:08:35 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-03-24 10:25:15 -04:00
|
|
|
export function expandTimelineSuccess(timeline, statuses, next, partial) {
|
2016-09-21 19:08:35 -04:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_SUCCESS,
|
2016-12-03 15:04:57 -05:00
|
|
|
timeline,
|
2017-02-19 14:25:54 -05:00
|
|
|
statuses,
|
2017-05-20 11:31:47 -04:00
|
|
|
next,
|
2018-03-24 10:25:15 -04:00
|
|
|
partial,
|
2016-09-21 19:08:35 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandTimelineFail(timeline, error) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_FAIL,
|
2016-12-03 15:04:57 -05:00
|
|
|
timeline,
|
2017-05-20 11:31:47 -04:00
|
|
|
error,
|
2016-12-03 15:04:57 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function scrollTopTimeline(timeline, top) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_SCROLL_TOP,
|
|
|
|
timeline,
|
2017-05-20 11:31:47 -04:00
|
|
|
top,
|
2016-09-21 19:08:35 -04:00
|
|
|
};
|
|
|
|
};
|
2017-04-02 15:44:06 -04:00
|
|
|
|
|
|
|
export function disconnectTimeline(timeline) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_DISCONNECT,
|
2017-05-20 11:31:47 -04:00
|
|
|
timeline,
|
2017-04-02 15:44:06 -04:00
|
|
|
};
|
|
|
|
};
|