2017-09-07 07:58:11 +00:00
|
|
|
import api from '../api';
|
2018-03-24 12:06:27 +00:00
|
|
|
import { importFetchedStatuses } from './importer';
|
2017-09-07 07:58:11 +00:00
|
|
|
|
|
|
|
export const PINNED_STATUSES_FETCH_REQUEST = 'PINNED_STATUSES_FETCH_REQUEST';
|
|
|
|
export const PINNED_STATUSES_FETCH_SUCCESS = 'PINNED_STATUSES_FETCH_SUCCESS';
|
|
|
|
export const PINNED_STATUSES_FETCH_FAIL = 'PINNED_STATUSES_FETCH_FAIL';
|
|
|
|
|
2017-10-31 02:27:48 +00:00
|
|
|
import { me } from '../initial_state';
|
|
|
|
|
2017-09-07 07:58:11 +00:00
|
|
|
export function fetchPinnedStatuses() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchPinnedStatusesRequest());
|
|
|
|
|
2017-10-31 02:27:48 +00:00
|
|
|
api(getState).get(`/api/v1/accounts/${me}/statuses`, { params: { pinned: true } }).then(response => {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatuses(response.data));
|
2017-09-07 07:58:11 +00:00
|
|
|
dispatch(fetchPinnedStatusesSuccess(response.data, null));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchPinnedStatusesFail(error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchPinnedStatusesRequest() {
|
|
|
|
return {
|
|
|
|
type: PINNED_STATUSES_FETCH_REQUEST,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchPinnedStatusesSuccess(statuses, next) {
|
|
|
|
return {
|
|
|
|
type: PINNED_STATUSES_FETCH_SUCCESS,
|
|
|
|
statuses,
|
|
|
|
next,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchPinnedStatusesFail(error) {
|
|
|
|
return {
|
|
|
|
type: PINNED_STATUSES_FETCH_FAIL,
|
|
|
|
error,
|
|
|
|
};
|
|
|
|
};
|