2018-05-18 00:32:35 +00:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
|
|
|
import api, { getLinks } from 'mastodon/api';
|
2023-05-09 01:11:56 +00:00
|
|
|
import { compareId } from 'mastodon/compare_id';
|
2019-07-16 04:30:47 +00:00
|
|
|
import { usePendingItems as preferPendingItems } from 'mastodon/initial_state';
|
2016-09-12 16:22:43 +00:00
|
|
|
|
2023-05-23 15:15:17 +00:00
|
|
|
import { importFetchedStatus, importFetchedStatuses } from './importer';
|
|
|
|
import { submitMarkers } from './markers';
|
2024-06-20 11:56:52 +00:00
|
|
|
import {timelineDelete} from './timelines_typed';
|
|
|
|
|
|
|
|
export { disconnectTimeline } from './timelines_typed';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2016-09-12 16:22:43 +00:00
|
|
|
export const TIMELINE_UPDATE = 'TIMELINE_UPDATE';
|
2018-11-05 17:53:25 +00:00
|
|
|
export const TIMELINE_CLEAR = 'TIMELINE_CLEAR';
|
2016-09-12 16:22:43 +00:00
|
|
|
|
2016-09-18 11:45:39 +00: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';
|
|
|
|
|
2019-07-16 04:30:47 +00:00
|
|
|
export const TIMELINE_SCROLL_TOP = 'TIMELINE_SCROLL_TOP';
|
|
|
|
export const TIMELINE_LOAD_PENDING = 'TIMELINE_LOAD_PENDING';
|
|
|
|
export const TIMELINE_CONNECT = 'TIMELINE_CONNECT';
|
2016-12-03 20:04:57 +00:00
|
|
|
|
2021-05-07 12:33:57 +00:00
|
|
|
export const TIMELINE_MARK_AS_PARTIAL = 'TIMELINE_MARK_AS_PARTIAL';
|
2024-02-01 13:37:04 +00:00
|
|
|
export const TIMELINE_INSERT = 'TIMELINE_INSERT';
|
|
|
|
|
|
|
|
export const TIMELINE_SUGGESTIONS = 'inline-follow-suggestions';
|
|
|
|
export const TIMELINE_GAP = null;
|
2021-05-07 12:33:57 +00:00
|
|
|
|
2019-07-16 04:30:47 +00:00
|
|
|
export const loadPending = timeline => ({
|
|
|
|
type: TIMELINE_LOAD_PENDING,
|
|
|
|
timeline,
|
|
|
|
});
|
2017-04-02 19:44:06 +00:00
|
|
|
|
2018-11-05 17:53:25 +00:00
|
|
|
export function updateTimeline(timeline, status, accept) {
|
2021-05-07 12:33:57 +00:00
|
|
|
return (dispatch, getState) => {
|
2018-11-05 17:53:25 +00:00
|
|
|
if (typeof accept === 'function' && !accept(status)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-05-07 12:33:57 +00:00
|
|
|
if (getState().getIn(['timelines', timeline, 'isPartial'])) {
|
|
|
|
// Prevent new items from being added to a partial timeline,
|
|
|
|
// since it will be reloaded anyway
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatus(status));
|
|
|
|
|
2016-10-30 14:06:43 +00:00
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_UPDATE,
|
|
|
|
timeline,
|
|
|
|
status,
|
2019-07-16 04:30:47 +00:00
|
|
|
usePendingItems: preferPendingItems,
|
2016-10-30 14:06:43 +00:00
|
|
|
});
|
2020-05-29 14:14:16 +00:00
|
|
|
|
|
|
|
if (timeline === 'home') {
|
|
|
|
dispatch(submitMarkers());
|
|
|
|
}
|
2016-08-31 14:15:12 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2016-09-04 23:59:46 +00:00
|
|
|
|
2016-09-09 18:54:49 +00:00
|
|
|
export function deleteFromTimelines(id) {
|
2016-10-30 14:06:43 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const accountId = getState().getIn(['statuses', id, 'account']);
|
2024-06-20 22:39:06 +00:00
|
|
|
const references = getState().get('statuses').filter(status => status.get('reblog') === id).map(status => status.get('id')).valueSeq().toJSON();
|
2017-01-07 14:44:22 +00:00
|
|
|
const reblogOf = getState().getIn(['statuses', id, 'reblog'], null);
|
2016-10-30 14:06:43 +00:00
|
|
|
|
2024-06-20 22:39:06 +00:00
|
|
|
dispatch(timelineDelete({ statusId: id, accountId, references, reblogOf }));
|
2016-09-04 23:59:46 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2016-09-12 16:22:43 +00:00
|
|
|
|
2018-11-05 17:53:25 +00:00
|
|
|
export function clearTimeline(timeline) {
|
|
|
|
return (dispatch) => {
|
|
|
|
dispatch({ type: TIMELINE_CLEAR, timeline });
|
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2018-11-05 17:53:25 +00:00
|
|
|
|
|
|
|
const parseTags = (tags = {}, mode) => {
|
|
|
|
return (tags[mode] || []).map((tag) => {
|
|
|
|
return tag.value;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2024-08-19 14:41:32 +00:00
|
|
|
export function expandTimeline(timelineId, path, params = {}) {
|
|
|
|
return async (dispatch, getState) => {
|
2017-07-10 23:00:14 +00:00
|
|
|
const timeline = getState().getIn(['timelines', timelineId], ImmutableMap());
|
2018-11-10 14:04:13 +00:00
|
|
|
const isLoadingMore = !!params.max_id;
|
2017-01-16 12:27:58 +00:00
|
|
|
|
2018-03-24 14:25:15 +00:00
|
|
|
if (timeline.get('isLoading')) {
|
2017-02-19 19:25:54 +00:00
|
|
|
return;
|
2016-11-05 14:20:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-16 04:30:47 +00:00
|
|
|
if (!params.max_id && !params.pinned && (timeline.get('items', ImmutableList()).size + timeline.get('pendingItems', ImmutableList()).size) > 0) {
|
|
|
|
const a = timeline.getIn(['pendingItems', 0]);
|
|
|
|
const b = timeline.getIn(['items', 0]);
|
|
|
|
|
|
|
|
if (a && b && compareId(a, b) > 0) {
|
|
|
|
params.since_id = a;
|
|
|
|
} else {
|
|
|
|
params.since_id = b || a;
|
|
|
|
}
|
2018-05-18 00:32:35 +00:00
|
|
|
}
|
|
|
|
|
2018-12-14 00:41:38 +00:00
|
|
|
const isLoadingRecent = !!params.since_id;
|
|
|
|
|
2018-11-10 14:04:13 +00:00
|
|
|
dispatch(expandTimelineRequest(timelineId, isLoadingMore));
|
2017-02-19 19:25:54 +00:00
|
|
|
|
2024-08-19 14:41:32 +00:00
|
|
|
try {
|
|
|
|
const response = await api().get(path, { params });
|
2017-02-19 19:25:54 +00:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2024-02-01 13:37:04 +00:00
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatuses(response.data));
|
2019-10-06 20:11:17 +00:00
|
|
|
dispatch(expandTimelineSuccess(timelineId, response.data, next ? next.uri : null, response.status === 206, isLoadingRecent, isLoadingMore, isLoadingRecent && preferPendingItems));
|
2020-05-29 14:14:16 +00:00
|
|
|
|
2024-02-01 13:37:04 +00:00
|
|
|
if (timelineId === 'home' && !isLoadingMore && !isLoadingRecent) {
|
|
|
|
const now = new Date();
|
|
|
|
const fittingIndex = response.data.findIndex(status => now - (new Date(status.created_at)) > 4 * 3600 * 1000);
|
|
|
|
|
|
|
|
if (fittingIndex !== -1) {
|
|
|
|
dispatch(insertIntoTimeline(timelineId, TIMELINE_SUGGESTIONS, Math.max(1, fittingIndex)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 14:14:16 +00:00
|
|
|
if (timelineId === 'home') {
|
|
|
|
dispatch(submitMarkers());
|
|
|
|
}
|
2024-08-19 14:41:32 +00:00
|
|
|
} catch(error) {
|
2018-11-10 14:04:13 +00:00
|
|
|
dispatch(expandTimelineFail(timelineId, error, isLoadingMore));
|
2024-08-19 14:41:32 +00:00
|
|
|
}
|
2016-09-21 23:08:35 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2016-09-21 23:08:35 +00:00
|
|
|
|
2024-08-19 14:41:32 +00:00
|
|
|
export function fillTimelineGaps(timelineId, path, params = {}) {
|
|
|
|
return async (dispatch, getState) => {
|
2022-04-08 17:17:54 +00:00
|
|
|
const timeline = getState().getIn(['timelines', timelineId], ImmutableMap());
|
|
|
|
const items = timeline.get('items');
|
|
|
|
const nullIndexes = items.map((statusId, index) => statusId === null ? index : null);
|
|
|
|
const gaps = nullIndexes.map(index => index > 0 ? items.get(index - 1) : null);
|
|
|
|
|
|
|
|
// Only expand at most two gaps to avoid doing too many requests
|
2024-08-19 14:41:32 +00:00
|
|
|
for (const maxId of gaps.take(2)) {
|
|
|
|
await dispatch(expandTimeline(timelineId, path, { ...params, maxId }));
|
|
|
|
}
|
2022-04-08 17:17:54 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2024-08-19 14:41:32 +00:00
|
|
|
export const expandHomeTimeline = ({ maxId } = {}) => expandTimeline('home', '/api/v1/timelines/home', { max_id: maxId });
|
|
|
|
export const expandPublicTimeline = ({ maxId, onlyMedia, onlyRemote } = {}) => expandTimeline(`public${onlyRemote ? ':remote' : ''}${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { remote: !!onlyRemote, max_id: maxId, only_media: !!onlyMedia });
|
|
|
|
export const expandCommunityTimeline = ({ maxId, onlyMedia } = {}) => expandTimeline(`community${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { local: true, max_id: maxId, only_media: !!onlyMedia });
|
2023-08-03 18:39:33 +00:00
|
|
|
export const expandAccountTimeline = (accountId, { maxId, withReplies, tagged } = {}) => expandTimeline(`account:${accountId}${withReplies ? ':with_replies' : ''}${tagged ? `:${tagged}` : ''}`, `/api/v1/accounts/${accountId}/statuses`, { exclude_replies: !withReplies, exclude_reblogs: withReplies, tagged, max_id: maxId });
|
2022-10-16 06:43:59 +00:00
|
|
|
export const expandAccountFeaturedTimeline = (accountId, { tagged } = {}) => expandTimeline(`account:${accountId}:pinned${tagged ? `:${tagged}` : ''}`, `/api/v1/accounts/${accountId}/statuses`, { pinned: true, tagged });
|
2019-05-03 02:02:55 +00:00
|
|
|
export const expandAccountMediaTimeline = (accountId, { maxId } = {}) => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { max_id: maxId, only_media: true, limit: 40 });
|
2024-08-19 14:41:32 +00:00
|
|
|
export const expandListTimeline = (id, { maxId } = {}) => expandTimeline(`list:${id}`, `/api/v1/timelines/list/${id}`, { max_id: maxId });
|
|
|
|
export const expandLinkTimeline = (url, { maxId } = {}) => expandTimeline(`link:${url}`, `/api/v1/timelines/link`, { url, max_id: maxId });
|
|
|
|
export const expandHashtagTimeline = (hashtag, { maxId, tags, local } = {}) => {
|
2020-05-23 03:46:29 +00:00
|
|
|
return expandTimeline(`hashtag:${hashtag}${local ? ':local' : ''}`, `/api/v1/timelines/tag/${hashtag}`, {
|
2018-11-05 17:53:25 +00:00
|
|
|
max_id: maxId,
|
2018-11-08 20:35:06 +00:00
|
|
|
any: parseTags(tags, 'any'),
|
|
|
|
all: parseTags(tags, 'all'),
|
|
|
|
none: parseTags(tags, 'none'),
|
2020-04-18 19:52:39 +00:00
|
|
|
local: local,
|
2024-08-19 14:41:32 +00:00
|
|
|
});
|
2018-11-05 17:53:25 +00:00
|
|
|
};
|
|
|
|
|
2024-08-19 14:41:32 +00:00
|
|
|
export const fillHomeTimelineGaps = () => fillTimelineGaps('home', '/api/v1/timelines/home', {});
|
|
|
|
export const fillPublicTimelineGaps = ({ onlyMedia, onlyRemote } = {}) => fillTimelineGaps(`public${onlyRemote ? ':remote' : ''}${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { remote: !!onlyRemote, only_media: !!onlyMedia });
|
|
|
|
export const fillCommunityTimelineGaps = ({ onlyMedia } = {}) => fillTimelineGaps(`community${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { local: true, only_media: !!onlyMedia });
|
|
|
|
export const fillListTimelineGaps = (id) => fillTimelineGaps(`list:${id}`, `/api/v1/timelines/list/${id}`, {});
|
2022-04-08 17:17:54 +00:00
|
|
|
|
2018-11-10 14:04:13 +00:00
|
|
|
export function expandTimelineRequest(timeline, isLoadingMore) {
|
2016-09-21 23:08:35 +00:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
timeline,
|
2018-11-10 14:04:13 +00:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-21 23:08:35 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2016-09-21 23:08:35 +00:00
|
|
|
|
2019-07-16 04:30:47 +00:00
|
|
|
export function expandTimelineSuccess(timeline, statuses, next, partial, isLoadingRecent, isLoadingMore, usePendingItems) {
|
2016-09-21 23:08:35 +00:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_SUCCESS,
|
2016-12-03 20:04:57 +00:00
|
|
|
timeline,
|
2017-02-19 19:25:54 +00:00
|
|
|
statuses,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2018-03-24 14:25:15 +00:00
|
|
|
partial,
|
2018-12-14 00:41:38 +00:00
|
|
|
isLoadingRecent,
|
2019-07-16 04:30:47 +00:00
|
|
|
usePendingItems,
|
2018-11-10 14:04:13 +00:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-21 23:08:35 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2016-09-21 23:08:35 +00:00
|
|
|
|
2018-11-10 14:04:13 +00:00
|
|
|
export function expandTimelineFail(timeline, error, isLoadingMore) {
|
2016-09-21 23:08:35 +00:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_FAIL,
|
2016-12-03 20:04:57 +00:00
|
|
|
timeline,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2018-11-10 14:04:13 +00:00
|
|
|
skipLoading: !isLoadingMore,
|
2020-03-28 16:59:45 +00:00
|
|
|
skipNotFound: timeline.startsWith('account:'),
|
2016-12-03 20:04:57 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2016-12-03 20:04:57 +00:00
|
|
|
|
|
|
|
export function scrollTopTimeline(timeline, top) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_SCROLL_TOP,
|
|
|
|
timeline,
|
2017-05-20 15:31:47 +00:00
|
|
|
top,
|
2016-09-21 23:08:35 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2017-04-02 19:44:06 +00:00
|
|
|
|
2019-03-07 21:17:52 +00:00
|
|
|
export function connectTimeline(timeline) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_CONNECT,
|
|
|
|
timeline,
|
2022-04-07 14:08:17 +00:00
|
|
|
usePendingItems: preferPendingItems,
|
2019-03-07 21:17:52 +00:00
|
|
|
};
|
2022-12-18 15:51:37 +00:00
|
|
|
}
|
2019-03-07 21:17:52 +00:00
|
|
|
|
2021-05-07 12:33:57 +00:00
|
|
|
export const markAsPartial = timeline => ({
|
|
|
|
type: TIMELINE_MARK_AS_PARTIAL,
|
|
|
|
timeline,
|
|
|
|
});
|
2024-02-01 13:37:04 +00:00
|
|
|
|
|
|
|
export const insertIntoTimeline = (timeline, key, index) => ({
|
|
|
|
type: TIMELINE_INSERT,
|
|
|
|
timeline,
|
|
|
|
index,
|
|
|
|
key,
|
|
|
|
});
|