2016-09-12 18:22:43 +02:00
|
|
|
import api 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-10-19 18:20:19 +02:00
|
|
|
export function refreshTimelineSuccess(timeline, statuses, replace) {
|
2016-08-31 16:15:12 +02:00
|
|
|
return {
|
2016-09-20 23:18:00 +02:00
|
|
|
type: TIMELINE_REFRESH_SUCCESS,
|
2016-08-31 16:15:12 +02:00
|
|
|
timeline: timeline,
|
2016-10-19 18:20:19 +02:00
|
|
|
statuses: statuses,
|
|
|
|
replace: replace
|
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')]);
|
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: TIMELINE_DELETE,
|
|
|
|
id,
|
|
|
|
accountId,
|
|
|
|
references
|
|
|
|
});
|
2016-09-05 01:59:46 +02:00
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-12 18:22:43 +02:00
|
|
|
|
|
|
|
export function refreshTimelineRequest(timeline) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_REFRESH_REQUEST,
|
|
|
|
timeline: timeline
|
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-12 18:22:43 +02:00
|
|
|
|
2016-11-05 15:20:05 +01:00
|
|
|
export function refreshTimeline(timeline, replace = false, id = null) {
|
2016-09-12 18:22:43 +02:00
|
|
|
return function (dispatch, getState) {
|
|
|
|
dispatch(refreshTimelineRequest(timeline));
|
|
|
|
|
2016-11-05 15:20:05 +01:00
|
|
|
const ids = getState().getIn(['timelines', timeline], Immutable.List());
|
2016-10-18 23:06:28 +02:00
|
|
|
const newestId = ids.size > 0 ? ids.first() : null;
|
|
|
|
|
|
|
|
let params = '';
|
2016-11-05 15:20:05 +01:00
|
|
|
let path = timeline;
|
2016-10-18 23:06:28 +02:00
|
|
|
|
2016-10-19 18:20:19 +02:00
|
|
|
if (newestId !== null && !replace) {
|
2016-10-18 23:06:28 +02:00
|
|
|
params = `?since_id=${newestId}`;
|
|
|
|
}
|
|
|
|
|
2016-11-05 15:20:05 +01:00
|
|
|
if (id) {
|
|
|
|
path = `${path}/${id}`
|
|
|
|
}
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/statuses/${path}${params}`).then(function (response) {
|
2016-10-19 18:20:19 +02:00
|
|
|
dispatch(refreshTimelineSuccess(timeline, response.data, replace));
|
2016-09-12 18:22:43 +02:00
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(refreshTimelineFail(timeline, error));
|
|
|
|
});
|
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-12 18:22:43 +02:00
|
|
|
|
|
|
|
export function refreshTimelineFail(timeline, error) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_REFRESH_FAIL,
|
|
|
|
timeline: timeline,
|
|
|
|
error: error
|
|
|
|
};
|
2016-09-12 19:20:55 +02:00
|
|
|
};
|
2016-09-22 01:08:35 +02:00
|
|
|
|
2016-11-05 15:20:05 +01:00
|
|
|
export function expandTimeline(timeline, id = null) {
|
2016-09-22 01:08:35 +02:00
|
|
|
return (dispatch, getState) => {
|
2016-11-05 15:20:05 +01:00
|
|
|
const lastId = getState().getIn(['timelines', timeline], Immutable.List()).last();
|
2016-09-22 01:08:35 +02:00
|
|
|
|
|
|
|
dispatch(expandTimelineRequest(timeline));
|
|
|
|
|
2016-11-05 15:20:05 +01:00
|
|
|
let path = timeline;
|
|
|
|
|
|
|
|
if (id) {
|
|
|
|
path = `${path}/${id}`
|
|
|
|
}
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/statuses/${path}?max_id=${lastId}`).then(response => {
|
2016-09-22 01:08:35 +02:00
|
|
|
dispatch(expandTimelineSuccess(timeline, response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandTimelineFail(timeline, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandTimelineRequest(timeline) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_REQUEST,
|
|
|
|
timeline: timeline
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandTimelineSuccess(timeline, statuses) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_SUCCESS,
|
|
|
|
timeline: timeline,
|
|
|
|
statuses: statuses
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandTimelineFail(timeline, error) {
|
|
|
|
return {
|
|
|
|
type: TIMELINE_EXPAND_FAIL,
|
|
|
|
timeline: timeline,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
};
|