2017-02-19 20:25:54 +01:00
|
|
|
import api, { getLinks } from '../api'
|
2016-11-05 15:20:05 +01:00
|
|
|
import Immutable from 'immutable';
|
2016-09-12 18:22:43 +02: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 16:15:12 +02:00
|
|
|
|
2016-09-18 13:45:39 +02: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 21:04:57 +01:00
|
|
|
export const TIMELINE_SCROLL_TOP = 'TIMELINE_SCROLL_TOP';
|
|
|
|
|
2017-02-19 20:25:54 +01:00
|
|
|
export function refreshTimelineSuccess(timeline, statuses, skipLoading, next) {
|
2016-08-31 16:15:12 +02:00
|
|
|
return {
|
2016-09-20 23:18:00 +02:00
|
|
|
type: TIMELINE_REFRESH_SUCCESS,
|
2017-01-19 11:23:24 +01:00
|
|
|
timeline,
|
|
|
|
statuses,
|
2017-02-19 20:25:54 +01:00
|
|
|
skipLoading,
|
|
|
|
next
|
2016-08-31 16:15:12 +02:00
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-08-31 16:15:12 +02:00
|
|
|
|
|
|
|
export function updateTimeline(timeline, status) {
|
2016-10-30 15:06:43 +01: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) : [];
|
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_UPDATE,
|
|
|
|
timeline,
|
|
|
|
status,
|
|
|
|
references
|
|
|
|
});
|
2016-08-31 16:15:12 +02:00
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-05 01:59:46 +02:00
|
|
|
|
2016-09-09 20:54:49 +02:00
|
|
|
export function deleteFromTimelines(id) {
|
2016-10-30 15:06:43 +01: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 15:44:22 +01:00
|
|
|
const reblogOf = getState().getIn(['statuses', id, 'reblog'], null);
|
2016-10-30 15:06:43 +01:00
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_DELETE,
|
|
|
|
id,
|
|
|
|
accountId,
|
2017-01-07 15:44:22 +01:00
|
|
|
references,
|
|
|
|
reblogOf
|
2016-10-30 15:06:43 +01:00
|
|
|
});
|
2016-09-05 01:59:46 +02:00
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-12 18:22:43 +02:00
|
|
|
|
2017-01-19 11:23:24 +01:00
|
|
|
export function refreshTimelineRequest(timeline, id, skipLoading) {
|
2016-09-12 18:22:43 +02:00
|
|
|
return {
|
|
|
|
type: TIMELINE_REFRESH_REQUEST,
|
2016-12-03 21:04:57 +01:00
|
|
|
timeline,
|
2017-01-19 11:23:24 +01:00
|
|
|
id,
|
|
|
|
skipLoading
|
2016-09-12 18:22:43 +02:00
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-12 18:22:43 +02:00
|
|
|
|
2016-12-03 21:04:57 +01:00
|
|
|
export function refreshTimeline(timeline, id = null) {
|
2016-09-12 18:22:43 +02:00
|
|
|
return function (dispatch, getState) {
|
2017-01-24 13:04:12 +01:00
|
|
|
if (getState().getIn(['timelines', timeline, 'isLoading'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-03 21:04:57 +01:00
|
|
|
const ids = getState().getIn(['timelines', timeline, 'items'], Immutable.List());
|
2016-10-18 23:06:28 +02:00
|
|
|
const newestId = ids.size > 0 ? ids.first() : null;
|
2017-02-19 21:37:04 +01:00
|
|
|
let params = getState().getIn(['timelines', timeline, 'params'], {});
|
2017-02-19 20:25:54 +01:00
|
|
|
const path = getState().getIn(['timelines', timeline, 'path'])(id);
|
2016-10-18 23:06:28 +02:00
|
|
|
|
2017-01-19 11:23:24 +01:00
|
|
|
let skipLoading = false;
|
2016-10-18 23:06:28 +02:00
|
|
|
|
2017-01-31 22:34:33 +01:00
|
|
|
if (newestId !== null && getState().getIn(['timelines', timeline, 'loaded']) && (id === null || getState().getIn(['timelines', timeline, 'id']) === id)) {
|
2017-02-19 21:37:04 +01:00
|
|
|
params = { ...params, since_id: newestId };
|
2017-02-19 20:25:54 +01:00
|
|
|
skipLoading = true;
|
2016-11-05 15:20:05 +01:00
|
|
|
}
|
|
|
|
|
2017-01-19 11:23:24 +01:00
|
|
|
dispatch(refreshTimelineRequest(timeline, id, skipLoading));
|
|
|
|
|
2017-02-19 20:25:54 +01:00
|
|
|
api(getState).get(path, { params }).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
dispatch(refreshTimelineSuccess(timeline, response.data, skipLoading, next ? next.uri : null));
|
|
|
|
}).catch(error => {
|
2017-01-19 11:23:24 +01:00
|
|
|
dispatch(refreshTimelineFail(timeline, error, skipLoading));
|
2016-09-12 18:22:43 +02:00
|
|
|
});
|
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-12 18:22:43 +02:00
|
|
|
|
2017-01-19 11:23:24 +01:00
|
|
|
export function refreshTimelineFail(timeline, error, skipLoading) {
|
2016-09-12 18:22:43 +02:00
|
|
|
return {
|
|
|
|
type: TIMELINE_REFRESH_FAIL,
|
2016-12-03 21:04:57 +01:00
|
|
|
timeline,
|
2017-01-19 11:23:24 +01:00
|
|
|
error,
|
|
|
|
skipLoading
|
2016-09-12 18:22:43 +02:00
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-22 01:08:35 +02:00
|
|
|
|
2017-02-19 20:25:54 +01:00
|
|
|
export function expandTimeline(timeline) {
|
2016-09-22 01:08:35 +02:00
|
|
|
return (dispatch, getState) => {
|
2017-02-19 20:25:54 +01:00
|
|
|
if (getState().getIn(['timelines', timeline, 'isLoading'])) {
|
2017-01-16 13:27:58 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-01 01:43:29 +01:00
|
|
|
if (getState().getIn(['timelines', timeline, 'items']).size === 0) {
|
2017-02-19 20:25:54 +01:00
|
|
|
return;
|
2016-11-05 15:20:05 +01:00
|
|
|
}
|
|
|
|
|
2017-03-01 01:43:29 +01:00
|
|
|
const path = getState().getIn(['timelines', timeline, 'path'])(getState().getIn(['timelines', timeline, 'id']));
|
|
|
|
const params = getState().getIn(['timelines', timeline, 'params'], {});
|
|
|
|
const lastId = getState().getIn(['timelines', timeline, 'items']).last();
|
|
|
|
|
2017-02-19 20:25:54 +01:00
|
|
|
dispatch(expandTimelineRequest(timeline));
|
|
|
|
|
2017-03-01 01:43:29 +01:00
|
|
|
api(getState).get(path, {
|
2017-01-24 04:12:10 +01:00
|
|
|
params: {
|
2017-02-19 20:25:54 +01:00
|
|
|
...params,
|
2017-03-01 01:43:29 +01:00
|
|
|
max_id: lastId,
|
2017-02-19 20:25:54 +01:00
|
|
|
limit: 10
|
2017-01-24 04:12:10 +01:00
|
|
|
}
|
|
|
|
}).then(response => {
|
2017-02-19 20:25:54 +01:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
dispatch(expandTimelineSuccess(timeline, response.data, next ? next.uri : null));
|
2016-09-22 01:08:35 +02:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandTimelineFail(timeline, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-02-19 20:25:54 +01:00
|
|
|
export function expandTimelineRequest(timeline) {
|
2016-09-22 01:08:35 +02:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_REQUEST,
|
2017-02-19 20:25:54 +01:00
|
|
|
timeline
|
2016-09-22 01:08:35 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-02-19 20:25:54 +01:00
|
|
|
export function expandTimelineSuccess(timeline, statuses, next) {
|
2016-09-22 01:08:35 +02:00
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_SUCCESS,
|
2016-12-03 21:04:57 +01:00
|
|
|
timeline,
|
2017-02-19 20:25:54 +01:00
|
|
|
statuses,
|
|
|
|
next
|
2016-09-22 01:08:35 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandTimelineFail(timeline, error) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_FAIL,
|
2016-12-03 21:04:57 +01:00
|
|
|
timeline,
|
|
|
|
error
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function scrollTopTimeline(timeline, top) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_SCROLL_TOP,
|
|
|
|
timeline,
|
|
|
|
top
|
2016-09-22 01:08:35 +02:00
|
|
|
};
|
|
|
|
};
|