112 lines
3.8 KiB
TypeScript
112 lines
3.8 KiB
TypeScript
import api, { getLinks } from '../api';
|
|
|
|
import type { AxiosError } from 'axios';
|
|
import type { AppDispatch, RootState } from 'soapbox/store';
|
|
import type { APIEntity } from 'soapbox/types/entities';
|
|
|
|
const SCHEDULED_STATUSES_FETCH_REQUEST = 'SCHEDULED_STATUSES_FETCH_REQUEST';
|
|
const SCHEDULED_STATUSES_FETCH_SUCCESS = 'SCHEDULED_STATUSES_FETCH_SUCCESS';
|
|
const SCHEDULED_STATUSES_FETCH_FAIL = 'SCHEDULED_STATUSES_FETCH_FAIL';
|
|
|
|
const SCHEDULED_STATUSES_EXPAND_REQUEST = 'SCHEDULED_STATUSES_EXPAND_REQUEST';
|
|
const SCHEDULED_STATUSES_EXPAND_SUCCESS = 'SCHEDULED_STATUSES_EXPAND_SUCCESS';
|
|
const SCHEDULED_STATUSES_EXPAND_FAIL = 'SCHEDULED_STATUSES_EXPAND_FAIL';
|
|
|
|
const SCHEDULED_STATUS_CANCEL_REQUEST = 'SCHEDULED_STATUS_CANCEL_REQUEST';
|
|
const SCHEDULED_STATUS_CANCEL_SUCCESS = 'SCHEDULED_STATUS_CANCEL_SUCCESS';
|
|
const SCHEDULED_STATUS_CANCEL_FAIL = 'SCHEDULED_STATUS_CANCEL_FAIL';
|
|
|
|
const fetchScheduledStatuses = () =>
|
|
(dispatch: AppDispatch, getState: () => RootState) => {
|
|
if (getState().status_lists.get('scheduled_statuses')?.isLoading) {
|
|
return;
|
|
}
|
|
|
|
dispatch(fetchScheduledStatusesRequest());
|
|
|
|
api(getState).get('/api/v1/scheduled_statuses').then(response => {
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
dispatch(fetchScheduledStatusesSuccess(response.data, next ? next.uri : null));
|
|
}).catch(error => {
|
|
dispatch(fetchScheduledStatusesFail(error));
|
|
});
|
|
};
|
|
|
|
const cancelScheduledStatus = (id: string) =>
|
|
(dispatch: AppDispatch, getState: () => RootState) => {
|
|
dispatch({ type: SCHEDULED_STATUS_CANCEL_REQUEST, id });
|
|
api(getState).delete(`/api/v1/scheduled_statuses/${id}`).then(({ data }) => {
|
|
dispatch({ type: SCHEDULED_STATUS_CANCEL_SUCCESS, id, data });
|
|
}).catch(error => {
|
|
dispatch({ type: SCHEDULED_STATUS_CANCEL_FAIL, id, error });
|
|
});
|
|
};
|
|
|
|
const fetchScheduledStatusesRequest = () => ({
|
|
type: SCHEDULED_STATUSES_FETCH_REQUEST,
|
|
});
|
|
|
|
const fetchScheduledStatusesSuccess = (statuses: APIEntity[], next: string | null) => ({
|
|
type: SCHEDULED_STATUSES_FETCH_SUCCESS,
|
|
statuses,
|
|
next,
|
|
});
|
|
|
|
const fetchScheduledStatusesFail = (error: AxiosError) => ({
|
|
type: SCHEDULED_STATUSES_FETCH_FAIL,
|
|
error,
|
|
});
|
|
|
|
const expandScheduledStatuses = () =>
|
|
(dispatch: AppDispatch, getState: () => RootState) => {
|
|
const url = getState().status_lists.get('scheduled_statuses')?.next || null;
|
|
|
|
if (url === null || getState().status_lists.get('scheduled_statuses')?.isLoading) {
|
|
return;
|
|
}
|
|
|
|
dispatch(expandScheduledStatusesRequest());
|
|
|
|
api(getState).get(url).then(response => {
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
dispatch(expandScheduledStatusesSuccess(response.data, next ? next.uri : null));
|
|
}).catch(error => {
|
|
dispatch(expandScheduledStatusesFail(error));
|
|
});
|
|
};
|
|
|
|
const expandScheduledStatusesRequest = () => ({
|
|
type: SCHEDULED_STATUSES_EXPAND_REQUEST,
|
|
});
|
|
|
|
const expandScheduledStatusesSuccess = (statuses: APIEntity[], next: string | null) => ({
|
|
type: SCHEDULED_STATUSES_EXPAND_SUCCESS,
|
|
statuses,
|
|
next,
|
|
});
|
|
|
|
const expandScheduledStatusesFail = (error: AxiosError) => ({
|
|
type: SCHEDULED_STATUSES_EXPAND_FAIL,
|
|
error,
|
|
});
|
|
|
|
export {
|
|
SCHEDULED_STATUSES_FETCH_REQUEST,
|
|
SCHEDULED_STATUSES_FETCH_SUCCESS,
|
|
SCHEDULED_STATUSES_FETCH_FAIL,
|
|
SCHEDULED_STATUSES_EXPAND_REQUEST,
|
|
SCHEDULED_STATUSES_EXPAND_SUCCESS,
|
|
SCHEDULED_STATUSES_EXPAND_FAIL,
|
|
SCHEDULED_STATUS_CANCEL_REQUEST,
|
|
SCHEDULED_STATUS_CANCEL_SUCCESS,
|
|
SCHEDULED_STATUS_CANCEL_FAIL,
|
|
fetchScheduledStatuses,
|
|
cancelScheduledStatus,
|
|
fetchScheduledStatusesRequest,
|
|
fetchScheduledStatusesSuccess,
|
|
fetchScheduledStatusesFail,
|
|
expandScheduledStatuses,
|
|
expandScheduledStatusesRequest,
|
|
expandScheduledStatusesSuccess,
|
|
expandScheduledStatusesFail,
|
|
};
|