2020-09-14 20:07:33 -07:00
|
|
|
import api from '../api';
|
|
|
|
|
|
|
|
export const IMPORT_FOLLOWS_REQUEST = 'IMPORT_FOLLOWS_REQUEST';
|
|
|
|
export const IMPORT_FOLLOWS_SUCCESS = 'IMPORT_FOLLOWS_SUCCESS';
|
|
|
|
export const IMPORT_FOLLOWS_FAIL = 'IMPORT_FOLLOWS_FAIL';
|
|
|
|
|
2020-09-17 15:33:18 -07:00
|
|
|
function whiteSpace(params) {
|
|
|
|
const follows = params.replace(/\n/g, ' ');
|
|
|
|
return follows;
|
|
|
|
};
|
|
|
|
|
2020-09-14 20:07:33 -07:00
|
|
|
export function importFollows(params) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({ type: IMPORT_FOLLOWS_REQUEST });
|
|
|
|
return api(getState)
|
2020-09-17 15:33:18 -07:00
|
|
|
.post('/api/pleroma/follow_import', whiteSpace(params))
|
2020-09-14 20:07:33 -07:00
|
|
|
.then(response => {
|
|
|
|
dispatch({ type: IMPORT_FOLLOWS_SUCCESS, config: response.data });
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch({ type: IMPORT_FOLLOWS_FAIL, error });
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|