47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
|
import api from '../api';
|
||
|
|
||
|
import type { AxiosError } from 'axios';
|
||
|
import type { AppDispatch, RootState } from 'soapbox/store';
|
||
|
import type { APIEntity } from 'soapbox/types/entities';
|
||
|
|
||
|
const TRENDS_FETCH_REQUEST = 'TRENDS_FETCH_REQUEST';
|
||
|
const TRENDS_FETCH_SUCCESS = 'TRENDS_FETCH_SUCCESS';
|
||
|
const TRENDS_FETCH_FAIL = 'TRENDS_FETCH_FAIL';
|
||
|
|
||
|
const fetchTrends = () =>
|
||
|
(dispatch: AppDispatch, getState: () => RootState) => {
|
||
|
dispatch(fetchTrendsRequest());
|
||
|
|
||
|
api(getState).get('/api/v1/trends').then(response => {
|
||
|
dispatch(fetchTrendsSuccess(response.data));
|
||
|
}).catch(error => dispatch(fetchTrendsFail(error)));
|
||
|
};
|
||
|
|
||
|
const fetchTrendsRequest = () => ({
|
||
|
type: TRENDS_FETCH_REQUEST,
|
||
|
skipLoading: true,
|
||
|
});
|
||
|
|
||
|
const fetchTrendsSuccess = (tags: APIEntity[]) => ({
|
||
|
type: TRENDS_FETCH_SUCCESS,
|
||
|
tags,
|
||
|
skipLoading: true,
|
||
|
});
|
||
|
|
||
|
const fetchTrendsFail = (error: AxiosError) => ({
|
||
|
type: TRENDS_FETCH_FAIL,
|
||
|
error,
|
||
|
skipLoading: true,
|
||
|
skipAlert: true,
|
||
|
});
|
||
|
|
||
|
export {
|
||
|
TRENDS_FETCH_REQUEST,
|
||
|
TRENDS_FETCH_SUCCESS,
|
||
|
TRENDS_FETCH_FAIL,
|
||
|
fetchTrends,
|
||
|
fetchTrendsRequest,
|
||
|
fetchTrendsSuccess,
|
||
|
fetchTrendsFail,
|
||
|
};
|