2017-05-20 15:31:47 +00:00
|
|
|
import api from '../api';
|
2018-03-24 12:06:27 +00:00
|
|
|
import { importFetchedAccounts, importFetchedStatus } from './importer';
|
2016-09-01 11:21:48 +00:00
|
|
|
|
|
|
|
export const REBLOG_REQUEST = 'REBLOG_REQUEST';
|
|
|
|
export const REBLOG_SUCCESS = 'REBLOG_SUCCESS';
|
|
|
|
export const REBLOG_FAIL = 'REBLOG_FAIL';
|
|
|
|
|
|
|
|
export const FAVOURITE_REQUEST = 'FAVOURITE_REQUEST';
|
|
|
|
export const FAVOURITE_SUCCESS = 'FAVOURITE_SUCCESS';
|
|
|
|
export const FAVOURITE_FAIL = 'FAVOURITE_FAIL';
|
|
|
|
|
2016-10-02 13:14:26 +00:00
|
|
|
export const UNREBLOG_REQUEST = 'UNREBLOG_REQUEST';
|
|
|
|
export const UNREBLOG_SUCCESS = 'UNREBLOG_SUCCESS';
|
|
|
|
export const UNREBLOG_FAIL = 'UNREBLOG_FAIL';
|
|
|
|
|
|
|
|
export const UNFAVOURITE_REQUEST = 'UNFAVOURITE_REQUEST';
|
|
|
|
export const UNFAVOURITE_SUCCESS = 'UNFAVOURITE_SUCCESS';
|
|
|
|
export const UNFAVOURITE_FAIL = 'UNFAVOURITE_FAIL';
|
|
|
|
|
2016-11-03 19:16:14 +00:00
|
|
|
export const REBLOGS_FETCH_REQUEST = 'REBLOGS_FETCH_REQUEST';
|
|
|
|
export const REBLOGS_FETCH_SUCCESS = 'REBLOGS_FETCH_SUCCESS';
|
|
|
|
export const REBLOGS_FETCH_FAIL = 'REBLOGS_FETCH_FAIL';
|
|
|
|
|
2016-11-04 11:48:53 +00:00
|
|
|
export const FAVOURITES_FETCH_REQUEST = 'FAVOURITES_FETCH_REQUEST';
|
|
|
|
export const FAVOURITES_FETCH_SUCCESS = 'FAVOURITES_FETCH_SUCCESS';
|
|
|
|
export const FAVOURITES_FETCH_FAIL = 'FAVOURITES_FETCH_FAIL';
|
|
|
|
|
2017-08-24 23:41:18 +00:00
|
|
|
export const PIN_REQUEST = 'PIN_REQUEST';
|
|
|
|
export const PIN_SUCCESS = 'PIN_SUCCESS';
|
|
|
|
export const PIN_FAIL = 'PIN_FAIL';
|
|
|
|
|
|
|
|
export const UNPIN_REQUEST = 'UNPIN_REQUEST';
|
|
|
|
export const UNPIN_SUCCESS = 'UNPIN_SUCCESS';
|
|
|
|
export const UNPIN_FAIL = 'UNPIN_FAIL';
|
|
|
|
|
2016-09-01 11:21:48 +00:00
|
|
|
export function reblog(status) {
|
|
|
|
return function (dispatch, getState) {
|
|
|
|
dispatch(reblogRequest(status));
|
|
|
|
|
2016-09-27 14:58:23 +00:00
|
|
|
api(getState).post(`/api/v1/statuses/${status.get('id')}/reblog`).then(function (response) {
|
2016-09-01 12:12:11 +00:00
|
|
|
// The reblog API method returns a new status wrapped around the original. In this case we are only
|
|
|
|
// interested in how the original is modified, hence passing it skipping the wrapper
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatus(response.data.reblog));
|
|
|
|
dispatch(reblogSuccess(status));
|
2016-09-01 11:21:48 +00:00
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(reblogFail(status, error));
|
|
|
|
});
|
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-01 11:21:48 +00:00
|
|
|
|
2016-09-26 21:55:21 +00:00
|
|
|
export function unreblog(status) {
|
|
|
|
return (dispatch, getState) => {
|
2016-10-02 13:14:26 +00:00
|
|
|
dispatch(unreblogRequest(status));
|
|
|
|
|
2016-09-27 14:58:23 +00:00
|
|
|
api(getState).post(`/api/v1/statuses/${status.get('id')}/unreblog`).then(response => {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatus(response.data));
|
|
|
|
dispatch(unreblogSuccess(status));
|
2016-09-26 21:55:21 +00:00
|
|
|
}).catch(error => {
|
2016-10-02 13:14:26 +00:00
|
|
|
dispatch(unreblogFail(status, error));
|
2016-09-26 21:55:21 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-01 11:21:48 +00:00
|
|
|
export function reblogRequest(status) {
|
|
|
|
return {
|
|
|
|
type: REBLOG_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-09-01 11:21:48 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-01 11:21:48 +00:00
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
export function reblogSuccess(status) {
|
2016-09-01 11:21:48 +00:00
|
|
|
return {
|
|
|
|
type: REBLOG_SUCCESS,
|
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-09-01 11:21:48 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-01 11:21:48 +00:00
|
|
|
|
|
|
|
export function reblogFail(status, error) {
|
|
|
|
return {
|
|
|
|
type: REBLOG_FAIL,
|
|
|
|
status: status,
|
2017-05-20 15:31:47 +00:00
|
|
|
error: error,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-09-01 11:21:48 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-01 11:21:48 +00:00
|
|
|
|
2016-10-02 13:14:26 +00:00
|
|
|
export function unreblogRequest(status) {
|
|
|
|
return {
|
|
|
|
type: UNREBLOG_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-10-02 13:14:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
export function unreblogSuccess(status) {
|
2016-10-02 13:14:26 +00:00
|
|
|
return {
|
|
|
|
type: UNREBLOG_SUCCESS,
|
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-10-02 13:14:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unreblogFail(status, error) {
|
|
|
|
return {
|
|
|
|
type: UNREBLOG_FAIL,
|
|
|
|
status: status,
|
2017-05-20 15:31:47 +00:00
|
|
|
error: error,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-10-02 13:14:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-01 11:21:48 +00:00
|
|
|
export function favourite(status) {
|
|
|
|
return function (dispatch, getState) {
|
|
|
|
dispatch(favouriteRequest(status));
|
|
|
|
|
2016-09-27 14:58:23 +00:00
|
|
|
api(getState).post(`/api/v1/statuses/${status.get('id')}/favourite`).then(function (response) {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatus(response.data));
|
|
|
|
dispatch(favouriteSuccess(status));
|
2016-09-01 11:21:48 +00:00
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(favouriteFail(status, error));
|
|
|
|
});
|
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-01 11:21:48 +00:00
|
|
|
|
2016-09-26 21:55:21 +00:00
|
|
|
export function unfavourite(status) {
|
|
|
|
return (dispatch, getState) => {
|
2016-10-02 13:14:26 +00:00
|
|
|
dispatch(unfavouriteRequest(status));
|
|
|
|
|
2016-09-27 14:58:23 +00:00
|
|
|
api(getState).post(`/api/v1/statuses/${status.get('id')}/unfavourite`).then(response => {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatus(response.data));
|
|
|
|
dispatch(unfavouriteSuccess(status));
|
2016-09-26 21:55:21 +00:00
|
|
|
}).catch(error => {
|
2016-10-02 13:14:26 +00:00
|
|
|
dispatch(unfavouriteFail(status, error));
|
2016-09-26 21:55:21 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-01 11:21:48 +00:00
|
|
|
export function favouriteRequest(status) {
|
|
|
|
return {
|
|
|
|
type: FAVOURITE_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-09-01 11:21:48 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-01 11:21:48 +00:00
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
export function favouriteSuccess(status) {
|
2016-09-01 11:21:48 +00:00
|
|
|
return {
|
|
|
|
type: FAVOURITE_SUCCESS,
|
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-09-01 11:21:48 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-09-01 11:21:48 +00:00
|
|
|
|
|
|
|
export function favouriteFail(status, error) {
|
|
|
|
return {
|
|
|
|
type: FAVOURITE_FAIL,
|
|
|
|
status: status,
|
2017-05-20 15:31:47 +00:00
|
|
|
error: error,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-09-01 11:21:48 +00:00
|
|
|
};
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
2016-10-02 13:14:26 +00:00
|
|
|
|
|
|
|
export function unfavouriteRequest(status) {
|
|
|
|
return {
|
|
|
|
type: UNFAVOURITE_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-10-02 13:14:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
export function unfavouriteSuccess(status) {
|
2016-10-02 13:14:26 +00:00
|
|
|
return {
|
|
|
|
type: UNFAVOURITE_SUCCESS,
|
|
|
|
status: status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-10-02 13:14:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unfavouriteFail(status, error) {
|
|
|
|
return {
|
|
|
|
type: UNFAVOURITE_FAIL,
|
|
|
|
status: status,
|
2017-05-20 15:31:47 +00:00
|
|
|
error: error,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2016-10-02 13:14:26 +00:00
|
|
|
};
|
|
|
|
};
|
2016-11-03 19:16:14 +00:00
|
|
|
|
|
|
|
export function fetchReblogs(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchReblogsRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/statuses/${id}/reblogged_by`).then(response => {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2016-11-03 19:16:14 +00:00
|
|
|
dispatch(fetchReblogsSuccess(id, response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchReblogsFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchReblogsRequest(id) {
|
|
|
|
return {
|
|
|
|
type: REBLOGS_FETCH_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-11-03 19:16:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchReblogsSuccess(id, accounts) {
|
|
|
|
return {
|
|
|
|
type: REBLOGS_FETCH_SUCCESS,
|
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
accounts,
|
2016-11-03 19:16:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchReblogsFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: REBLOGS_FETCH_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-11-03 19:16:14 +00:00
|
|
|
};
|
|
|
|
};
|
2016-11-04 12:39:24 +00:00
|
|
|
|
|
|
|
export function fetchFavourites(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchFavouritesRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/statuses/${id}/favourited_by`).then(response => {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2016-11-04 12:39:24 +00:00
|
|
|
dispatch(fetchFavouritesSuccess(id, response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchFavouritesFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchFavouritesRequest(id) {
|
|
|
|
return {
|
|
|
|
type: FAVOURITES_FETCH_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-11-04 12:39:24 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchFavouritesSuccess(id, accounts) {
|
|
|
|
return {
|
|
|
|
type: FAVOURITES_FETCH_SUCCESS,
|
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
accounts,
|
2016-11-04 12:39:24 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchFavouritesFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: FAVOURITES_FETCH_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-11-04 12:39:24 +00:00
|
|
|
};
|
|
|
|
};
|
2017-08-24 23:41:18 +00:00
|
|
|
|
|
|
|
export function pin(status) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(pinRequest(status));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/statuses/${status.get('id')}/pin`).then(response => {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatus(response.data));
|
|
|
|
dispatch(pinSuccess(status));
|
2017-08-24 23:41:18 +00:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(pinFail(status, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function pinRequest(status) {
|
|
|
|
return {
|
|
|
|
type: PIN_REQUEST,
|
|
|
|
status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2017-08-24 23:41:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
export function pinSuccess(status) {
|
2017-08-24 23:41:18 +00:00
|
|
|
return {
|
|
|
|
type: PIN_SUCCESS,
|
|
|
|
status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2017-08-24 23:41:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function pinFail(status, error) {
|
|
|
|
return {
|
|
|
|
type: PIN_FAIL,
|
|
|
|
status,
|
|
|
|
error,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2017-08-24 23:41:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unpin (status) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(unpinRequest(status));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/statuses/${status.get('id')}/unpin`).then(response => {
|
2018-03-24 12:06:27 +00:00
|
|
|
dispatch(importFetchedStatus(response.data));
|
|
|
|
dispatch(unpinSuccess(status));
|
2017-08-24 23:41:18 +00:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(unpinFail(status, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unpinRequest(status) {
|
|
|
|
return {
|
|
|
|
type: UNPIN_REQUEST,
|
|
|
|
status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2017-08-24 23:41:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
export function unpinSuccess(status) {
|
2017-08-24 23:41:18 +00:00
|
|
|
return {
|
|
|
|
type: UNPIN_SUCCESS,
|
|
|
|
status,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2017-08-24 23:41:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unpinFail(status, error) {
|
|
|
|
return {
|
|
|
|
type: UNPIN_FAIL,
|
|
|
|
status,
|
|
|
|
error,
|
2018-03-13 13:30:01 +00:00
|
|
|
skipLoading: true,
|
2017-08-24 23:41:18 +00:00
|
|
|
};
|
|
|
|
};
|