2017-12-04 02:26:40 -05:00
|
|
|
import api, { getLinks } from 'flavours/glitch/util/api';
|
2018-05-27 13:42:45 -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';
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
export function updateTimeline(timeline, status) {
|
2016-10-30 10:06:43 -04:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_UPDATE,
|
|
|
|
timeline,
|
|
|
|
status,
|
|
|
|
});
|
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-27 13:42:45 -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());
|
2018-11-10 12:01:39 -05:00
|
|
|
const isLoadingMore = !!params.max_id;
|
2017-01-16 07:27:58 -05:00
|
|
|
|
2018-05-27 13:10:37 -04:00
|
|
|
if (timeline.get('isLoading')) {
|
2018-05-27 13:42:45 -04:00
|
|
|
done();
|
2017-02-19 14:25:54 -05:00
|
|
|
return;
|
2016-11-05 10:20:05 -04:00
|
|
|
}
|
|
|
|
|
2018-08-20 05:14:02 -04:00
|
|
|
if (!params.max_id && !params.pinned && timeline.get('items', ImmutableList()).size > 0) {
|
2018-05-27 13:42:45 -04:00
|
|
|
params.since_id = timeline.getIn(['items', 0]);
|
|
|
|
}
|
|
|
|
|
2018-12-13 15:08:22 -05:00
|
|
|
const isLoadingRecent = !!params.since_id;
|
|
|
|
|
2018-11-10 12:01:39 -05:00
|
|
|
dispatch(expandTimelineRequest(timelineId, isLoadingMore));
|
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-12-13 15:08:22 -05:00
|
|
|
dispatch(expandTimelineSuccess(timelineId, response.data, next ? next.uri : null, response.code === 206, isLoadingRecent, isLoadingMore));
|
2018-05-27 13:42:45 -04:00
|
|
|
done();
|
2016-09-21 19:08:35 -04:00
|
|
|
}).catch(error => {
|
2018-11-10 12:01:39 -05:00
|
|
|
dispatch(expandTimelineFail(timelineId, error, isLoadingMore));
|
2018-05-27 13:42:45 -04:00
|
|
|
done();
|
2016-09-21 19:08:35 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-05-27 13:42:45 -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-05-27 13:10:37 -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-27 13:42:45 -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
|
|
|
|
2018-11-10 12:01:39 -05:00
|
|
|
export function expandTimelineRequest(timeline, isLoadingMore) {
|
2016-09-21 19:08:35 -04:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_REQUEST,
|
2017-05-20 11:31:47 -04:00
|
|
|
timeline,
|
2018-11-10 12:01:39 -05:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-21 19:08:35 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-12-13 15:08:22 -05:00
|
|
|
export function expandTimelineSuccess(timeline, statuses, next, partial, isLoadingRecent, isLoadingMore) {
|
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-05-27 13:10:37 -04:00
|
|
|
partial,
|
2018-12-13 15:08:22 -05:00
|
|
|
isLoadingRecent,
|
2018-11-10 12:01:39 -05:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-21 19:08:35 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-11-10 12:01:39 -05:00
|
|
|
export function expandTimelineFail(timeline, error, isLoadingMore) {
|
2016-09-21 19:08:35 -04:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_FAIL,
|
2016-12-03 15:04:57 -05:00
|
|
|
timeline,
|
2017-05-20 11:31:47 -04:00
|
|
|
error,
|
2018-11-10 12:01:39 -05:00
|
|
|
skipLoading: !isLoadingMore,
|
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
|
|
|
};
|
|
|
|
};
|