2017-05-20 11:31:47 -04:00
|
|
|
import api, { getLinks } from '../api';
|
2017-07-10 19:00:14 -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';
|
|
|
|
|
|
|
|
export const TIMELINE_REFRESH_REQUEST = 'TIMELINE_REFRESH_REQUEST';
|
|
|
|
export const TIMELINE_REFRESH_SUCCESS = 'TIMELINE_REFRESH_SUCCESS';
|
|
|
|
export const TIMELINE_REFRESH_FAIL = 'TIMELINE_REFRESH_FAIL';
|
2016-08-31 10:15:12 -04:00
|
|
|
|
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_CONNECT = 'TIMELINE_CONNECT';
|
|
|
|
export const TIMELINE_DISCONNECT = 'TIMELINE_DISCONNECT';
|
|
|
|
|
2017-10-03 19:01:44 -04:00
|
|
|
export const TIMELINE_CONTEXT_UPDATE = 'CONTEXT_UPDATE';
|
|
|
|
|
2018-01-17 17:56:03 -05:00
|
|
|
export function refreshTimelineSuccess(timeline, statuses, skipLoading, next, partial) {
|
2016-08-31 10:15:12 -04:00
|
|
|
return {
|
2016-09-20 17:18:00 -04:00
|
|
|
type: TIMELINE_REFRESH_SUCCESS,
|
2017-01-19 05:23:24 -05:00
|
|
|
timeline,
|
|
|
|
statuses,
|
2017-02-19 14:25:54 -05:00
|
|
|
skipLoading,
|
2017-05-20 11:31:47 -04:00
|
|
|
next,
|
2018-01-17 17:56:03 -05:00
|
|
|
partial,
|
2016-08-31 10:15:12 -04:00
|
|
|
};
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|
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
|
|
|
|
|
|
|
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
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
export function refreshTimelineRequest(timeline, skipLoading) {
|
2016-09-12 12:22:43 -04:00
|
|
|
return {
|
|
|
|
type: TIMELINE_REFRESH_REQUEST,
|
2016-12-03 15:04:57 -05:00
|
|
|
timeline,
|
2017-05-20 11:31:47 -04:00
|
|
|
skipLoading,
|
2016-09-12 12:22:43 -04:00
|
|
|
};
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|
2016-09-12 12:22:43 -04:00
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
export function refreshTimeline(timelineId, path, params = {}) {
|
2016-09-12 12:22:43 -04:00
|
|
|
return function (dispatch, getState) {
|
2017-07-10 19:00:14 -04:00
|
|
|
const timeline = getState().getIn(['timelines', timelineId], ImmutableMap());
|
2017-06-11 11:07:35 -04:00
|
|
|
|
2018-01-17 17:56:03 -05:00
|
|
|
if (timeline.get('isLoading') || (timeline.get('online') && !timeline.get('isPartial'))) {
|
2017-01-24 07:04:12 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const ids = timeline.get('items', ImmutableList());
|
2016-10-18 17:06:28 -04:00
|
|
|
const newestId = ids.size > 0 ? ids.first() : null;
|
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
let skipLoading = timeline.get('loaded');
|
2017-04-02 15:44:06 -04:00
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
if (newestId !== null) {
|
|
|
|
params.since_id = newestId;
|
2016-11-05 10:20:05 -04:00
|
|
|
}
|
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
dispatch(refreshTimelineRequest(timelineId, skipLoading));
|
2017-01-19 05:23:24 -05:00
|
|
|
|
2017-02-19 14:25:54 -05:00
|
|
|
api(getState).get(path, { params }).then(response => {
|
2018-01-17 17:56:03 -05:00
|
|
|
if (response.status === 206) {
|
|
|
|
dispatch(refreshTimelineSuccess(timelineId, [], skipLoading, null, true));
|
|
|
|
} else {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
dispatch(refreshTimelineSuccess(timelineId, response.data, skipLoading, next ? next.uri : null, false));
|
|
|
|
}
|
2017-02-19 14:25:54 -05:00
|
|
|
}).catch(error => {
|
2017-06-11 11:07:35 -04:00
|
|
|
dispatch(refreshTimelineFail(timelineId, error, skipLoading));
|
2016-09-12 12:22:43 -04:00
|
|
|
});
|
|
|
|
};
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|
2016-09-12 12:22:43 -04:00
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
export const refreshHomeTimeline = () => refreshTimeline('home', '/api/v1/timelines/home');
|
|
|
|
export const refreshPublicTimeline = () => refreshTimeline('public', '/api/v1/timelines/public');
|
|
|
|
export const refreshCommunityTimeline = () => refreshTimeline('community', '/api/v1/timelines/public', { local: true });
|
|
|
|
export const refreshAccountTimeline = accountId => refreshTimeline(`account:${accountId}`, `/api/v1/accounts/${accountId}/statuses`);
|
|
|
|
export const refreshAccountMediaTimeline = accountId => refreshTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { only_media: true });
|
|
|
|
export const refreshHashtagTimeline = hashtag => refreshTimeline(`hashtag:${hashtag}`, `/api/v1/timelines/tag/${hashtag}`);
|
2017-11-24 18:35:37 -05:00
|
|
|
export const refreshListTimeline = id => refreshTimeline(`list:${id}`, `/api/v1/timelines/list/${id}`);
|
2017-06-11 11:07:35 -04:00
|
|
|
|
2017-01-19 05:23:24 -05:00
|
|
|
export function refreshTimelineFail(timeline, error, skipLoading) {
|
2016-09-12 12:22:43 -04:00
|
|
|
return {
|
|
|
|
type: TIMELINE_REFRESH_FAIL,
|
2016-12-03 15:04:57 -05:00
|
|
|
timeline,
|
2017-01-19 05:23:24 -05:00
|
|
|
error,
|
2017-05-20 11:31:47 -04:00
|
|
|
skipLoading,
|
2017-07-19 13:38:50 -04:00
|
|
|
skipAlert: error.response && error.response.status === 404,
|
2016-09-12 12:22:43 -04:00
|
|
|
};
|
2016-09-12 13:20:55 -04:00
|
|
|
};
|
2016-09-21 19:08:35 -04:00
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
export function expandTimeline(timelineId, path, params = {}) {
|
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());
|
|
|
|
const ids = timeline.get('items', ImmutableList());
|
2017-01-16 07:27:58 -05:00
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
if (timeline.get('isLoading') || ids.size === 0) {
|
2017-02-19 14:25:54 -05:00
|
|
|
return;
|
2016-11-05 10:20:05 -04:00
|
|
|
}
|
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
params.max_id = ids.last();
|
|
|
|
params.limit = 10;
|
2017-02-28 19:43:29 -05:00
|
|
|
|
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');
|
2017-06-11 11:07:35 -04:00
|
|
|
dispatch(expandTimelineSuccess(timelineId, response.data, next ? next.uri : null));
|
2016-09-21 19:08:35 -04:00
|
|
|
}).catch(error => {
|
2017-06-11 11:07:35 -04:00
|
|
|
dispatch(expandTimelineFail(timelineId, error));
|
2016-09-21 19:08:35 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-06-11 11:07:35 -04:00
|
|
|
export const expandHomeTimeline = () => expandTimeline('home', '/api/v1/timelines/home');
|
|
|
|
export const expandPublicTimeline = () => expandTimeline('public', '/api/v1/timelines/public');
|
|
|
|
export const expandCommunityTimeline = () => expandTimeline('community', '/api/v1/timelines/public', { local: true });
|
|
|
|
export const expandAccountTimeline = accountId => expandTimeline(`account:${accountId}`, `/api/v1/accounts/${accountId}/statuses`);
|
|
|
|
export const expandAccountMediaTimeline = accountId => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { only_media: true });
|
|
|
|
export const expandHashtagTimeline = hashtag => expandTimeline(`hashtag:${hashtag}`, `/api/v1/timelines/tag/${hashtag}`);
|
2017-11-24 18:35:37 -05:00
|
|
|
export const expandListTimeline = id => expandTimeline(`list:${id}`, `/api/v1/timelines/list/${id}`);
|
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
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-02-19 14:25:54 -05:00
|
|
|
export function expandTimelineSuccess(timeline, statuses, next) {
|
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,
|
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 connectTimeline(timeline) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_CONNECT,
|
2017-05-20 11:31:47 -04:00
|
|
|
timeline,
|
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
|
|
|
};
|
|
|
|
};
|