mastodon/app/assets/javascripts/components/actions/timelines.jsx

156 lines
4 KiB
React
Raw Normal View History

import api from '../api'
2016-11-05 14:20:05 +00:00
import Immutable from 'immutable';
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-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';
export const TIMELINE_SCROLL_TOP = 'TIMELINE_SCROLL_TOP';
2017-01-19 10:23:24 +00:00
export function refreshTimelineSuccess(timeline, statuses, skipLoading) {
return {
type: TIMELINE_REFRESH_SUCCESS,
2017-01-19 10:23:24 +00:00
timeline,
statuses,
skipLoading
};
};
export function updateTimeline(timeline, status) {
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) : [];
dispatch({
type: TIMELINE_UPDATE,
timeline,
status,
references
});
};
};
export function deleteFromTimelines(id) {
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')]);
const reblogOf = getState().getIn(['statuses', id, 'reblog'], null);
dispatch({
type: TIMELINE_DELETE,
id,
accountId,
references,
reblogOf
});
};
};
2017-01-19 10:23:24 +00:00
export function refreshTimelineRequest(timeline, id, skipLoading) {
return {
type: TIMELINE_REFRESH_REQUEST,
timeline,
2017-01-19 10:23:24 +00:00
id,
skipLoading
};
};
export function refreshTimeline(timeline, id = null) {
return function (dispatch, getState) {
const ids = getState().getIn(['timelines', timeline, 'items'], Immutable.List());
const newestId = ids.size > 0 ? ids.first() : null;
2017-01-19 10:23:24 +00:00
let params = '';
let path = timeline;
let skipLoading = false;
2016-12-12 13:39:18 +00:00
if (newestId !== null && getState().getIn(['timelines', timeline, 'loaded'])) {
2017-01-19 10:23:24 +00:00
params = `?since_id=${newestId}`;
skipLoading = true;
}
2016-11-05 14:20:05 +00:00
if (id) {
path = `${path}/${id}`
}
2017-01-19 10:23:24 +00:00
dispatch(refreshTimelineRequest(timeline, id, skipLoading));
api(getState).get(`/api/v1/timelines/${path}${params}`).then(function (response) {
2017-01-19 10:23:24 +00:00
dispatch(refreshTimelineSuccess(timeline, response.data, skipLoading));
}).catch(function (error) {
2017-01-19 10:23:24 +00:00
dispatch(refreshTimelineFail(timeline, error, skipLoading));
});
};
};
2017-01-19 10:23:24 +00:00
export function refreshTimelineFail(timeline, error, skipLoading) {
return {
type: TIMELINE_REFRESH_FAIL,
timeline,
2017-01-19 10:23:24 +00:00
error,
skipLoading
};
};
2016-09-21 23:08:35 +00:00
2016-11-05 14:20:05 +00:00
export function expandTimeline(timeline, id = null) {
2016-09-21 23:08:35 +00:00
return (dispatch, getState) => {
const lastId = getState().getIn(['timelines', timeline, 'items'], Immutable.List()).last();
2016-09-21 23:08:35 +00:00
2017-01-16 12:27:58 +00:00
if (!lastId) {
// If timeline is empty, don't try to load older posts since there are none
return;
}
2016-09-21 23:08:35 +00:00
dispatch(expandTimelineRequest(timeline));
2016-11-05 14:20:05 +00:00
let path = timeline;
if (id) {
path = `${path}/${id}`
}
api(getState).get(`/api/v1/timelines/${path}?max_id=${lastId}`).then(response => {
2016-09-21 23:08:35 +00:00
dispatch(expandTimelineSuccess(timeline, response.data));
}).catch(error => {
dispatch(expandTimelineFail(timeline, error));
});
};
};
export function expandTimelineRequest(timeline) {
return {
type: TIMELINE_EXPAND_REQUEST,
timeline
2016-09-21 23:08:35 +00:00
};
};
export function expandTimelineSuccess(timeline, statuses) {
return {
type: TIMELINE_EXPAND_SUCCESS,
timeline,
statuses
2016-09-21 23:08:35 +00:00
};
};
export function expandTimelineFail(timeline, error) {
return {
type: TIMELINE_EXPAND_FAIL,
timeline,
error
};
};
export function scrollTopTimeline(timeline, top) {
return {
type: TIMELINE_SCROLL_TOP,
timeline,
top
2016-09-21 23:08:35 +00:00
};
};