2022-10-11 08:32:31 +00:00
|
|
|
import api, { getLinks } from '../api';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2023-05-07 19:43:25 +00:00
|
|
|
import { importFetchedAccount, importFetchedAccounts } from './importer';
|
2016-09-13 00:24:40 +00:00
|
|
|
|
|
|
|
export const ACCOUNT_FETCH_REQUEST = 'ACCOUNT_FETCH_REQUEST';
|
|
|
|
export const ACCOUNT_FETCH_SUCCESS = 'ACCOUNT_FETCH_SUCCESS';
|
|
|
|
export const ACCOUNT_FETCH_FAIL = 'ACCOUNT_FETCH_FAIL';
|
|
|
|
|
2021-09-26 03:46:13 +00:00
|
|
|
export const ACCOUNT_LOOKUP_REQUEST = 'ACCOUNT_LOOKUP_REQUEST';
|
|
|
|
export const ACCOUNT_LOOKUP_SUCCESS = 'ACCOUNT_LOOKUP_SUCCESS';
|
|
|
|
export const ACCOUNT_LOOKUP_FAIL = 'ACCOUNT_LOOKUP_FAIL';
|
|
|
|
|
2016-09-15 22:21:51 +00:00
|
|
|
export const ACCOUNT_FOLLOW_REQUEST = 'ACCOUNT_FOLLOW_REQUEST';
|
|
|
|
export const ACCOUNT_FOLLOW_SUCCESS = 'ACCOUNT_FOLLOW_SUCCESS';
|
|
|
|
export const ACCOUNT_FOLLOW_FAIL = 'ACCOUNT_FOLLOW_FAIL';
|
|
|
|
|
|
|
|
export const ACCOUNT_UNFOLLOW_REQUEST = 'ACCOUNT_UNFOLLOW_REQUEST';
|
|
|
|
export const ACCOUNT_UNFOLLOW_SUCCESS = 'ACCOUNT_UNFOLLOW_SUCCESS';
|
|
|
|
export const ACCOUNT_UNFOLLOW_FAIL = 'ACCOUNT_UNFOLLOW_FAIL';
|
|
|
|
|
2016-10-03 16:49:52 +00:00
|
|
|
export const ACCOUNT_BLOCK_REQUEST = 'ACCOUNT_BLOCK_REQUEST';
|
|
|
|
export const ACCOUNT_BLOCK_SUCCESS = 'ACCOUNT_BLOCK_SUCCESS';
|
|
|
|
export const ACCOUNT_BLOCK_FAIL = 'ACCOUNT_BLOCK_FAIL';
|
|
|
|
|
|
|
|
export const ACCOUNT_UNBLOCK_REQUEST = 'ACCOUNT_UNBLOCK_REQUEST';
|
|
|
|
export const ACCOUNT_UNBLOCK_SUCCESS = 'ACCOUNT_UNBLOCK_SUCCESS';
|
|
|
|
export const ACCOUNT_UNBLOCK_FAIL = 'ACCOUNT_UNBLOCK_FAIL';
|
|
|
|
|
2017-02-06 01:51:56 +00:00
|
|
|
export const ACCOUNT_MUTE_REQUEST = 'ACCOUNT_MUTE_REQUEST';
|
|
|
|
export const ACCOUNT_MUTE_SUCCESS = 'ACCOUNT_MUTE_SUCCESS';
|
|
|
|
export const ACCOUNT_MUTE_FAIL = 'ACCOUNT_MUTE_FAIL';
|
|
|
|
|
|
|
|
export const ACCOUNT_UNMUTE_REQUEST = 'ACCOUNT_UNMUTE_REQUEST';
|
|
|
|
export const ACCOUNT_UNMUTE_SUCCESS = 'ACCOUNT_UNMUTE_SUCCESS';
|
|
|
|
export const ACCOUNT_UNMUTE_FAIL = 'ACCOUNT_UNMUTE_FAIL';
|
|
|
|
|
2018-08-10 14:25:46 +00:00
|
|
|
export const ACCOUNT_PIN_REQUEST = 'ACCOUNT_PIN_REQUEST';
|
|
|
|
export const ACCOUNT_PIN_SUCCESS = 'ACCOUNT_PIN_SUCCESS';
|
|
|
|
export const ACCOUNT_PIN_FAIL = 'ACCOUNT_PIN_FAIL';
|
|
|
|
|
|
|
|
export const ACCOUNT_UNPIN_REQUEST = 'ACCOUNT_UNPIN_REQUEST';
|
|
|
|
export const ACCOUNT_UNPIN_SUCCESS = 'ACCOUNT_UNPIN_SUCCESS';
|
|
|
|
export const ACCOUNT_UNPIN_FAIL = 'ACCOUNT_UNPIN_FAIL';
|
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
export const FOLLOWERS_FETCH_REQUEST = 'FOLLOWERS_FETCH_REQUEST';
|
|
|
|
export const FOLLOWERS_FETCH_SUCCESS = 'FOLLOWERS_FETCH_SUCCESS';
|
|
|
|
export const FOLLOWERS_FETCH_FAIL = 'FOLLOWERS_FETCH_FAIL';
|
|
|
|
|
2016-11-13 19:42:54 +00:00
|
|
|
export const FOLLOWERS_EXPAND_REQUEST = 'FOLLOWERS_EXPAND_REQUEST';
|
|
|
|
export const FOLLOWERS_EXPAND_SUCCESS = 'FOLLOWERS_EXPAND_SUCCESS';
|
|
|
|
export const FOLLOWERS_EXPAND_FAIL = 'FOLLOWERS_EXPAND_FAIL';
|
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
export const FOLLOWING_FETCH_REQUEST = 'FOLLOWING_FETCH_REQUEST';
|
|
|
|
export const FOLLOWING_FETCH_SUCCESS = 'FOLLOWING_FETCH_SUCCESS';
|
|
|
|
export const FOLLOWING_FETCH_FAIL = 'FOLLOWING_FETCH_FAIL';
|
|
|
|
|
2016-11-13 19:42:54 +00:00
|
|
|
export const FOLLOWING_EXPAND_REQUEST = 'FOLLOWING_EXPAND_REQUEST';
|
|
|
|
export const FOLLOWING_EXPAND_SUCCESS = 'FOLLOWING_EXPAND_SUCCESS';
|
|
|
|
export const FOLLOWING_EXPAND_FAIL = 'FOLLOWING_EXPAND_FAIL';
|
|
|
|
|
2016-10-28 18:05:44 +00:00
|
|
|
export const RELATIONSHIPS_FETCH_REQUEST = 'RELATIONSHIPS_FETCH_REQUEST';
|
|
|
|
export const RELATIONSHIPS_FETCH_SUCCESS = 'RELATIONSHIPS_FETCH_SUCCESS';
|
|
|
|
export const RELATIONSHIPS_FETCH_FAIL = 'RELATIONSHIPS_FETCH_FAIL';
|
|
|
|
|
2016-12-26 20:33:51 +00:00
|
|
|
export const FOLLOW_REQUESTS_FETCH_REQUEST = 'FOLLOW_REQUESTS_FETCH_REQUEST';
|
|
|
|
export const FOLLOW_REQUESTS_FETCH_SUCCESS = 'FOLLOW_REQUESTS_FETCH_SUCCESS';
|
|
|
|
export const FOLLOW_REQUESTS_FETCH_FAIL = 'FOLLOW_REQUESTS_FETCH_FAIL';
|
|
|
|
|
|
|
|
export const FOLLOW_REQUESTS_EXPAND_REQUEST = 'FOLLOW_REQUESTS_EXPAND_REQUEST';
|
|
|
|
export const FOLLOW_REQUESTS_EXPAND_SUCCESS = 'FOLLOW_REQUESTS_EXPAND_SUCCESS';
|
|
|
|
export const FOLLOW_REQUESTS_EXPAND_FAIL = 'FOLLOW_REQUESTS_EXPAND_FAIL';
|
|
|
|
|
|
|
|
export const FOLLOW_REQUEST_AUTHORIZE_REQUEST = 'FOLLOW_REQUEST_AUTHORIZE_REQUEST';
|
|
|
|
export const FOLLOW_REQUEST_AUTHORIZE_SUCCESS = 'FOLLOW_REQUEST_AUTHORIZE_SUCCESS';
|
|
|
|
export const FOLLOW_REQUEST_AUTHORIZE_FAIL = 'FOLLOW_REQUEST_AUTHORIZE_FAIL';
|
|
|
|
|
|
|
|
export const FOLLOW_REQUEST_REJECT_REQUEST = 'FOLLOW_REQUEST_REJECT_REQUEST';
|
|
|
|
export const FOLLOW_REQUEST_REJECT_SUCCESS = 'FOLLOW_REQUEST_REJECT_SUCCESS';
|
|
|
|
export const FOLLOW_REQUEST_REJECT_FAIL = 'FOLLOW_REQUEST_REJECT_FAIL';
|
|
|
|
|
2018-08-20 12:22:19 +00:00
|
|
|
export const PINNED_ACCOUNTS_FETCH_REQUEST = 'PINNED_ACCOUNTS_FETCH_REQUEST';
|
|
|
|
export const PINNED_ACCOUNTS_FETCH_SUCCESS = 'PINNED_ACCOUNTS_FETCH_SUCCESS';
|
|
|
|
export const PINNED_ACCOUNTS_FETCH_FAIL = 'PINNED_ACCOUNTS_FETCH_FAIL';
|
|
|
|
|
2023-05-08 12:02:41 +00:00
|
|
|
export const PINNED_ACCOUNTS_SUGGESTIONS_FETCH_REQUEST = 'PINNED_ACCOUNTS_SUGGESTIONS_FETCH_REQUEST';
|
|
|
|
export const PINNED_ACCOUNTS_SUGGESTIONS_FETCH_SUCCESS = 'PINNED_ACCOUNTS_SUGGESTIONS_FETCH_SUCCESS';
|
|
|
|
export const PINNED_ACCOUNTS_SUGGESTIONS_FETCH_FAIL = 'PINNED_ACCOUNTS_SUGGESTIONS_FETCH_FAIL';
|
|
|
|
|
2018-08-20 12:22:19 +00:00
|
|
|
export const PINNED_ACCOUNTS_EDITOR_SUGGESTIONS_CLEAR = 'PINNED_ACCOUNTS_EDITOR_SUGGESTIONS_CLEAR';
|
|
|
|
export const PINNED_ACCOUNTS_EDITOR_SUGGESTIONS_CHANGE = 'PINNED_ACCOUNTS_EDITOR_SUGGESTIONS_CHANGE';
|
|
|
|
|
|
|
|
export const PINNED_ACCOUNTS_EDITOR_RESET = 'PINNED_ACCOUNTS_EDITOR_RESET';
|
|
|
|
|
|
|
|
|
2022-05-10 07:44:35 +00:00
|
|
|
export const ACCOUNT_REVEAL = 'ACCOUNT_REVEAL';
|
|
|
|
|
2016-09-13 00:24:40 +00:00
|
|
|
export function fetchAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
2017-03-04 21:17:10 +00:00
|
|
|
dispatch(fetchRelationships([id]));
|
|
|
|
|
|
|
|
if (getState().getIn(['accounts', id], null) !== null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-13 00:24:40 +00:00
|
|
|
dispatch(fetchAccountRequest(id));
|
|
|
|
|
2016-10-30 14:06:43 +00:00
|
|
|
api(getState).get(`/api/v1/accounts/${id}`).then(response => {
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccount(response.data));
|
|
|
|
}).then(() => {
|
|
|
|
dispatch(fetchAccountSuccess());
|
2016-09-13 00:24:40 +00:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchAccountFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-13 00:24:40 +00:00
|
|
|
|
2021-09-26 03:46:13 +00:00
|
|
|
export const lookupAccount = acct => (dispatch, getState) => {
|
|
|
|
dispatch(lookupAccountRequest(acct));
|
|
|
|
|
|
|
|
api(getState).get('/api/v1/accounts/lookup', { params: { acct } }).then(response => {
|
|
|
|
dispatch(fetchRelationships([response.data.id]));
|
|
|
|
dispatch(importFetchedAccount(response.data));
|
|
|
|
dispatch(lookupAccountSuccess());
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(lookupAccountFail(acct, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export const lookupAccountRequest = (acct) => ({
|
|
|
|
type: ACCOUNT_LOOKUP_REQUEST,
|
|
|
|
acct,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const lookupAccountSuccess = () => ({
|
|
|
|
type: ACCOUNT_LOOKUP_SUCCESS,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const lookupAccountFail = (acct, error) => ({
|
|
|
|
type: ACCOUNT_LOOKUP_FAIL,
|
|
|
|
acct,
|
|
|
|
error,
|
|
|
|
skipAlert: true,
|
|
|
|
});
|
|
|
|
|
2016-09-13 00:24:40 +00:00
|
|
|
export function fetchAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_FETCH_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-09-13 00:24:40 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-13 00:24:40 +00:00
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
export function fetchAccountSuccess() {
|
2016-09-13 00:24:40 +00:00
|
|
|
return {
|
|
|
|
type: ACCOUNT_FETCH_SUCCESS,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-13 00:24:40 +00:00
|
|
|
|
|
|
|
export function fetchAccountFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_FETCH_FAIL,
|
2016-11-13 19:42:54 +00:00
|
|
|
id,
|
2017-02-26 22:06:27 +00:00
|
|
|
error,
|
2017-05-20 15:31:47 +00:00
|
|
|
skipAlert: true,
|
2016-09-13 00:24:40 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2020-09-18 15:26:45 +00:00
|
|
|
export function followAccount(id, options = { reblogs: true }) {
|
2016-09-15 22:21:51 +00:00
|
|
|
return (dispatch, getState) => {
|
2017-11-12 03:42:22 +00:00
|
|
|
const alreadyFollowing = getState().getIn(['relationships', id, 'following']);
|
2018-11-08 20:05:42 +00:00
|
|
|
const locked = getState().getIn(['accounts', id, 'locked'], false);
|
|
|
|
|
|
|
|
dispatch(followAccountRequest(id, locked));
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2020-09-18 15:26:45 +00:00
|
|
|
api(getState).post(`/api/v1/accounts/${id}/follow`, options).then(response => {
|
2017-11-12 03:42:22 +00:00
|
|
|
dispatch(followAccountSuccess(response.data, alreadyFollowing));
|
2016-09-15 22:21:51 +00:00
|
|
|
}).catch(error => {
|
2018-11-08 20:05:42 +00:00
|
|
|
dispatch(followAccountFail(error, locked));
|
2016-09-15 22:21:51 +00:00
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
|
|
|
export function unfollowAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(unfollowAccountRequest(id));
|
|
|
|
|
2016-09-27 14:58:23 +00:00
|
|
|
api(getState).post(`/api/v1/accounts/${id}/unfollow`).then(response => {
|
2017-10-13 14:44:02 +00:00
|
|
|
dispatch(unfollowAccountSuccess(response.data, getState().get('statuses')));
|
2016-09-15 22:21:51 +00:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(unfollowAccountFail(error));
|
|
|
|
});
|
2017-05-20 15:31:47 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2018-11-08 20:05:42 +00:00
|
|
|
export function followAccountRequest(id, locked) {
|
2016-09-15 22:21:51 +00:00
|
|
|
return {
|
|
|
|
type: ACCOUNT_FOLLOW_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2018-11-08 20:05:42 +00:00
|
|
|
locked,
|
|
|
|
skipLoading: true,
|
2016-09-15 22:21:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2017-11-12 03:42:22 +00:00
|
|
|
export function followAccountSuccess(relationship, alreadyFollowing) {
|
2016-09-15 22:21:51 +00:00
|
|
|
return {
|
|
|
|
type: ACCOUNT_FOLLOW_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
relationship,
|
2017-11-12 03:42:22 +00:00
|
|
|
alreadyFollowing,
|
2018-11-08 20:05:42 +00:00
|
|
|
skipLoading: true,
|
2016-09-15 22:21:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2018-11-08 20:05:42 +00:00
|
|
|
export function followAccountFail(error, locked) {
|
2016-09-15 22:21:51 +00:00
|
|
|
return {
|
|
|
|
type: ACCOUNT_FOLLOW_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2018-11-08 20:05:42 +00:00
|
|
|
locked,
|
|
|
|
skipLoading: true,
|
2016-09-15 22:21:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
|
|
|
export function unfollowAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNFOLLOW_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2018-11-08 20:05:42 +00:00
|
|
|
skipLoading: true,
|
2016-09-15 22:21:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
2017-10-13 14:44:02 +00:00
|
|
|
export function unfollowAccountSuccess(relationship, statuses) {
|
2016-09-15 22:21:51 +00:00
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNFOLLOW_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
relationship,
|
2017-10-13 14:44:02 +00:00
|
|
|
statuses,
|
2018-11-08 20:05:42 +00:00
|
|
|
skipLoading: true,
|
2016-09-15 22:21:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-15 22:21:51 +00:00
|
|
|
|
|
|
|
export function unfollowAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNFOLLOW_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2018-11-08 20:05:42 +00:00
|
|
|
skipLoading: true,
|
2016-09-15 22:21:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-09-18 16:18:46 +00:00
|
|
|
|
2016-10-03 16:49:52 +00:00
|
|
|
export function blockAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(blockAccountRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/accounts/${id}/block`).then(response => {
|
2016-11-23 21:57:57 +00:00
|
|
|
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
|
|
|
|
dispatch(blockAccountSuccess(response.data, getState().get('statuses')));
|
2016-10-03 16:49:52 +00:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(blockAccountFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-03 16:49:52 +00:00
|
|
|
|
|
|
|
export function unblockAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(unblockAccountRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/accounts/${id}/unblock`).then(response => {
|
|
|
|
dispatch(unblockAccountSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(unblockAccountFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-03 16:49:52 +00:00
|
|
|
|
|
|
|
export function blockAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_BLOCK_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-10-03 16:49:52 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-03 16:49:52 +00:00
|
|
|
|
2016-11-23 21:57:57 +00:00
|
|
|
export function blockAccountSuccess(relationship, statuses) {
|
2016-10-03 16:49:52 +00:00
|
|
|
return {
|
|
|
|
type: ACCOUNT_BLOCK_SUCCESS,
|
2016-11-23 21:57:57 +00:00
|
|
|
relationship,
|
2017-05-20 15:31:47 +00:00
|
|
|
statuses,
|
2016-10-03 16:49:52 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-03 16:49:52 +00:00
|
|
|
|
|
|
|
export function blockAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_BLOCK_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-10-03 16:49:52 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-03 16:49:52 +00:00
|
|
|
|
|
|
|
export function unblockAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNBLOCK_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-10-03 16:49:52 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-03 16:49:52 +00:00
|
|
|
|
|
|
|
export function unblockAccountSuccess(relationship) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNBLOCK_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
relationship,
|
2016-10-03 16:49:52 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-03 16:49:52 +00:00
|
|
|
|
|
|
|
export function unblockAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNBLOCK_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-10-03 16:49:52 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
2017-02-06 01:51:56 +00:00
|
|
|
|
2020-10-12 23:01:14 +00:00
|
|
|
export function muteAccount(id, notifications, duration=0) {
|
2017-02-06 01:51:56 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(muteAccountRequest(id));
|
|
|
|
|
2020-10-12 23:01:14 +00:00
|
|
|
api(getState).post(`/api/v1/accounts/${id}/mute`, { notifications, duration }).then(response => {
|
2017-02-06 01:51:56 +00:00
|
|
|
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
|
|
|
|
dispatch(muteAccountSuccess(response.data, getState().get('statuses')));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(muteAccountFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
export function unmuteAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(unmuteAccountRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/accounts/${id}/unmute`).then(response => {
|
|
|
|
dispatch(unmuteAccountSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(unmuteAccountFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
export function muteAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_MUTE_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2017-02-06 01:51:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
export function muteAccountSuccess(relationship, statuses) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_MUTE_SUCCESS,
|
|
|
|
relationship,
|
2017-05-20 15:31:47 +00:00
|
|
|
statuses,
|
2017-02-06 01:51:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
export function muteAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_MUTE_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2017-02-06 01:51:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
export function unmuteAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNMUTE_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2017-02-06 01:51:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
export function unmuteAccountSuccess(relationship) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNMUTE_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
relationship,
|
2017-02-06 01:51:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
export function unmuteAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNMUTE_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2017-02-06 01:51:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2017-02-06 01:51:56 +00:00
|
|
|
|
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
export function fetchFollowers(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchFollowersRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/accounts/${id}/followers`).then(response => {
|
2016-11-13 19:52:11 +00:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2016-11-13 19:42:54 +00:00
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2016-11-13 19:52:11 +00:00
|
|
|
dispatch(fetchFollowersSuccess(id, response.data, next ? next.uri : null));
|
2016-10-28 18:05:44 +00:00
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
2016-10-27 19:59:56 +00:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchFollowersFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
|
|
|
export function fetchFollowersRequest(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWERS_FETCH_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-10-27 19:59:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
2016-11-13 19:52:11 +00:00
|
|
|
export function fetchFollowersSuccess(id, accounts, next) {
|
2016-10-27 19:59:56 +00:00
|
|
|
return {
|
|
|
|
type: FOLLOWERS_FETCH_SUCCESS,
|
2016-11-13 19:42:54 +00:00
|
|
|
id,
|
|
|
|
accounts,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2016-10-27 19:59:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
|
|
|
export function fetchFollowersFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWERS_FETCH_FAIL,
|
2016-11-13 19:42:54 +00:00
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2020-03-28 16:59:45 +00:00
|
|
|
skipNotFound: true,
|
2016-11-13 19:42:54 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
export function expandFollowers(id) {
|
|
|
|
return (dispatch, getState) => {
|
2016-11-13 19:52:11 +00:00
|
|
|
const url = getState().getIn(['user_lists', 'followers', id, 'next']);
|
|
|
|
|
|
|
|
if (url === null) {
|
|
|
|
return;
|
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
dispatch(expandFollowersRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(url).then(response => {
|
2016-11-13 19:52:11 +00:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2016-11-13 19:42:54 +00:00
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2016-11-13 19:52:11 +00:00
|
|
|
dispatch(expandFollowersSuccess(id, response.data, next ? next.uri : null));
|
2016-11-13 19:42:54 +00:00
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandFollowersFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
export function expandFollowersRequest(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWERS_EXPAND_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-11-13 19:42:54 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
2016-11-13 19:52:11 +00:00
|
|
|
export function expandFollowersSuccess(id, accounts, next) {
|
2016-11-13 19:42:54 +00:00
|
|
|
return {
|
|
|
|
type: FOLLOWERS_EXPAND_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2016-11-13 19:42:54 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
export function expandFollowersFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWERS_EXPAND_FAIL,
|
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-10-27 19:59:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
|
|
|
export function fetchFollowing(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchFollowingRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/accounts/${id}/following`).then(response => {
|
2016-11-13 19:52:11 +00:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2016-11-13 19:52:11 +00:00
|
|
|
dispatch(fetchFollowingSuccess(id, response.data, next ? next.uri : null));
|
2016-10-28 18:05:44 +00:00
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
2016-10-27 19:59:56 +00:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchFollowingFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
|
|
|
export function fetchFollowingRequest(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWING_FETCH_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-10-27 19:59:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
2016-11-13 20:02:10 +00:00
|
|
|
export function fetchFollowingSuccess(id, accounts, next) {
|
2016-10-27 19:59:56 +00:00
|
|
|
return {
|
|
|
|
type: FOLLOWING_FETCH_SUCCESS,
|
2016-11-13 19:42:54 +00:00
|
|
|
id,
|
2016-11-13 20:02:10 +00:00
|
|
|
accounts,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2016-10-27 19:59:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
|
|
|
|
export function fetchFollowingFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWING_FETCH_FAIL,
|
2016-11-13 19:42:54 +00:00
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2020-03-28 16:59:45 +00:00
|
|
|
skipNotFound: true,
|
2016-11-13 19:42:54 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
export function expandFollowing(id) {
|
|
|
|
return (dispatch, getState) => {
|
2016-11-13 19:52:11 +00:00
|
|
|
const url = getState().getIn(['user_lists', 'following', id, 'next']);
|
|
|
|
|
|
|
|
if (url === null) {
|
|
|
|
return;
|
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
dispatch(expandFollowingRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(url).then(response => {
|
2016-11-13 19:52:11 +00:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2016-11-13 19:42:54 +00:00
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2016-11-13 19:52:11 +00:00
|
|
|
dispatch(expandFollowingSuccess(id, response.data, next ? next.uri : null));
|
2016-11-13 19:42:54 +00:00
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandFollowingFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
export function expandFollowingRequest(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWING_EXPAND_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-11-13 19:42:54 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
2016-11-13 19:52:11 +00:00
|
|
|
export function expandFollowingSuccess(id, accounts, next) {
|
2016-11-13 19:42:54 +00:00
|
|
|
return {
|
|
|
|
type: FOLLOWING_EXPAND_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2016-11-13 19:42:54 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-11-13 19:42:54 +00:00
|
|
|
|
|
|
|
export function expandFollowingFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOWING_EXPAND_FAIL,
|
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-10-27 19:59:56 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-28 18:05:44 +00:00
|
|
|
|
2017-04-02 20:02:38 +00:00
|
|
|
export function fetchRelationships(accountIds) {
|
2016-10-28 18:05:44 +00:00
|
|
|
return (dispatch, getState) => {
|
2022-09-29 02:39:33 +00:00
|
|
|
const state = getState();
|
|
|
|
const loadedRelationships = state.get('relationships');
|
2017-04-02 20:02:38 +00:00
|
|
|
const newAccountIds = accountIds.filter(id => loadedRelationships.get(id, null) === null);
|
2022-09-29 02:39:33 +00:00
|
|
|
const signedIn = !!state.getIn(['meta', 'me']);
|
2017-04-02 20:02:38 +00:00
|
|
|
|
2022-09-29 02:39:33 +00:00
|
|
|
if (!signedIn || newAccountIds.length === 0) {
|
2017-01-15 13:41:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-02 20:02:38 +00:00
|
|
|
dispatch(fetchRelationshipsRequest(newAccountIds));
|
2016-10-28 18:05:44 +00:00
|
|
|
|
2017-04-02 20:02:38 +00:00
|
|
|
api(getState).get(`/api/v1/accounts/relationships?${newAccountIds.map(id => `id[]=${id}`).join('&')}`).then(response => {
|
2016-10-28 18:05:44 +00:00
|
|
|
dispatch(fetchRelationshipsSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchRelationshipsFail(error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-28 18:05:44 +00:00
|
|
|
|
|
|
|
export function fetchRelationshipsRequest(ids) {
|
|
|
|
return {
|
|
|
|
type: RELATIONSHIPS_FETCH_REQUEST,
|
2017-01-19 10:23:24 +00:00
|
|
|
ids,
|
2017-05-20 15:31:47 +00:00
|
|
|
skipLoading: true,
|
2016-10-28 18:05:44 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-28 18:05:44 +00:00
|
|
|
|
|
|
|
export function fetchRelationshipsSuccess(relationships) {
|
|
|
|
return {
|
|
|
|
type: RELATIONSHIPS_FETCH_SUCCESS,
|
2017-01-19 10:23:24 +00:00
|
|
|
relationships,
|
2017-05-20 15:31:47 +00:00
|
|
|
skipLoading: true,
|
2016-10-28 18:05:44 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-10-28 18:05:44 +00:00
|
|
|
|
|
|
|
export function fetchRelationshipsFail(error) {
|
|
|
|
return {
|
|
|
|
type: RELATIONSHIPS_FETCH_FAIL,
|
2017-01-19 10:23:24 +00:00
|
|
|
error,
|
2017-05-20 15:31:47 +00:00
|
|
|
skipLoading: true,
|
2020-03-28 16:59:45 +00:00
|
|
|
skipNotFound: true,
|
2016-10-28 18:05:44 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function fetchFollowRequests() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchFollowRequestsRequest());
|
|
|
|
|
|
|
|
api(getState).get('/api/v1/follow_requests').then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2017-05-20 15:31:47 +00:00
|
|
|
dispatch(fetchFollowRequestsSuccess(response.data, next ? next.uri : null));
|
2016-12-26 20:33:51 +00:00
|
|
|
}).catch(error => dispatch(fetchFollowRequestsFail(error)));
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function fetchFollowRequestsRequest() {
|
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: FOLLOW_REQUESTS_FETCH_REQUEST,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function fetchFollowRequestsSuccess(accounts, next) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUESTS_FETCH_SUCCESS,
|
|
|
|
accounts,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function fetchFollowRequestsFail(error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUESTS_FETCH_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function expandFollowRequests() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const url = getState().getIn(['user_lists', 'follow_requests', 'next']);
|
|
|
|
|
|
|
|
if (url === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(expandFollowRequestsRequest());
|
|
|
|
|
|
|
|
api(getState).get(url).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2017-05-20 15:31:47 +00:00
|
|
|
dispatch(expandFollowRequestsSuccess(response.data, next ? next.uri : null));
|
2016-12-26 20:33:51 +00:00
|
|
|
}).catch(error => dispatch(expandFollowRequestsFail(error)));
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function expandFollowRequestsRequest() {
|
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: FOLLOW_REQUESTS_EXPAND_REQUEST,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function expandFollowRequestsSuccess(accounts, next) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUESTS_EXPAND_SUCCESS,
|
|
|
|
accounts,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function expandFollowRequestsFail(error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUESTS_EXPAND_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function authorizeFollowRequest(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(authorizeFollowRequestRequest(id));
|
|
|
|
|
|
|
|
api(getState)
|
|
|
|
.post(`/api/v1/follow_requests/${id}/authorize`)
|
2017-06-23 14:05:04 +00:00
|
|
|
.then(() => dispatch(authorizeFollowRequestSuccess(id)))
|
2016-12-26 20:33:51 +00:00
|
|
|
.catch(error => dispatch(authorizeFollowRequestFail(id, error)));
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function authorizeFollowRequestRequest(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUEST_AUTHORIZE_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function authorizeFollowRequestSuccess(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function authorizeFollowRequestFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUEST_AUTHORIZE_FAIL,
|
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
export function rejectFollowRequest(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(rejectFollowRequestRequest(id));
|
|
|
|
|
|
|
|
api(getState)
|
|
|
|
.post(`/api/v1/follow_requests/${id}/reject`)
|
2017-06-23 14:05:04 +00:00
|
|
|
.then(() => dispatch(rejectFollowRequestSuccess(id)))
|
2016-12-26 20:33:51 +00:00
|
|
|
.catch(error => dispatch(rejectFollowRequestFail(id, error)));
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function rejectFollowRequestRequest(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUEST_REJECT_REQUEST,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function rejectFollowRequestSuccess(id) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUEST_REJECT_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
id,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
export function rejectFollowRequestFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: FOLLOW_REQUEST_REJECT_FAIL,
|
|
|
|
id,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2016-12-26 20:33:51 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function pinAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(pinAccountRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/accounts/${id}/pin`).then(response => {
|
|
|
|
dispatch(pinAccountSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(pinAccountFail(error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function unpinAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(unpinAccountRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/accounts/${id}/unpin`).then(response => {
|
|
|
|
dispatch(unpinAccountSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(unpinAccountFail(error));
|
|
|
|
});
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function pinAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_PIN_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function pinAccountSuccess(relationship) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_PIN_SUCCESS,
|
|
|
|
relationship,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function pinAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_PIN_FAIL,
|
|
|
|
error,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function unpinAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNPIN_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function unpinAccountSuccess(relationship) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNPIN_SUCCESS,
|
|
|
|
relationship,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-10 14:25:46 +00:00
|
|
|
|
|
|
|
export function unpinAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNPIN_FAIL,
|
|
|
|
error,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
2022-05-10 07:44:35 +00:00
|
|
|
export const revealAccount = id => ({
|
|
|
|
type: ACCOUNT_REVEAL,
|
|
|
|
id,
|
|
|
|
});
|
|
|
|
|
2018-08-20 12:22:19 +00:00
|
|
|
export function fetchPinnedAccounts() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchPinnedAccountsRequest());
|
|
|
|
|
2023-02-03 19:52:07 +00:00
|
|
|
api(getState).get('/api/v1/endorsements', { params: { limit: 0 } }).then(response => {
|
2019-03-05 19:15:43 +00:00
|
|
|
dispatch(importFetchedAccounts(response.data));
|
|
|
|
dispatch(fetchPinnedAccountsSuccess(response.data));
|
|
|
|
}).catch(err => dispatch(fetchPinnedAccountsFail(err)));
|
2018-08-20 12:22:19 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
|
|
|
export function fetchPinnedAccountsRequest() {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_FETCH_REQUEST,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
|
|
|
export function fetchPinnedAccountsSuccess(accounts, next) {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_FETCH_SUCCESS,
|
|
|
|
accounts,
|
|
|
|
next,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
|
|
|
export function fetchPinnedAccountsFail(error) {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_FETCH_FAIL,
|
|
|
|
error,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
|
|
|
export function fetchPinnedAccountsSuggestions(q) {
|
|
|
|
return (dispatch, getState) => {
|
2023-05-08 12:02:41 +00:00
|
|
|
dispatch(fetchPinnedAccountsSuggestionsRequest());
|
|
|
|
|
2018-08-20 12:22:19 +00:00
|
|
|
const params = {
|
|
|
|
q,
|
|
|
|
resolve: false,
|
|
|
|
limit: 4,
|
|
|
|
following: true,
|
|
|
|
};
|
|
|
|
|
2019-03-05 19:15:43 +00:00
|
|
|
api(getState).get('/api/v1/accounts/search', { params }).then(response => {
|
|
|
|
dispatch(importFetchedAccounts(response.data));
|
2023-05-08 12:02:41 +00:00
|
|
|
dispatch(fetchPinnedAccountsSuggestionsSuccess(q, response.data));
|
|
|
|
}).catch(err => dispatch(fetchPinnedAccountsSuggestionsFail(err)));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function fetchPinnedAccountsSuggestionsRequest() {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_SUGGESTIONS_FETCH_REQUEST,
|
2018-08-20 12:22:19 +00:00
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
2023-05-08 12:02:41 +00:00
|
|
|
export function fetchPinnedAccountsSuggestionsSuccess(query, accounts) {
|
2018-08-20 12:22:19 +00:00
|
|
|
return {
|
2023-05-08 12:02:41 +00:00
|
|
|
type: PINNED_ACCOUNTS_SUGGESTIONS_FETCH_SUCCESS,
|
2018-08-20 12:22:19 +00:00
|
|
|
query,
|
|
|
|
accounts,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
2023-05-08 12:02:41 +00:00
|
|
|
export function fetchPinnedAccountsSuggestionsFail(error) {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_SUGGESTIONS_FETCH_FAIL,
|
|
|
|
error,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-08-20 12:22:19 +00:00
|
|
|
export function clearPinnedAccountsSuggestions() {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_EDITOR_SUGGESTIONS_CLEAR,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
|
|
|
export function changePinnedAccountsSuggestions(value) {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_EDITOR_SUGGESTIONS_CHANGE,
|
|
|
|
value,
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|
|
|
|
export function resetPinnedAccountsEditor() {
|
|
|
|
return {
|
|
|
|
type: PINNED_ACCOUNTS_EDITOR_RESET,
|
|
|
|
};
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|
2018-08-20 12:22:19 +00:00
|
|
|
|