Merge commit '2c5ab8f647841ea8075ece50ccc9e12c21af8720' into glitch-soc/merge-upstream
commit
22d12229b2
|
@ -5,8 +5,8 @@ import api from '../api';
|
||||||
|
|
||||||
export const submitAccountNote = createAppAsyncThunk(
|
export const submitAccountNote = createAppAsyncThunk(
|
||||||
'account_note/submit',
|
'account_note/submit',
|
||||||
async (args: { id: string; value: string }, { getState }) => {
|
async (args: { id: string; value: string }) => {
|
||||||
const response = await api(getState).post<ApiRelationshipJSON>(
|
const response = await api().post<ApiRelationshipJSON>(
|
||||||
`/api/v1/accounts/${args.id}/note`,
|
`/api/v1/accounts/${args.id}/note`,
|
||||||
{
|
{
|
||||||
comment: args.value,
|
comment: args.value,
|
||||||
|
|
|
@ -76,11 +76,11 @@ export const ACCOUNT_REVEAL = 'ACCOUNT_REVEAL';
|
||||||
export * from './accounts_typed';
|
export * from './accounts_typed';
|
||||||
|
|
||||||
export function fetchAccount(id) {
|
export function fetchAccount(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchRelationships([id]));
|
dispatch(fetchRelationships([id]));
|
||||||
dispatch(fetchAccountRequest(id));
|
dispatch(fetchAccountRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/accounts/${id}`).then(response => {
|
api().get(`/api/v1/accounts/${id}`).then(response => {
|
||||||
dispatch(importFetchedAccount(response.data));
|
dispatch(importFetchedAccount(response.data));
|
||||||
dispatch(fetchAccountSuccess());
|
dispatch(fetchAccountSuccess());
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -89,10 +89,10 @@ export function fetchAccount(id) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const lookupAccount = acct => (dispatch, getState) => {
|
export const lookupAccount = acct => (dispatch) => {
|
||||||
dispatch(lookupAccountRequest(acct));
|
dispatch(lookupAccountRequest(acct));
|
||||||
|
|
||||||
api(getState).get('/api/v1/accounts/lookup', { params: { acct } }).then(response => {
|
api().get('/api/v1/accounts/lookup', { params: { acct } }).then(response => {
|
||||||
dispatch(fetchRelationships([response.data.id]));
|
dispatch(fetchRelationships([response.data.id]));
|
||||||
dispatch(importFetchedAccount(response.data));
|
dispatch(importFetchedAccount(response.data));
|
||||||
dispatch(lookupAccountSuccess());
|
dispatch(lookupAccountSuccess());
|
||||||
|
@ -146,7 +146,7 @@ export function followAccount(id, options = { reblogs: true }) {
|
||||||
|
|
||||||
dispatch(followAccountRequest({ id, locked }));
|
dispatch(followAccountRequest({ id, locked }));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/follow`, options).then(response => {
|
api().post(`/api/v1/accounts/${id}/follow`, options).then(response => {
|
||||||
dispatch(followAccountSuccess({relationship: response.data, alreadyFollowing}));
|
dispatch(followAccountSuccess({relationship: response.data, alreadyFollowing}));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(followAccountFail({ id, error, locked }));
|
dispatch(followAccountFail({ id, error, locked }));
|
||||||
|
@ -158,7 +158,7 @@ export function unfollowAccount(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(unfollowAccountRequest(id));
|
dispatch(unfollowAccountRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/unfollow`).then(response => {
|
api().post(`/api/v1/accounts/${id}/unfollow`).then(response => {
|
||||||
dispatch(unfollowAccountSuccess({relationship: response.data, statuses: getState().get('statuses')}));
|
dispatch(unfollowAccountSuccess({relationship: response.data, statuses: getState().get('statuses')}));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(unfollowAccountFail({ id, error }));
|
dispatch(unfollowAccountFail({ id, error }));
|
||||||
|
@ -170,7 +170,7 @@ export function blockAccount(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(blockAccountRequest(id));
|
dispatch(blockAccountRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/block`).then(response => {
|
api().post(`/api/v1/accounts/${id}/block`).then(response => {
|
||||||
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
|
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
|
||||||
dispatch(blockAccountSuccess({ relationship: response.data, statuses: getState().get('statuses') }));
|
dispatch(blockAccountSuccess({ relationship: response.data, statuses: getState().get('statuses') }));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -180,10 +180,10 @@ export function blockAccount(id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unblockAccount(id) {
|
export function unblockAccount(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unblockAccountRequest(id));
|
dispatch(unblockAccountRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/unblock`).then(response => {
|
api().post(`/api/v1/accounts/${id}/unblock`).then(response => {
|
||||||
dispatch(unblockAccountSuccess({ relationship: response.data }));
|
dispatch(unblockAccountSuccess({ relationship: response.data }));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(unblockAccountFail({ id, error }));
|
dispatch(unblockAccountFail({ id, error }));
|
||||||
|
@ -223,7 +223,7 @@ export function muteAccount(id, notifications, duration=0) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(muteAccountRequest(id));
|
dispatch(muteAccountRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/mute`, { notifications, duration }).then(response => {
|
api().post(`/api/v1/accounts/${id}/mute`, { notifications, duration }).then(response => {
|
||||||
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
|
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
|
||||||
dispatch(muteAccountSuccess({ relationship: response.data, statuses: getState().get('statuses') }));
|
dispatch(muteAccountSuccess({ relationship: response.data, statuses: getState().get('statuses') }));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -233,10 +233,10 @@ export function muteAccount(id, notifications, duration=0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unmuteAccount(id) {
|
export function unmuteAccount(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unmuteAccountRequest(id));
|
dispatch(unmuteAccountRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/unmute`).then(response => {
|
api().post(`/api/v1/accounts/${id}/unmute`).then(response => {
|
||||||
dispatch(unmuteAccountSuccess({ relationship: response.data }));
|
dispatch(unmuteAccountSuccess({ relationship: response.data }));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(unmuteAccountFail({ id, error }));
|
dispatch(unmuteAccountFail({ id, error }));
|
||||||
|
@ -274,10 +274,10 @@ export function unmuteAccountFail(error) {
|
||||||
|
|
||||||
|
|
||||||
export function fetchFollowers(id) {
|
export function fetchFollowers(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchFollowersRequest(id));
|
dispatch(fetchFollowersRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/accounts/${id}/followers`).then(response => {
|
api().get(`/api/v1/accounts/${id}/followers`).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
|
@ -324,7 +324,7 @@ export function expandFollowers(id) {
|
||||||
|
|
||||||
dispatch(expandFollowersRequest(id));
|
dispatch(expandFollowersRequest(id));
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
|
@ -361,10 +361,10 @@ export function expandFollowersFail(id, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function fetchFollowing(id) {
|
export function fetchFollowing(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchFollowingRequest(id));
|
dispatch(fetchFollowingRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/accounts/${id}/following`).then(response => {
|
api().get(`/api/v1/accounts/${id}/following`).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
|
@ -411,7 +411,7 @@ export function expandFollowing(id) {
|
||||||
|
|
||||||
dispatch(expandFollowingRequest(id));
|
dispatch(expandFollowingRequest(id));
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
|
@ -460,7 +460,7 @@ export function fetchRelationships(accountIds) {
|
||||||
|
|
||||||
dispatch(fetchRelationshipsRequest(newAccountIds));
|
dispatch(fetchRelationshipsRequest(newAccountIds));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/accounts/relationships?with_suspended=true&${newAccountIds.map(id => `id[]=${id}`).join('&')}`).then(response => {
|
api().get(`/api/v1/accounts/relationships?with_suspended=true&${newAccountIds.map(id => `id[]=${id}`).join('&')}`).then(response => {
|
||||||
dispatch(fetchRelationshipsSuccess({ relationships: response.data }));
|
dispatch(fetchRelationshipsSuccess({ relationships: response.data }));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(fetchRelationshipsFail(error));
|
dispatch(fetchRelationshipsFail(error));
|
||||||
|
@ -486,10 +486,10 @@ export function fetchRelationshipsFail(error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function fetchFollowRequests() {
|
export function fetchFollowRequests() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchFollowRequestsRequest());
|
dispatch(fetchFollowRequestsRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/follow_requests').then(response => {
|
api().get('/api/v1/follow_requests').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(fetchFollowRequestsSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchFollowRequestsSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -528,7 +528,7 @@ export function expandFollowRequests() {
|
||||||
|
|
||||||
dispatch(expandFollowRequestsRequest());
|
dispatch(expandFollowRequestsRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(expandFollowRequestsSuccess(response.data, next ? next.uri : null));
|
dispatch(expandFollowRequestsSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -558,10 +558,10 @@ export function expandFollowRequestsFail(error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function authorizeFollowRequest(id) {
|
export function authorizeFollowRequest(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(authorizeFollowRequestRequest(id));
|
dispatch(authorizeFollowRequestRequest(id));
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.post(`/api/v1/follow_requests/${id}/authorize`)
|
.post(`/api/v1/follow_requests/${id}/authorize`)
|
||||||
.then(() => dispatch(authorizeFollowRequestSuccess({ id })))
|
.then(() => dispatch(authorizeFollowRequestSuccess({ id })))
|
||||||
.catch(error => dispatch(authorizeFollowRequestFail(id, error)));
|
.catch(error => dispatch(authorizeFollowRequestFail(id, error)));
|
||||||
|
@ -585,10 +585,10 @@ export function authorizeFollowRequestFail(id, error) {
|
||||||
|
|
||||||
|
|
||||||
export function rejectFollowRequest(id) {
|
export function rejectFollowRequest(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(rejectFollowRequestRequest(id));
|
dispatch(rejectFollowRequestRequest(id));
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.post(`/api/v1/follow_requests/${id}/reject`)
|
.post(`/api/v1/follow_requests/${id}/reject`)
|
||||||
.then(() => dispatch(rejectFollowRequestSuccess({ id })))
|
.then(() => dispatch(rejectFollowRequestSuccess({ id })))
|
||||||
.catch(error => dispatch(rejectFollowRequestFail(id, error)));
|
.catch(error => dispatch(rejectFollowRequestFail(id, error)));
|
||||||
|
@ -611,10 +611,10 @@ export function rejectFollowRequestFail(id, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function pinAccount(id) {
|
export function pinAccount(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(pinAccountRequest(id));
|
dispatch(pinAccountRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/pin`).then(response => {
|
api().post(`/api/v1/accounts/${id}/pin`).then(response => {
|
||||||
dispatch(pinAccountSuccess({ relationship: response.data }));
|
dispatch(pinAccountSuccess({ relationship: response.data }));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(pinAccountFail(error));
|
dispatch(pinAccountFail(error));
|
||||||
|
@ -623,10 +623,10 @@ export function pinAccount(id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unpinAccount(id) {
|
export function unpinAccount(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unpinAccountRequest(id));
|
dispatch(unpinAccountRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/accounts/${id}/unpin`).then(response => {
|
api().post(`/api/v1/accounts/${id}/unpin`).then(response => {
|
||||||
dispatch(unpinAccountSuccess({ relationship: response.data }));
|
dispatch(unpinAccountSuccess({ relationship: response.data }));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(unpinAccountFail(error));
|
dispatch(unpinAccountFail(error));
|
||||||
|
@ -662,7 +662,7 @@ export function unpinAccountFail(error) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const updateAccount = ({ displayName, note, avatar, header, discoverable, indexable }) => (dispatch, getState) => {
|
export const updateAccount = ({ displayName, note, avatar, header, discoverable, indexable }) => (dispatch) => {
|
||||||
const data = new FormData();
|
const data = new FormData();
|
||||||
|
|
||||||
data.append('display_name', displayName);
|
data.append('display_name', displayName);
|
||||||
|
@ -672,7 +672,7 @@ export const updateAccount = ({ displayName, note, avatar, header, discoverable,
|
||||||
data.append('discoverable', discoverable);
|
data.append('discoverable', discoverable);
|
||||||
data.append('indexable', indexable);
|
data.append('indexable', indexable);
|
||||||
|
|
||||||
return api(getState).patch('/api/v1/accounts/update_credentials', data).then(response => {
|
return api().patch('/api/v1/accounts/update_credentials', data).then(response => {
|
||||||
dispatch(importFetchedAccount(response.data));
|
dispatch(importFetchedAccount(response.data));
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,10 +26,10 @@ export const ANNOUNCEMENTS_TOGGLE_SHOW = 'ANNOUNCEMENTS_TOGGLE_SHOW';
|
||||||
|
|
||||||
const noOp = () => {};
|
const noOp = () => {};
|
||||||
|
|
||||||
export const fetchAnnouncements = (done = noOp) => (dispatch, getState) => {
|
export const fetchAnnouncements = (done = noOp) => (dispatch) => {
|
||||||
dispatch(fetchAnnouncementsRequest());
|
dispatch(fetchAnnouncementsRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/announcements').then(response => {
|
api().get('/api/v1/announcements').then(response => {
|
||||||
dispatch(fetchAnnouncementsSuccess(response.data.map(x => normalizeAnnouncement(x))));
|
dispatch(fetchAnnouncementsSuccess(response.data.map(x => normalizeAnnouncement(x))));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(fetchAnnouncementsFail(error));
|
dispatch(fetchAnnouncementsFail(error));
|
||||||
|
@ -61,10 +61,10 @@ export const updateAnnouncements = announcement => ({
|
||||||
announcement: normalizeAnnouncement(announcement),
|
announcement: normalizeAnnouncement(announcement),
|
||||||
});
|
});
|
||||||
|
|
||||||
export const dismissAnnouncement = announcementId => (dispatch, getState) => {
|
export const dismissAnnouncement = announcementId => (dispatch) => {
|
||||||
dispatch(dismissAnnouncementRequest(announcementId));
|
dispatch(dismissAnnouncementRequest(announcementId));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/announcements/${announcementId}/dismiss`).then(() => {
|
api().post(`/api/v1/announcements/${announcementId}/dismiss`).then(() => {
|
||||||
dispatch(dismissAnnouncementSuccess(announcementId));
|
dispatch(dismissAnnouncementSuccess(announcementId));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(dismissAnnouncementFail(announcementId, error));
|
dispatch(dismissAnnouncementFail(announcementId, error));
|
||||||
|
@ -103,7 +103,7 @@ export const addReaction = (announcementId, name) => (dispatch, getState) => {
|
||||||
dispatch(addReactionRequest(announcementId, name, alreadyAdded));
|
dispatch(addReactionRequest(announcementId, name, alreadyAdded));
|
||||||
}
|
}
|
||||||
|
|
||||||
api(getState).put(`/api/v1/announcements/${announcementId}/reactions/${encodeURIComponent(name)}`).then(() => {
|
api().put(`/api/v1/announcements/${announcementId}/reactions/${encodeURIComponent(name)}`).then(() => {
|
||||||
dispatch(addReactionSuccess(announcementId, name, alreadyAdded));
|
dispatch(addReactionSuccess(announcementId, name, alreadyAdded));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
if (!alreadyAdded) {
|
if (!alreadyAdded) {
|
||||||
|
@ -134,10 +134,10 @@ export const addReactionFail = (announcementId, name, error) => ({
|
||||||
skipLoading: true,
|
skipLoading: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const removeReaction = (announcementId, name) => (dispatch, getState) => {
|
export const removeReaction = (announcementId, name) => (dispatch) => {
|
||||||
dispatch(removeReactionRequest(announcementId, name));
|
dispatch(removeReactionRequest(announcementId, name));
|
||||||
|
|
||||||
api(getState).delete(`/api/v1/announcements/${announcementId}/reactions/${encodeURIComponent(name)}`).then(() => {
|
api().delete(`/api/v1/announcements/${announcementId}/reactions/${encodeURIComponent(name)}`).then(() => {
|
||||||
dispatch(removeReactionSuccess(announcementId, name));
|
dispatch(removeReactionSuccess(announcementId, name));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(removeReactionFail(announcementId, name, err));
|
dispatch(removeReactionFail(announcementId, name, err));
|
||||||
|
|
|
@ -13,10 +13,10 @@ export const BLOCKS_EXPAND_SUCCESS = 'BLOCKS_EXPAND_SUCCESS';
|
||||||
export const BLOCKS_EXPAND_FAIL = 'BLOCKS_EXPAND_FAIL';
|
export const BLOCKS_EXPAND_FAIL = 'BLOCKS_EXPAND_FAIL';
|
||||||
|
|
||||||
export function fetchBlocks() {
|
export function fetchBlocks() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchBlocksRequest());
|
dispatch(fetchBlocksRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/blocks').then(response => {
|
api().get('/api/v1/blocks').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(fetchBlocksSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchBlocksSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -56,7 +56,7 @@ export function expandBlocks() {
|
||||||
|
|
||||||
dispatch(expandBlocksRequest());
|
dispatch(expandBlocksRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(expandBlocksSuccess(response.data, next ? next.uri : null));
|
dispatch(expandBlocksSuccess(response.data, next ? next.uri : null));
|
||||||
|
|
|
@ -18,7 +18,7 @@ export function fetchBookmarkedStatuses() {
|
||||||
|
|
||||||
dispatch(fetchBookmarkedStatusesRequest());
|
dispatch(fetchBookmarkedStatusesRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/bookmarks').then(response => {
|
api().get('/api/v1/bookmarks').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
dispatch(fetchBookmarkedStatusesSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchBookmarkedStatusesSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -59,7 +59,7 @@ export function expandBookmarkedStatuses() {
|
||||||
|
|
||||||
dispatch(expandBookmarkedStatusesRequest());
|
dispatch(expandBookmarkedStatusesRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
dispatch(expandBookmarkedStatusesSuccess(response.data, next ? next.uri : null));
|
dispatch(expandBookmarkedStatusesSuccess(response.data, next ? next.uri : null));
|
||||||
|
|
|
@ -196,7 +196,7 @@ export function submitCompose(routerHistory) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
api(getState).request({
|
api().request({
|
||||||
url: statusId === null ? '/api/v1/statuses' : `/api/v1/statuses/${statusId}`,
|
url: statusId === null ? '/api/v1/statuses' : `/api/v1/statuses/${statusId}`,
|
||||||
method: statusId === null ? 'post' : 'put',
|
method: statusId === null ? 'post' : 'put',
|
||||||
data: {
|
data: {
|
||||||
|
@ -306,7 +306,7 @@ export function uploadCompose(files) {
|
||||||
const data = new FormData();
|
const data = new FormData();
|
||||||
data.append('file', file);
|
data.append('file', file);
|
||||||
|
|
||||||
api(getState).post('/api/v2/media', data, {
|
api().post('/api/v2/media', data, {
|
||||||
onUploadProgress: function({ loaded }){
|
onUploadProgress: function({ loaded }){
|
||||||
progress[i] = loaded;
|
progress[i] = loaded;
|
||||||
dispatch(uploadComposeProgress(progress.reduce((a, v) => a + v, 0), total));
|
dispatch(uploadComposeProgress(progress.reduce((a, v) => a + v, 0), total));
|
||||||
|
@ -323,7 +323,7 @@ export function uploadCompose(files) {
|
||||||
let tryCount = 1;
|
let tryCount = 1;
|
||||||
|
|
||||||
const poll = () => {
|
const poll = () => {
|
||||||
api(getState).get(`/api/v1/media/${data.id}`).then(response => {
|
api().get(`/api/v1/media/${data.id}`).then(response => {
|
||||||
if (response.status === 200) {
|
if (response.status === 200) {
|
||||||
dispatch(uploadComposeSuccess(response.data, file));
|
dispatch(uploadComposeSuccess(response.data, file));
|
||||||
} else if (response.status === 206) {
|
} else if (response.status === 206) {
|
||||||
|
@ -345,7 +345,7 @@ export const uploadComposeProcessing = () => ({
|
||||||
type: COMPOSE_UPLOAD_PROCESSING,
|
type: COMPOSE_UPLOAD_PROCESSING,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const uploadThumbnail = (id, file) => (dispatch, getState) => {
|
export const uploadThumbnail = (id, file) => (dispatch) => {
|
||||||
dispatch(uploadThumbnailRequest());
|
dispatch(uploadThumbnailRequest());
|
||||||
|
|
||||||
const total = file.size;
|
const total = file.size;
|
||||||
|
@ -353,7 +353,7 @@ export const uploadThumbnail = (id, file) => (dispatch, getState) => {
|
||||||
|
|
||||||
data.append('thumbnail', file);
|
data.append('thumbnail', file);
|
||||||
|
|
||||||
api(getState).put(`/api/v1/media/${id}`, data, {
|
api().put(`/api/v1/media/${id}`, data, {
|
||||||
onUploadProgress: ({ loaded }) => {
|
onUploadProgress: ({ loaded }) => {
|
||||||
dispatch(uploadThumbnailProgress(loaded, total));
|
dispatch(uploadThumbnailProgress(loaded, total));
|
||||||
},
|
},
|
||||||
|
@ -436,7 +436,7 @@ export function changeUploadCompose(id, params) {
|
||||||
|
|
||||||
dispatch(changeUploadComposeSuccess(data, true));
|
dispatch(changeUploadComposeSuccess(data, true));
|
||||||
} else {
|
} else {
|
||||||
api(getState).put(`/api/v1/media/${id}`, params).then(response => {
|
api().put(`/api/v1/media/${id}`, params).then(response => {
|
||||||
dispatch(changeUploadComposeSuccess(response.data, false));
|
dispatch(changeUploadComposeSuccess(response.data, false));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(changeUploadComposeFail(id, error));
|
dispatch(changeUploadComposeFail(id, error));
|
||||||
|
@ -524,7 +524,7 @@ const fetchComposeSuggestionsAccounts = throttle((dispatch, getState, token) =>
|
||||||
|
|
||||||
fetchComposeSuggestionsAccountsController = new AbortController();
|
fetchComposeSuggestionsAccountsController = new AbortController();
|
||||||
|
|
||||||
api(getState).get('/api/v1/accounts/search', {
|
api().get('/api/v1/accounts/search', {
|
||||||
signal: fetchComposeSuggestionsAccountsController.signal,
|
signal: fetchComposeSuggestionsAccountsController.signal,
|
||||||
|
|
||||||
params: {
|
params: {
|
||||||
|
@ -558,7 +558,7 @@ const fetchComposeSuggestionsTags = throttle((dispatch, getState, token) => {
|
||||||
|
|
||||||
fetchComposeSuggestionsTagsController = new AbortController();
|
fetchComposeSuggestionsTagsController = new AbortController();
|
||||||
|
|
||||||
api(getState).get('/api/v2/search', {
|
api().get('/api/v2/search', {
|
||||||
signal: fetchComposeSuggestionsTagsController.signal,
|
signal: fetchComposeSuggestionsTagsController.signal,
|
||||||
|
|
||||||
params: {
|
params: {
|
||||||
|
|
|
@ -28,13 +28,13 @@ export const unmountConversations = () => ({
|
||||||
type: CONVERSATIONS_UNMOUNT,
|
type: CONVERSATIONS_UNMOUNT,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const markConversationRead = conversationId => (dispatch, getState) => {
|
export const markConversationRead = conversationId => (dispatch) => {
|
||||||
dispatch({
|
dispatch({
|
||||||
type: CONVERSATIONS_READ,
|
type: CONVERSATIONS_READ,
|
||||||
id: conversationId,
|
id: conversationId,
|
||||||
});
|
});
|
||||||
|
|
||||||
api(getState).post(`/api/v1/conversations/${conversationId}/read`);
|
api().post(`/api/v1/conversations/${conversationId}/read`);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const expandConversations = ({ maxId } = {}) => (dispatch, getState) => {
|
export const expandConversations = ({ maxId } = {}) => (dispatch, getState) => {
|
||||||
|
@ -48,7 +48,7 @@ export const expandConversations = ({ maxId } = {}) => (dispatch, getState) => {
|
||||||
|
|
||||||
const isLoadingRecent = !!params.since_id;
|
const isLoadingRecent = !!params.since_id;
|
||||||
|
|
||||||
api(getState).get('/api/v1/conversations', { params })
|
api().get('/api/v1/conversations', { params })
|
||||||
.then(response => {
|
.then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
|
@ -88,10 +88,10 @@ export const updateConversations = conversation => dispatch => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
export const deleteConversation = conversationId => (dispatch, getState) => {
|
export const deleteConversation = conversationId => (dispatch) => {
|
||||||
dispatch(deleteConversationRequest(conversationId));
|
dispatch(deleteConversationRequest(conversationId));
|
||||||
|
|
||||||
api(getState).delete(`/api/v1/conversations/${conversationId}`)
|
api().delete(`/api/v1/conversations/${conversationId}`)
|
||||||
.then(() => dispatch(deleteConversationSuccess(conversationId)))
|
.then(() => dispatch(deleteConversationSuccess(conversationId)))
|
||||||
.catch(error => dispatch(deleteConversationFail(conversationId, error)));
|
.catch(error => dispatch(deleteConversationFail(conversationId, error)));
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,10 +5,10 @@ export const CUSTOM_EMOJIS_FETCH_SUCCESS = 'CUSTOM_EMOJIS_FETCH_SUCCESS';
|
||||||
export const CUSTOM_EMOJIS_FETCH_FAIL = 'CUSTOM_EMOJIS_FETCH_FAIL';
|
export const CUSTOM_EMOJIS_FETCH_FAIL = 'CUSTOM_EMOJIS_FETCH_FAIL';
|
||||||
|
|
||||||
export function fetchCustomEmojis() {
|
export function fetchCustomEmojis() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchCustomEmojisRequest());
|
dispatch(fetchCustomEmojisRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/custom_emojis').then(response => {
|
api().get('/api/v1/custom_emojis').then(response => {
|
||||||
dispatch(fetchCustomEmojisSuccess(response.data));
|
dispatch(fetchCustomEmojisSuccess(response.data));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(fetchCustomEmojisFail(error));
|
dispatch(fetchCustomEmojisFail(error));
|
||||||
|
|
|
@ -11,10 +11,10 @@ export const DIRECTORY_EXPAND_REQUEST = 'DIRECTORY_EXPAND_REQUEST';
|
||||||
export const DIRECTORY_EXPAND_SUCCESS = 'DIRECTORY_EXPAND_SUCCESS';
|
export const DIRECTORY_EXPAND_SUCCESS = 'DIRECTORY_EXPAND_SUCCESS';
|
||||||
export const DIRECTORY_EXPAND_FAIL = 'DIRECTORY_EXPAND_FAIL';
|
export const DIRECTORY_EXPAND_FAIL = 'DIRECTORY_EXPAND_FAIL';
|
||||||
|
|
||||||
export const fetchDirectory = params => (dispatch, getState) => {
|
export const fetchDirectory = params => (dispatch) => {
|
||||||
dispatch(fetchDirectoryRequest());
|
dispatch(fetchDirectoryRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/directory', { params: { ...params, limit: 20 } }).then(({ data }) => {
|
api().get('/api/v1/directory', { params: { ...params, limit: 20 } }).then(({ data }) => {
|
||||||
dispatch(importFetchedAccounts(data));
|
dispatch(importFetchedAccounts(data));
|
||||||
dispatch(fetchDirectorySuccess(data));
|
dispatch(fetchDirectorySuccess(data));
|
||||||
dispatch(fetchRelationships(data.map(x => x.id)));
|
dispatch(fetchRelationships(data.map(x => x.id)));
|
||||||
|
@ -40,7 +40,7 @@ export const expandDirectory = params => (dispatch, getState) => {
|
||||||
|
|
||||||
const loadedItems = getState().getIn(['user_lists', 'directory', 'items']).size;
|
const loadedItems = getState().getIn(['user_lists', 'directory', 'items']).size;
|
||||||
|
|
||||||
api(getState).get('/api/v1/directory', { params: { ...params, offset: loadedItems, limit: 20 } }).then(({ data }) => {
|
api().get('/api/v1/directory', { params: { ...params, offset: loadedItems, limit: 20 } }).then(({ data }) => {
|
||||||
dispatch(importFetchedAccounts(data));
|
dispatch(importFetchedAccounts(data));
|
||||||
dispatch(expandDirectorySuccess(data));
|
dispatch(expandDirectorySuccess(data));
|
||||||
dispatch(fetchRelationships(data.map(x => x.id)));
|
dispatch(fetchRelationships(data.map(x => x.id)));
|
||||||
|
|
|
@ -24,7 +24,7 @@ export function blockDomain(domain) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(blockDomainRequest(domain));
|
dispatch(blockDomainRequest(domain));
|
||||||
|
|
||||||
api(getState).post('/api/v1/domain_blocks', { domain }).then(() => {
|
api().post('/api/v1/domain_blocks', { domain }).then(() => {
|
||||||
const at_domain = '@' + domain;
|
const at_domain = '@' + domain;
|
||||||
const accounts = getState().get('accounts').filter(item => item.get('acct').endsWith(at_domain)).valueSeq().map(item => item.get('id'));
|
const accounts = getState().get('accounts').filter(item => item.get('acct').endsWith(at_domain)).valueSeq().map(item => item.get('id'));
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ export function unblockDomain(domain) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(unblockDomainRequest(domain));
|
dispatch(unblockDomainRequest(domain));
|
||||||
|
|
||||||
api(getState).delete('/api/v1/domain_blocks', { params: { domain } }).then(() => {
|
api().delete('/api/v1/domain_blocks', { params: { domain } }).then(() => {
|
||||||
const at_domain = '@' + domain;
|
const at_domain = '@' + domain;
|
||||||
const accounts = getState().get('accounts').filter(item => item.get('acct').endsWith(at_domain)).valueSeq().map(item => item.get('id'));
|
const accounts = getState().get('accounts').filter(item => item.get('acct').endsWith(at_domain)).valueSeq().map(item => item.get('id'));
|
||||||
dispatch(unblockDomainSuccess({ domain, accounts }));
|
dispatch(unblockDomainSuccess({ domain, accounts }));
|
||||||
|
@ -80,10 +80,10 @@ export function unblockDomainFail(domain, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function fetchDomainBlocks() {
|
export function fetchDomainBlocks() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchDomainBlocksRequest());
|
dispatch(fetchDomainBlocksRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/domain_blocks').then(response => {
|
api().get('/api/v1/domain_blocks').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(fetchDomainBlocksSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchDomainBlocksSuccess(response.data, next ? next.uri : null));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
@ -123,7 +123,7 @@ export function expandDomainBlocks() {
|
||||||
|
|
||||||
dispatch(expandDomainBlocksRequest());
|
dispatch(expandDomainBlocksRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(expandDomainBlocksSuccess(response.data, next ? next.uri : null));
|
dispatch(expandDomainBlocksSuccess(response.data, next ? next.uri : null));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|
|
@ -18,7 +18,7 @@ export function fetchFavouritedStatuses() {
|
||||||
|
|
||||||
dispatch(fetchFavouritedStatusesRequest());
|
dispatch(fetchFavouritedStatusesRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/favourites').then(response => {
|
api().get('/api/v1/favourites').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
dispatch(fetchFavouritedStatusesSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchFavouritedStatusesSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -62,7 +62,7 @@ export function expandFavouritedStatuses() {
|
||||||
|
|
||||||
dispatch(expandFavouritedStatusesRequest());
|
dispatch(expandFavouritedStatusesRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
dispatch(expandFavouritedStatusesSuccess(response.data, next ? next.uri : null));
|
dispatch(expandFavouritedStatusesSuccess(response.data, next ? next.uri : null));
|
||||||
|
|
|
@ -11,7 +11,7 @@ export const fetchFeaturedTags = (id) => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchFeaturedTagsRequest(id));
|
dispatch(fetchFeaturedTagsRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/accounts/${id}/featured_tags`)
|
api().get(`/api/v1/accounts/${id}/featured_tags`)
|
||||||
.then(({ data }) => dispatch(fetchFeaturedTagsSuccess(id, data)))
|
.then(({ data }) => dispatch(fetchFeaturedTagsSuccess(id, data)))
|
||||||
.catch(err => dispatch(fetchFeaturedTagsFail(id, err)));
|
.catch(err => dispatch(fetchFeaturedTagsFail(id, err)));
|
||||||
};
|
};
|
||||||
|
|
|
@ -23,13 +23,13 @@ export const initAddFilter = (status, { contextType }) => dispatch =>
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const fetchFilters = () => (dispatch, getState) => {
|
export const fetchFilters = () => (dispatch) => {
|
||||||
dispatch({
|
dispatch({
|
||||||
type: FILTERS_FETCH_REQUEST,
|
type: FILTERS_FETCH_REQUEST,
|
||||||
skipLoading: true,
|
skipLoading: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.get('/api/v2/filters')
|
.get('/api/v2/filters')
|
||||||
.then(({ data }) => dispatch({
|
.then(({ data }) => dispatch({
|
||||||
type: FILTERS_FETCH_SUCCESS,
|
type: FILTERS_FETCH_SUCCESS,
|
||||||
|
@ -44,10 +44,10 @@ export const fetchFilters = () => (dispatch, getState) => {
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
|
|
||||||
export const createFilterStatus = (params, onSuccess, onFail) => (dispatch, getState) => {
|
export const createFilterStatus = (params, onSuccess, onFail) => (dispatch) => {
|
||||||
dispatch(createFilterStatusRequest());
|
dispatch(createFilterStatusRequest());
|
||||||
|
|
||||||
api(getState).post(`/api/v2/filters/${params.filter_id}/statuses`, params).then(response => {
|
api().post(`/api/v2/filters/${params.filter_id}/statuses`, params).then(response => {
|
||||||
dispatch(createFilterStatusSuccess(response.data));
|
dispatch(createFilterStatusSuccess(response.data));
|
||||||
if (onSuccess) onSuccess();
|
if (onSuccess) onSuccess();
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -70,10 +70,10 @@ export const createFilterStatusFail = error => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const createFilter = (params, onSuccess, onFail) => (dispatch, getState) => {
|
export const createFilter = (params, onSuccess, onFail) => (dispatch) => {
|
||||||
dispatch(createFilterRequest());
|
dispatch(createFilterRequest());
|
||||||
|
|
||||||
api(getState).post('/api/v2/filters', params).then(response => {
|
api().post('/api/v2/filters', params).then(response => {
|
||||||
dispatch(createFilterSuccess(response.data));
|
dispatch(createFilterSuccess(response.data));
|
||||||
if (onSuccess) onSuccess(response.data);
|
if (onSuccess) onSuccess(response.data);
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const fetchHistory = statusId => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchHistoryRequest(statusId));
|
dispatch(fetchHistoryRequest(statusId));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/statuses/${statusId}/history`).then(({ data }) => {
|
api().get(`/api/v1/statuses/${statusId}/history`).then(({ data }) => {
|
||||||
dispatch(importFetchedAccounts(data.map(x => x.account)));
|
dispatch(importFetchedAccounts(data.map(x => x.account)));
|
||||||
dispatch(fetchHistorySuccess(statusId, data));
|
dispatch(fetchHistorySuccess(statusId, data));
|
||||||
}).catch(error => dispatch(fetchHistoryFail(error)));
|
}).catch(error => dispatch(fetchHistoryFail(error)));
|
||||||
|
|
|
@ -52,10 +52,10 @@ export const UNBOOKMARK_SUCCESS = 'UNBOOKMARKED_SUCCESS';
|
||||||
export const UNBOOKMARK_FAIL = 'UNBOOKMARKED_FAIL';
|
export const UNBOOKMARK_FAIL = 'UNBOOKMARKED_FAIL';
|
||||||
|
|
||||||
export function reblog(status, visibility) {
|
export function reblog(status, visibility) {
|
||||||
return function (dispatch, getState) {
|
return function (dispatch) {
|
||||||
dispatch(reblogRequest(status));
|
dispatch(reblogRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/reblog`, { visibility }).then(function (response) {
|
api().post(`/api/v1/statuses/${status.get('id')}/reblog`, { visibility }).then(function (response) {
|
||||||
// The reblog API method returns a new status wrapped around the original. In this case we are only
|
// 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
|
// interested in how the original is modified, hence passing it skipping the wrapper
|
||||||
dispatch(importFetchedStatus(response.data.reblog));
|
dispatch(importFetchedStatus(response.data.reblog));
|
||||||
|
@ -67,10 +67,10 @@ export function reblog(status, visibility) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unreblog(status) {
|
export function unreblog(status) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unreblogRequest(status));
|
dispatch(unreblogRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/unreblog`).then(response => {
|
api().post(`/api/v1/statuses/${status.get('id')}/unreblog`).then(response => {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(unreblogSuccess(status));
|
dispatch(unreblogSuccess(status));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -130,10 +130,10 @@ export function unreblogFail(status, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function favourite(status) {
|
export function favourite(status) {
|
||||||
return function (dispatch, getState) {
|
return function (dispatch) {
|
||||||
dispatch(favouriteRequest(status));
|
dispatch(favouriteRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/favourite`).then(function (response) {
|
api().post(`/api/v1/statuses/${status.get('id')}/favourite`).then(function (response) {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(favouriteSuccess(status));
|
dispatch(favouriteSuccess(status));
|
||||||
}).catch(function (error) {
|
}).catch(function (error) {
|
||||||
|
@ -143,10 +143,10 @@ export function favourite(status) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unfavourite(status) {
|
export function unfavourite(status) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unfavouriteRequest(status));
|
dispatch(unfavouriteRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/unfavourite`).then(response => {
|
api().post(`/api/v1/statuses/${status.get('id')}/unfavourite`).then(response => {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(unfavouriteSuccess(status));
|
dispatch(unfavouriteSuccess(status));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -206,10 +206,10 @@ export function unfavouriteFail(status, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function bookmark(status) {
|
export function bookmark(status) {
|
||||||
return function (dispatch, getState) {
|
return function (dispatch) {
|
||||||
dispatch(bookmarkRequest(status));
|
dispatch(bookmarkRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/bookmark`).then(function (response) {
|
api().post(`/api/v1/statuses/${status.get('id')}/bookmark`).then(function (response) {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(bookmarkSuccess(status, response.data));
|
dispatch(bookmarkSuccess(status, response.data));
|
||||||
}).catch(function (error) {
|
}).catch(function (error) {
|
||||||
|
@ -219,10 +219,10 @@ export function bookmark(status) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unbookmark(status) {
|
export function unbookmark(status) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unbookmarkRequest(status));
|
dispatch(unbookmarkRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/unbookmark`).then(response => {
|
api().post(`/api/v1/statuses/${status.get('id')}/unbookmark`).then(response => {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(unbookmarkSuccess(status, response.data));
|
dispatch(unbookmarkSuccess(status, response.data));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -278,10 +278,10 @@ export function unbookmarkFail(status, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function fetchReblogs(id) {
|
export function fetchReblogs(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchReblogsRequest(id));
|
dispatch(fetchReblogsRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/statuses/${id}/reblogged_by`).then(response => {
|
api().get(`/api/v1/statuses/${id}/reblogged_by`).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(fetchReblogsSuccess(id, response.data, next ? next.uri : null));
|
dispatch(fetchReblogsSuccess(id, response.data, next ? next.uri : null));
|
||||||
|
@ -325,7 +325,7 @@ export function expandReblogs(id) {
|
||||||
|
|
||||||
dispatch(expandReblogsRequest(id));
|
dispatch(expandReblogsRequest(id));
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
|
@ -360,10 +360,10 @@ export function expandReblogsFail(id, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function fetchFavourites(id) {
|
export function fetchFavourites(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchFavouritesRequest(id));
|
dispatch(fetchFavouritesRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/statuses/${id}/favourited_by`).then(response => {
|
api().get(`/api/v1/statuses/${id}/favourited_by`).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(fetchFavouritesSuccess(id, response.data, next ? next.uri : null));
|
dispatch(fetchFavouritesSuccess(id, response.data, next ? next.uri : null));
|
||||||
|
@ -407,7 +407,7 @@ export function expandFavourites(id) {
|
||||||
|
|
||||||
dispatch(expandFavouritesRequest(id));
|
dispatch(expandFavouritesRequest(id));
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
|
@ -442,10 +442,10 @@ export function expandFavouritesFail(id, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function pin(status) {
|
export function pin(status) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(pinRequest(status));
|
dispatch(pinRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/pin`).then(response => {
|
api().post(`/api/v1/statuses/${status.get('id')}/pin`).then(response => {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(pinSuccess(status));
|
dispatch(pinSuccess(status));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -480,10 +480,10 @@ export function pinFail(status, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unpin (status) {
|
export function unpin (status) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unpinRequest(status));
|
dispatch(unpinRequest(status));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${status.get('id')}/unpin`).then(response => {
|
api().post(`/api/v1/statuses/${status.get('id')}/unpin`).then(response => {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(unpinSuccess(status));
|
dispatch(unpinSuccess(status));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
|
|
@ -57,7 +57,7 @@ export const fetchList = id => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchListRequest(id));
|
dispatch(fetchListRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/lists/${id}`)
|
api().get(`/api/v1/lists/${id}`)
|
||||||
.then(({ data }) => dispatch(fetchListSuccess(data)))
|
.then(({ data }) => dispatch(fetchListSuccess(data)))
|
||||||
.catch(err => dispatch(fetchListFail(id, err)));
|
.catch(err => dispatch(fetchListFail(id, err)));
|
||||||
};
|
};
|
||||||
|
@ -78,10 +78,10 @@ export const fetchListFail = (id, error) => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const fetchLists = () => (dispatch, getState) => {
|
export const fetchLists = () => (dispatch) => {
|
||||||
dispatch(fetchListsRequest());
|
dispatch(fetchListsRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/lists')
|
api().get('/api/v1/lists')
|
||||||
.then(({ data }) => dispatch(fetchListsSuccess(data)))
|
.then(({ data }) => dispatch(fetchListsSuccess(data)))
|
||||||
.catch(err => dispatch(fetchListsFail(err)));
|
.catch(err => dispatch(fetchListsFail(err)));
|
||||||
};
|
};
|
||||||
|
@ -125,10 +125,10 @@ export const changeListEditorTitle = value => ({
|
||||||
value,
|
value,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const createList = (title, shouldReset) => (dispatch, getState) => {
|
export const createList = (title, shouldReset) => (dispatch) => {
|
||||||
dispatch(createListRequest());
|
dispatch(createListRequest());
|
||||||
|
|
||||||
api(getState).post('/api/v1/lists', { title }).then(({ data }) => {
|
api().post('/api/v1/lists', { title }).then(({ data }) => {
|
||||||
dispatch(createListSuccess(data));
|
dispatch(createListSuccess(data));
|
||||||
|
|
||||||
if (shouldReset) {
|
if (shouldReset) {
|
||||||
|
@ -151,10 +151,10 @@ export const createListFail = error => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const updateList = (id, title, shouldReset, isExclusive, replies_policy) => (dispatch, getState) => {
|
export const updateList = (id, title, shouldReset, isExclusive, replies_policy) => (dispatch) => {
|
||||||
dispatch(updateListRequest(id));
|
dispatch(updateListRequest(id));
|
||||||
|
|
||||||
api(getState).put(`/api/v1/lists/${id}`, { title, replies_policy, exclusive: typeof isExclusive === 'undefined' ? undefined : !!isExclusive }).then(({ data }) => {
|
api().put(`/api/v1/lists/${id}`, { title, replies_policy, exclusive: typeof isExclusive === 'undefined' ? undefined : !!isExclusive }).then(({ data }) => {
|
||||||
dispatch(updateListSuccess(data));
|
dispatch(updateListSuccess(data));
|
||||||
|
|
||||||
if (shouldReset) {
|
if (shouldReset) {
|
||||||
|
@ -183,10 +183,10 @@ export const resetListEditor = () => ({
|
||||||
type: LIST_EDITOR_RESET,
|
type: LIST_EDITOR_RESET,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const deleteList = id => (dispatch, getState) => {
|
export const deleteList = id => (dispatch) => {
|
||||||
dispatch(deleteListRequest(id));
|
dispatch(deleteListRequest(id));
|
||||||
|
|
||||||
api(getState).delete(`/api/v1/lists/${id}`)
|
api().delete(`/api/v1/lists/${id}`)
|
||||||
.then(() => dispatch(deleteListSuccess(id)))
|
.then(() => dispatch(deleteListSuccess(id)))
|
||||||
.catch(err => dispatch(deleteListFail(id, err)));
|
.catch(err => dispatch(deleteListFail(id, err)));
|
||||||
};
|
};
|
||||||
|
@ -207,10 +207,10 @@ export const deleteListFail = (id, error) => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const fetchListAccounts = listId => (dispatch, getState) => {
|
export const fetchListAccounts = listId => (dispatch) => {
|
||||||
dispatch(fetchListAccountsRequest(listId));
|
dispatch(fetchListAccountsRequest(listId));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/lists/${listId}/accounts`, { params: { limit: 0 } }).then(({ data }) => {
|
api().get(`/api/v1/lists/${listId}/accounts`, { params: { limit: 0 } }).then(({ data }) => {
|
||||||
dispatch(importFetchedAccounts(data));
|
dispatch(importFetchedAccounts(data));
|
||||||
dispatch(fetchListAccountsSuccess(listId, data));
|
dispatch(fetchListAccountsSuccess(listId, data));
|
||||||
}).catch(err => dispatch(fetchListAccountsFail(listId, err)));
|
}).catch(err => dispatch(fetchListAccountsFail(listId, err)));
|
||||||
|
@ -234,7 +234,7 @@ export const fetchListAccountsFail = (id, error) => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const fetchListSuggestions = q => (dispatch, getState) => {
|
export const fetchListSuggestions = q => (dispatch) => {
|
||||||
const params = {
|
const params = {
|
||||||
q,
|
q,
|
||||||
resolve: false,
|
resolve: false,
|
||||||
|
@ -242,7 +242,7 @@ export const fetchListSuggestions = q => (dispatch, getState) => {
|
||||||
following: true,
|
following: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
api(getState).get('/api/v1/accounts/search', { params }).then(({ data }) => {
|
api().get('/api/v1/accounts/search', { params }).then(({ data }) => {
|
||||||
dispatch(importFetchedAccounts(data));
|
dispatch(importFetchedAccounts(data));
|
||||||
dispatch(fetchListSuggestionsReady(q, data));
|
dispatch(fetchListSuggestionsReady(q, data));
|
||||||
}).catch(error => dispatch(showAlertForError(error)));
|
}).catch(error => dispatch(showAlertForError(error)));
|
||||||
|
@ -267,10 +267,10 @@ export const addToListEditor = accountId => (dispatch, getState) => {
|
||||||
dispatch(addToList(getState().getIn(['listEditor', 'listId']), accountId));
|
dispatch(addToList(getState().getIn(['listEditor', 'listId']), accountId));
|
||||||
};
|
};
|
||||||
|
|
||||||
export const addToList = (listId, accountId) => (dispatch, getState) => {
|
export const addToList = (listId, accountId) => (dispatch) => {
|
||||||
dispatch(addToListRequest(listId, accountId));
|
dispatch(addToListRequest(listId, accountId));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/lists/${listId}/accounts`, { account_ids: [accountId] })
|
api().post(`/api/v1/lists/${listId}/accounts`, { account_ids: [accountId] })
|
||||||
.then(() => dispatch(addToListSuccess(listId, accountId)))
|
.then(() => dispatch(addToListSuccess(listId, accountId)))
|
||||||
.catch(err => dispatch(addToListFail(listId, accountId, err)));
|
.catch(err => dispatch(addToListFail(listId, accountId, err)));
|
||||||
};
|
};
|
||||||
|
@ -298,10 +298,10 @@ export const removeFromListEditor = accountId => (dispatch, getState) => {
|
||||||
dispatch(removeFromList(getState().getIn(['listEditor', 'listId']), accountId));
|
dispatch(removeFromList(getState().getIn(['listEditor', 'listId']), accountId));
|
||||||
};
|
};
|
||||||
|
|
||||||
export const removeFromList = (listId, accountId) => (dispatch, getState) => {
|
export const removeFromList = (listId, accountId) => (dispatch) => {
|
||||||
dispatch(removeFromListRequest(listId, accountId));
|
dispatch(removeFromListRequest(listId, accountId));
|
||||||
|
|
||||||
api(getState).delete(`/api/v1/lists/${listId}/accounts`, { params: { account_ids: [accountId] } })
|
api().delete(`/api/v1/lists/${listId}/accounts`, { params: { account_ids: [accountId] } })
|
||||||
.then(() => dispatch(removeFromListSuccess(listId, accountId)))
|
.then(() => dispatch(removeFromListSuccess(listId, accountId)))
|
||||||
.catch(err => dispatch(removeFromListFail(listId, accountId, err)));
|
.catch(err => dispatch(removeFromListFail(listId, accountId, err)));
|
||||||
};
|
};
|
||||||
|
@ -338,10 +338,10 @@ export const setupListAdder = accountId => (dispatch, getState) => {
|
||||||
dispatch(fetchAccountLists(accountId));
|
dispatch(fetchAccountLists(accountId));
|
||||||
};
|
};
|
||||||
|
|
||||||
export const fetchAccountLists = accountId => (dispatch, getState) => {
|
export const fetchAccountLists = accountId => (dispatch) => {
|
||||||
dispatch(fetchAccountListsRequest(accountId));
|
dispatch(fetchAccountListsRequest(accountId));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/accounts/${accountId}/lists`)
|
api().get(`/api/v1/accounts/${accountId}/lists`)
|
||||||
.then(({ data }) => dispatch(fetchAccountListsSuccess(accountId, data)))
|
.then(({ data }) => dispatch(fetchAccountListsSuccess(accountId, data)))
|
||||||
.catch(err => dispatch(fetchAccountListsFail(accountId, err)));
|
.catch(err => dispatch(fetchAccountListsFail(accountId, err)));
|
||||||
};
|
};
|
||||||
|
@ -370,4 +370,3 @@ export const addToListAdder = listId => (dispatch, getState) => {
|
||||||
export const removeFromListAdder = listId => (dispatch, getState) => {
|
export const removeFromListAdder = listId => (dispatch, getState) => {
|
||||||
dispatch(removeFromList(listId, getState().getIn(['listAdder', 'accountId'])));
|
dispatch(removeFromList(listId, getState().getIn(['listAdder', 'accountId'])));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,24 @@
|
||||||
import { debounce } from 'lodash';
|
import { debounce } from 'lodash';
|
||||||
|
|
||||||
import type { MarkerJSON } from 'mastodon/api_types/markers';
|
import type { MarkerJSON } from 'mastodon/api_types/markers';
|
||||||
|
import { getAccessToken } from 'mastodon/initial_state';
|
||||||
import type { AppDispatch, RootState } from 'mastodon/store';
|
import type { AppDispatch, RootState } from 'mastodon/store';
|
||||||
import { createAppAsyncThunk } from 'mastodon/store/typed_functions';
|
import { createAppAsyncThunk } from 'mastodon/store/typed_functions';
|
||||||
|
|
||||||
import api, { authorizationTokenFromState } from '../api';
|
import api from '../api';
|
||||||
import { compareId } from '../compare_id';
|
import { compareId } from '../compare_id';
|
||||||
|
|
||||||
export const synchronouslySubmitMarkers = createAppAsyncThunk(
|
export const synchronouslySubmitMarkers = createAppAsyncThunk(
|
||||||
'markers/submit',
|
'markers/submit',
|
||||||
async (_args, { getState }) => {
|
async (_args, { getState }) => {
|
||||||
const accessToken = authorizationTokenFromState(getState);
|
const accessToken = getAccessToken();
|
||||||
const params = buildPostMarkersParams(getState());
|
const params = buildPostMarkersParams(getState());
|
||||||
|
|
||||||
if (Object.keys(params).length === 0 || !accessToken) {
|
if (
|
||||||
|
Object.keys(params).length === 0 ||
|
||||||
|
!accessToken ||
|
||||||
|
accessToken === ''
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,14 +101,14 @@ export const submitMarkersAction = createAppAsyncThunk<{
|
||||||
home: string | undefined;
|
home: string | undefined;
|
||||||
notifications: string | undefined;
|
notifications: string | undefined;
|
||||||
}>('markers/submitAction', async (_args, { getState }) => {
|
}>('markers/submitAction', async (_args, { getState }) => {
|
||||||
const accessToken = authorizationTokenFromState(getState);
|
const accessToken = getAccessToken();
|
||||||
const params = buildPostMarkersParams(getState());
|
const params = buildPostMarkersParams(getState());
|
||||||
|
|
||||||
if (Object.keys(params).length === 0 || accessToken === '') {
|
if (Object.keys(params).length === 0 || !accessToken || accessToken === '') {
|
||||||
return { home: undefined, notifications: undefined };
|
return { home: undefined, notifications: undefined };
|
||||||
}
|
}
|
||||||
|
|
||||||
await api(getState).post<MarkerJSON>('/api/v1/markers', params);
|
await api().post<MarkerJSON>('/api/v1/markers', params);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
home: params.home?.last_read_id,
|
home: params.home?.last_read_id,
|
||||||
|
@ -133,14 +138,11 @@ export const submitMarkers = createAppAsyncThunk(
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export const fetchMarkers = createAppAsyncThunk(
|
export const fetchMarkers = createAppAsyncThunk('markers/fetch', async () => {
|
||||||
'markers/fetch',
|
const response = await api().get<Record<string, MarkerJSON>>(
|
||||||
async (_args, { getState }) => {
|
`/api/v1/markers`,
|
||||||
const response = await api(getState).get<Record<string, MarkerJSON>>(
|
{ params: { timeline: ['notifications'] } },
|
||||||
`/api/v1/markers`,
|
);
|
||||||
{ params: { timeline: ['notifications'] } },
|
|
||||||
);
|
|
||||||
|
|
||||||
return { markers: response.data };
|
return { markers: response.data };
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
|
@ -13,10 +13,10 @@ export const MUTES_EXPAND_SUCCESS = 'MUTES_EXPAND_SUCCESS';
|
||||||
export const MUTES_EXPAND_FAIL = 'MUTES_EXPAND_FAIL';
|
export const MUTES_EXPAND_FAIL = 'MUTES_EXPAND_FAIL';
|
||||||
|
|
||||||
export function fetchMutes() {
|
export function fetchMutes() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchMutesRequest());
|
dispatch(fetchMutesRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/mutes').then(response => {
|
api().get('/api/v1/mutes').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(fetchMutesSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchMutesSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -56,7 +56,7 @@ export function expandMutes() {
|
||||||
|
|
||||||
dispatch(expandMutesRequest());
|
dispatch(expandMutesRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data));
|
dispatch(importFetchedAccounts(response.data));
|
||||||
dispatch(expandMutesSuccess(response.data, next ? next.uri : null));
|
dispatch(expandMutesSuccess(response.data, next ? next.uri : null));
|
||||||
|
|
|
@ -216,7 +216,7 @@ export function expandNotifications({ maxId, forceLoad } = {}, done = noOp) {
|
||||||
|
|
||||||
dispatch(expandNotificationsRequest(isLoadingMore));
|
dispatch(expandNotificationsRequest(isLoadingMore));
|
||||||
|
|
||||||
api(getState).get('/api/v1/notifications', { params, signal: expandNotificationsController.signal }).then(response => {
|
api().get('/api/v1/notifications', { params, signal: expandNotificationsController.signal }).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
||||||
|
@ -262,12 +262,12 @@ export function expandNotificationsFail(error, isLoadingMore) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function clearNotifications() {
|
export function clearNotifications() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch({
|
dispatch({
|
||||||
type: NOTIFICATIONS_CLEAR,
|
type: NOTIFICATIONS_CLEAR,
|
||||||
});
|
});
|
||||||
|
|
||||||
api(getState).post('/api/v1/notifications/clear');
|
api().post('/api/v1/notifications/clear');
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -346,10 +346,10 @@ export function setBrowserPermission (value) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const fetchNotificationPolicy = () => (dispatch, getState) => {
|
export const fetchNotificationPolicy = () => (dispatch) => {
|
||||||
dispatch(fetchNotificationPolicyRequest());
|
dispatch(fetchNotificationPolicyRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/notifications/policy').then(({ data }) => {
|
api().get('/api/v1/notifications/policy').then(({ data }) => {
|
||||||
dispatch(fetchNotificationPolicySuccess(data));
|
dispatch(fetchNotificationPolicySuccess(data));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(fetchNotificationPolicyFail(err));
|
dispatch(fetchNotificationPolicyFail(err));
|
||||||
|
@ -370,10 +370,10 @@ export const fetchNotificationPolicyFail = error => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const updateNotificationsPolicy = params => (dispatch, getState) => {
|
export const updateNotificationsPolicy = params => (dispatch) => {
|
||||||
dispatch(fetchNotificationPolicyRequest());
|
dispatch(fetchNotificationPolicyRequest());
|
||||||
|
|
||||||
api(getState).put('/api/v1/notifications/policy', params).then(({ data }) => {
|
api().put('/api/v1/notifications/policy', params).then(({ data }) => {
|
||||||
dispatch(fetchNotificationPolicySuccess(data));
|
dispatch(fetchNotificationPolicySuccess(data));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(fetchNotificationPolicyFail(err));
|
dispatch(fetchNotificationPolicyFail(err));
|
||||||
|
@ -393,7 +393,7 @@ export const fetchNotificationRequests = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchNotificationRequestsRequest());
|
dispatch(fetchNotificationRequestsRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/notifications/requests', { params }).then(response => {
|
api().get('/api/v1/notifications/requests', { params }).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data.map(x => x.account)));
|
dispatch(importFetchedAccounts(response.data.map(x => x.account)));
|
||||||
dispatch(fetchNotificationRequestsSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchNotificationRequestsSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -426,7 +426,7 @@ export const expandNotificationRequests = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(expandNotificationRequestsRequest());
|
dispatch(expandNotificationRequestsRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data.map(x => x.account)));
|
dispatch(importFetchedAccounts(response.data.map(x => x.account)));
|
||||||
dispatch(expandNotificationRequestsSuccess(response.data, next?.uri));
|
dispatch(expandNotificationRequestsSuccess(response.data, next?.uri));
|
||||||
|
@ -459,7 +459,7 @@ export const fetchNotificationRequest = id => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchNotificationRequestRequest(id));
|
dispatch(fetchNotificationRequestRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/notifications/requests/${id}`).then(({ data }) => {
|
api().get(`/api/v1/notifications/requests/${id}`).then(({ data }) => {
|
||||||
dispatch(fetchNotificationRequestSuccess(data));
|
dispatch(fetchNotificationRequestSuccess(data));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(fetchNotificationRequestFail(id, err));
|
dispatch(fetchNotificationRequestFail(id, err));
|
||||||
|
@ -482,10 +482,10 @@ export const fetchNotificationRequestFail = (id, error) => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const acceptNotificationRequest = id => (dispatch, getState) => {
|
export const acceptNotificationRequest = id => (dispatch) => {
|
||||||
dispatch(acceptNotificationRequestRequest(id));
|
dispatch(acceptNotificationRequestRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/notifications/requests/${id}/accept`).then(() => {
|
api().post(`/api/v1/notifications/requests/${id}/accept`).then(() => {
|
||||||
dispatch(acceptNotificationRequestSuccess(id));
|
dispatch(acceptNotificationRequestSuccess(id));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(acceptNotificationRequestFail(id, err));
|
dispatch(acceptNotificationRequestFail(id, err));
|
||||||
|
@ -508,10 +508,10 @@ export const acceptNotificationRequestFail = (id, error) => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const dismissNotificationRequest = id => (dispatch, getState) => {
|
export const dismissNotificationRequest = id => (dispatch) => {
|
||||||
dispatch(dismissNotificationRequestRequest(id));
|
dispatch(dismissNotificationRequestRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/notifications/requests/${id}/dismiss`).then(() =>{
|
api().post(`/api/v1/notifications/requests/${id}/dismiss`).then(() =>{
|
||||||
dispatch(dismissNotificationRequestSuccess(id));
|
dispatch(dismissNotificationRequestSuccess(id));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(dismissNotificationRequestFail(id, err));
|
dispatch(dismissNotificationRequestFail(id, err));
|
||||||
|
@ -550,7 +550,7 @@ export const fetchNotificationsForRequest = accountId => (dispatch, getState) =>
|
||||||
|
|
||||||
dispatch(fetchNotificationsForRequestRequest());
|
dispatch(fetchNotificationsForRequestRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/notifications', { params }).then(response => {
|
api().get('/api/v1/notifications', { params }).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
||||||
dispatch(importFetchedStatuses(response.data.map(item => item.status).filter(status => !!status)));
|
dispatch(importFetchedStatuses(response.data.map(item => item.status).filter(status => !!status)));
|
||||||
|
@ -586,7 +586,7 @@ export const expandNotificationsForRequest = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(expandNotificationsForRequestRequest());
|
dispatch(expandNotificationsForRequestRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
||||||
dispatch(importFetchedStatuses(response.data.map(item => item.status).filter(status => !!status)));
|
dispatch(importFetchedStatuses(response.data.map(item => item.status).filter(status => !!status)));
|
||||||
|
|
|
@ -8,10 +8,10 @@ export const PINNED_STATUSES_FETCH_SUCCESS = 'PINNED_STATUSES_FETCH_SUCCESS';
|
||||||
export const PINNED_STATUSES_FETCH_FAIL = 'PINNED_STATUSES_FETCH_FAIL';
|
export const PINNED_STATUSES_FETCH_FAIL = 'PINNED_STATUSES_FETCH_FAIL';
|
||||||
|
|
||||||
export function fetchPinnedStatuses() {
|
export function fetchPinnedStatuses() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchPinnedStatusesRequest());
|
dispatch(fetchPinnedStatusesRequest());
|
||||||
|
|
||||||
api(getState).get(`/api/v1/accounts/${me}/statuses`, { params: { pinned: true } }).then(response => {
|
api().get(`/api/v1/accounts/${me}/statuses`, { params: { pinned: true } }).then(response => {
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
dispatch(fetchPinnedStatusesSuccess(response.data, null));
|
dispatch(fetchPinnedStatusesSuccess(response.data, null));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
|
|
@ -10,10 +10,10 @@ export const POLL_FETCH_REQUEST = 'POLL_FETCH_REQUEST';
|
||||||
export const POLL_FETCH_SUCCESS = 'POLL_FETCH_SUCCESS';
|
export const POLL_FETCH_SUCCESS = 'POLL_FETCH_SUCCESS';
|
||||||
export const POLL_FETCH_FAIL = 'POLL_FETCH_FAIL';
|
export const POLL_FETCH_FAIL = 'POLL_FETCH_FAIL';
|
||||||
|
|
||||||
export const vote = (pollId, choices) => (dispatch, getState) => {
|
export const vote = (pollId, choices) => (dispatch) => {
|
||||||
dispatch(voteRequest());
|
dispatch(voteRequest());
|
||||||
|
|
||||||
api(getState).post(`/api/v1/polls/${pollId}/votes`, { choices })
|
api().post(`/api/v1/polls/${pollId}/votes`, { choices })
|
||||||
.then(({ data }) => {
|
.then(({ data }) => {
|
||||||
dispatch(importFetchedPoll(data));
|
dispatch(importFetchedPoll(data));
|
||||||
dispatch(voteSuccess(data));
|
dispatch(voteSuccess(data));
|
||||||
|
@ -21,10 +21,10 @@ export const vote = (pollId, choices) => (dispatch, getState) => {
|
||||||
.catch(err => dispatch(voteFail(err)));
|
.catch(err => dispatch(voteFail(err)));
|
||||||
};
|
};
|
||||||
|
|
||||||
export const fetchPoll = pollId => (dispatch, getState) => {
|
export const fetchPoll = pollId => (dispatch) => {
|
||||||
dispatch(fetchPollRequest());
|
dispatch(fetchPollRequest());
|
||||||
|
|
||||||
api(getState).get(`/api/v1/polls/${pollId}`)
|
api().get(`/api/v1/polls/${pollId}`)
|
||||||
.then(({ data }) => {
|
.then(({ data }) => {
|
||||||
dispatch(importFetchedPoll(data));
|
dispatch(importFetchedPoll(data));
|
||||||
dispatch(fetchPollSuccess(data));
|
dispatch(fetchPollSuccess(data));
|
||||||
|
|
|
@ -15,10 +15,10 @@ export const initReport = (account, status) => dispatch =>
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const submitReport = (params, onSuccess, onFail) => (dispatch, getState) => {
|
export const submitReport = (params, onSuccess, onFail) => (dispatch) => {
|
||||||
dispatch(submitReportRequest());
|
dispatch(submitReportRequest());
|
||||||
|
|
||||||
api(getState).post('/api/v1/reports', params).then(response => {
|
api().post('/api/v1/reports', params).then(response => {
|
||||||
dispatch(submitReportSuccess(response.data));
|
dispatch(submitReportSuccess(response.data));
|
||||||
if (onSuccess) onSuccess();
|
if (onSuccess) onSuccess();
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
|
|
@ -46,7 +46,7 @@ export function submitSearch(type) {
|
||||||
|
|
||||||
dispatch(fetchSearchRequest(type));
|
dispatch(fetchSearchRequest(type));
|
||||||
|
|
||||||
api(getState).get('/api/v2/search', {
|
api().get('/api/v2/search', {
|
||||||
params: {
|
params: {
|
||||||
q: value,
|
q: value,
|
||||||
resolve: signedIn,
|
resolve: signedIn,
|
||||||
|
@ -99,7 +99,7 @@ export const expandSearch = type => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(expandSearchRequest(type));
|
dispatch(expandSearchRequest(type));
|
||||||
|
|
||||||
api(getState).get('/api/v2/search', {
|
api().get('/api/v2/search', {
|
||||||
params: {
|
params: {
|
||||||
q: value,
|
q: value,
|
||||||
type,
|
type,
|
||||||
|
@ -156,7 +156,7 @@ export const openURL = (value, history, onFailure) => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchSearchRequest());
|
dispatch(fetchSearchRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v2/search', { params: { q: value, resolve: true } }).then(response => {
|
api().get('/api/v2/search', { params: { q: value, resolve: true } }).then(response => {
|
||||||
if (response.data.accounts?.length > 0) {
|
if (response.data.accounts?.length > 0) {
|
||||||
dispatch(importFetchedAccounts(response.data.accounts));
|
dispatch(importFetchedAccounts(response.data.accounts));
|
||||||
history.push(`/@${response.data.accounts[0].acct}`);
|
history.push(`/@${response.data.accounts[0].acct}`);
|
||||||
|
|
|
@ -25,7 +25,7 @@ export const fetchServer = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchServerRequest());
|
dispatch(fetchServerRequest());
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.get('/api/v2/instance').then(({ data }) => {
|
.get('/api/v2/instance').then(({ data }) => {
|
||||||
if (data.contact.account) dispatch(importFetchedAccount(data.contact.account));
|
if (data.contact.account) dispatch(importFetchedAccount(data.contact.account));
|
||||||
dispatch(fetchServerSuccess(data));
|
dispatch(fetchServerSuccess(data));
|
||||||
|
@ -46,10 +46,10 @@ const fetchServerFail = error => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const fetchServerTranslationLanguages = () => (dispatch, getState) => {
|
export const fetchServerTranslationLanguages = () => (dispatch) => {
|
||||||
dispatch(fetchServerTranslationLanguagesRequest());
|
dispatch(fetchServerTranslationLanguagesRequest());
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.get('/api/v1/instance/translation_languages').then(({ data }) => {
|
.get('/api/v1/instance/translation_languages').then(({ data }) => {
|
||||||
dispatch(fetchServerTranslationLanguagesSuccess(data));
|
dispatch(fetchServerTranslationLanguagesSuccess(data));
|
||||||
}).catch(err => dispatch(fetchServerTranslationLanguagesFail(err)));
|
}).catch(err => dispatch(fetchServerTranslationLanguagesFail(err)));
|
||||||
|
@ -76,7 +76,7 @@ export const fetchExtendedDescription = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchExtendedDescriptionRequest());
|
dispatch(fetchExtendedDescriptionRequest());
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.get('/api/v1/instance/extended_description')
|
.get('/api/v1/instance/extended_description')
|
||||||
.then(({ data }) => dispatch(fetchExtendedDescriptionSuccess(data)))
|
.then(({ data }) => dispatch(fetchExtendedDescriptionSuccess(data)))
|
||||||
.catch(err => dispatch(fetchExtendedDescriptionFail(err)));
|
.catch(err => dispatch(fetchExtendedDescriptionFail(err)));
|
||||||
|
@ -103,7 +103,7 @@ export const fetchDomainBlocks = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchDomainBlocksRequest());
|
dispatch(fetchDomainBlocksRequest());
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.get('/api/v1/instance/domain_blocks')
|
.get('/api/v1/instance/domain_blocks')
|
||||||
.then(({ data }) => dispatch(fetchDomainBlocksSuccess(true, data)))
|
.then(({ data }) => dispatch(fetchDomainBlocksSuccess(true, data)))
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
|
|
|
@ -59,7 +59,7 @@ export function fetchStatus(id, forceFetch = false) {
|
||||||
|
|
||||||
dispatch(fetchStatusRequest(id, skipLoading));
|
dispatch(fetchStatusRequest(id, skipLoading));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/statuses/${id}`).then(response => {
|
api().get(`/api/v1/statuses/${id}`).then(response => {
|
||||||
dispatch(importFetchedStatus(response.data));
|
dispatch(importFetchedStatus(response.data));
|
||||||
dispatch(fetchStatusSuccess(skipLoading));
|
dispatch(fetchStatusSuccess(skipLoading));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -102,7 +102,7 @@ export const editStatus = (id, routerHistory) => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchStatusSourceRequest());
|
dispatch(fetchStatusSourceRequest());
|
||||||
|
|
||||||
api(getState).get(`/api/v1/statuses/${id}/source`).then(response => {
|
api().get(`/api/v1/statuses/${id}/source`).then(response => {
|
||||||
dispatch(fetchStatusSourceSuccess());
|
dispatch(fetchStatusSourceSuccess());
|
||||||
ensureComposeIsVisible(getState, routerHistory);
|
ensureComposeIsVisible(getState, routerHistory);
|
||||||
dispatch(setComposeToStatus(status, response.data.text, response.data.spoiler_text));
|
dispatch(setComposeToStatus(status, response.data.text, response.data.spoiler_text));
|
||||||
|
@ -134,7 +134,7 @@ export function deleteStatus(id, routerHistory, withRedraft = false) {
|
||||||
|
|
||||||
dispatch(deleteStatusRequest(id));
|
dispatch(deleteStatusRequest(id));
|
||||||
|
|
||||||
api(getState).delete(`/api/v1/statuses/${id}`).then(response => {
|
api().delete(`/api/v1/statuses/${id}`).then(response => {
|
||||||
dispatch(deleteStatusSuccess(id));
|
dispatch(deleteStatusSuccess(id));
|
||||||
dispatch(deleteFromTimelines(id));
|
dispatch(deleteFromTimelines(id));
|
||||||
dispatch(importFetchedAccount(response.data.account));
|
dispatch(importFetchedAccount(response.data.account));
|
||||||
|
@ -175,10 +175,10 @@ export const updateStatus = status => dispatch =>
|
||||||
dispatch(importFetchedStatus(status));
|
dispatch(importFetchedStatus(status));
|
||||||
|
|
||||||
export function fetchContext(id) {
|
export function fetchContext(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchContextRequest(id));
|
dispatch(fetchContextRequest(id));
|
||||||
|
|
||||||
api(getState).get(`/api/v1/statuses/${id}/context`).then(response => {
|
api().get(`/api/v1/statuses/${id}/context`).then(response => {
|
||||||
dispatch(importFetchedStatuses(response.data.ancestors.concat(response.data.descendants)));
|
dispatch(importFetchedStatuses(response.data.ancestors.concat(response.data.descendants)));
|
||||||
dispatch(fetchContextSuccess(id, response.data.ancestors, response.data.descendants));
|
dispatch(fetchContextSuccess(id, response.data.ancestors, response.data.descendants));
|
||||||
|
|
||||||
|
@ -219,10 +219,10 @@ export function fetchContextFail(id, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function muteStatus(id) {
|
export function muteStatus(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(muteStatusRequest(id));
|
dispatch(muteStatusRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${id}/mute`).then(() => {
|
api().post(`/api/v1/statuses/${id}/mute`).then(() => {
|
||||||
dispatch(muteStatusSuccess(id));
|
dispatch(muteStatusSuccess(id));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(muteStatusFail(id, error));
|
dispatch(muteStatusFail(id, error));
|
||||||
|
@ -253,10 +253,10 @@ export function muteStatusFail(id, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function unmuteStatus(id) {
|
export function unmuteStatus(id) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(unmuteStatusRequest(id));
|
dispatch(unmuteStatusRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${id}/unmute`).then(() => {
|
api().post(`/api/v1/statuses/${id}/unmute`).then(() => {
|
||||||
dispatch(unmuteStatusSuccess(id));
|
dispatch(unmuteStatusSuccess(id));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(unmuteStatusFail(id, error));
|
dispatch(unmuteStatusFail(id, error));
|
||||||
|
@ -316,10 +316,10 @@ export function toggleStatusCollapse(id, isCollapsed) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const translateStatus = id => (dispatch, getState) => {
|
export const translateStatus = id => (dispatch) => {
|
||||||
dispatch(translateStatusRequest(id));
|
dispatch(translateStatusRequest(id));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${id}/translate`).then(response => {
|
api().post(`/api/v1/statuses/${id}/translate`).then(response => {
|
||||||
dispatch(translateStatusSuccess(id, response.data));
|
dispatch(translateStatusSuccess(id, response.data));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(translateStatusFail(id, error));
|
dispatch(translateStatusFail(id, error));
|
||||||
|
|
|
@ -10,10 +10,10 @@ export const SUGGESTIONS_FETCH_FAIL = 'SUGGESTIONS_FETCH_FAIL';
|
||||||
export const SUGGESTIONS_DISMISS = 'SUGGESTIONS_DISMISS';
|
export const SUGGESTIONS_DISMISS = 'SUGGESTIONS_DISMISS';
|
||||||
|
|
||||||
export function fetchSuggestions(withRelationships = false) {
|
export function fetchSuggestions(withRelationships = false) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch) => {
|
||||||
dispatch(fetchSuggestionsRequest());
|
dispatch(fetchSuggestionsRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v2/suggestions', { params: { limit: 20 } }).then(response => {
|
api().get('/api/v2/suggestions', { params: { limit: 20 } }).then(response => {
|
||||||
dispatch(importFetchedAccounts(response.data.map(x => x.account)));
|
dispatch(importFetchedAccounts(response.data.map(x => x.account)));
|
||||||
dispatch(fetchSuggestionsSuccess(response.data));
|
dispatch(fetchSuggestionsSuccess(response.data));
|
||||||
|
|
||||||
|
@ -48,11 +48,11 @@ export function fetchSuggestionsFail(error) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const dismissSuggestion = accountId => (dispatch, getState) => {
|
export const dismissSuggestion = accountId => (dispatch) => {
|
||||||
dispatch({
|
dispatch({
|
||||||
type: SUGGESTIONS_DISMISS,
|
type: SUGGESTIONS_DISMISS,
|
||||||
id: accountId,
|
id: accountId,
|
||||||
});
|
});
|
||||||
|
|
||||||
api(getState).delete(`/api/v1/suggestions/${accountId}`).catch(() => {});
|
api().delete(`/api/v1/suggestions/${accountId}`).catch(() => {});
|
||||||
};
|
};
|
||||||
|
|
|
@ -20,10 +20,10 @@ export const HASHTAG_UNFOLLOW_REQUEST = 'HASHTAG_UNFOLLOW_REQUEST';
|
||||||
export const HASHTAG_UNFOLLOW_SUCCESS = 'HASHTAG_UNFOLLOW_SUCCESS';
|
export const HASHTAG_UNFOLLOW_SUCCESS = 'HASHTAG_UNFOLLOW_SUCCESS';
|
||||||
export const HASHTAG_UNFOLLOW_FAIL = 'HASHTAG_UNFOLLOW_FAIL';
|
export const HASHTAG_UNFOLLOW_FAIL = 'HASHTAG_UNFOLLOW_FAIL';
|
||||||
|
|
||||||
export const fetchHashtag = name => (dispatch, getState) => {
|
export const fetchHashtag = name => (dispatch) => {
|
||||||
dispatch(fetchHashtagRequest());
|
dispatch(fetchHashtagRequest());
|
||||||
|
|
||||||
api(getState).get(`/api/v1/tags/${name}`).then(({ data }) => {
|
api().get(`/api/v1/tags/${name}`).then(({ data }) => {
|
||||||
dispatch(fetchHashtagSuccess(name, data));
|
dispatch(fetchHashtagSuccess(name, data));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(fetchHashtagFail(err));
|
dispatch(fetchHashtagFail(err));
|
||||||
|
@ -45,10 +45,10 @@ export const fetchHashtagFail = error => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const fetchFollowedHashtags = () => (dispatch, getState) => {
|
export const fetchFollowedHashtags = () => (dispatch) => {
|
||||||
dispatch(fetchFollowedHashtagsRequest());
|
dispatch(fetchFollowedHashtagsRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/followed_tags').then(response => {
|
api().get('/api/v1/followed_tags').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(fetchFollowedHashtagsSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchFollowedHashtagsSuccess(response.data, next ? next.uri : null));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
@ -87,7 +87,7 @@ export function expandFollowedHashtags() {
|
||||||
|
|
||||||
dispatch(expandFollowedHashtagsRequest());
|
dispatch(expandFollowedHashtagsRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(expandFollowedHashtagsSuccess(response.data, next ? next.uri : null));
|
dispatch(expandFollowedHashtagsSuccess(response.data, next ? next.uri : null));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
@ -117,10 +117,10 @@ export function expandFollowedHashtagsFail(error) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const followHashtag = name => (dispatch, getState) => {
|
export const followHashtag = name => (dispatch) => {
|
||||||
dispatch(followHashtagRequest(name));
|
dispatch(followHashtagRequest(name));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/tags/${name}/follow`).then(({ data }) => {
|
api().post(`/api/v1/tags/${name}/follow`).then(({ data }) => {
|
||||||
dispatch(followHashtagSuccess(name, data));
|
dispatch(followHashtagSuccess(name, data));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(followHashtagFail(name, err));
|
dispatch(followHashtagFail(name, err));
|
||||||
|
@ -144,10 +144,10 @@ export const followHashtagFail = (name, error) => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const unfollowHashtag = name => (dispatch, getState) => {
|
export const unfollowHashtag = name => (dispatch) => {
|
||||||
dispatch(unfollowHashtagRequest(name));
|
dispatch(unfollowHashtagRequest(name));
|
||||||
|
|
||||||
api(getState).post(`/api/v1/tags/${name}/unfollow`).then(({ data }) => {
|
api().post(`/api/v1/tags/${name}/unfollow`).then(({ data }) => {
|
||||||
dispatch(unfollowHashtagSuccess(name, data));
|
dispatch(unfollowHashtagSuccess(name, data));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
dispatch(unfollowHashtagFail(name, err));
|
dispatch(unfollowHashtagFail(name, err));
|
||||||
|
|
|
@ -114,7 +114,7 @@ export function expandTimeline(timelineId, path, params = {}, done = noOp) {
|
||||||
|
|
||||||
dispatch(expandTimelineRequest(timelineId, isLoadingMore));
|
dispatch(expandTimelineRequest(timelineId, isLoadingMore));
|
||||||
|
|
||||||
api(getState).get(path, { params }).then(response => {
|
api().get(path, { params }).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
|
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
|
|
|
@ -18,10 +18,10 @@ export const TRENDS_STATUSES_EXPAND_REQUEST = 'TRENDS_STATUSES_EXPAND_REQUEST';
|
||||||
export const TRENDS_STATUSES_EXPAND_SUCCESS = 'TRENDS_STATUSES_EXPAND_SUCCESS';
|
export const TRENDS_STATUSES_EXPAND_SUCCESS = 'TRENDS_STATUSES_EXPAND_SUCCESS';
|
||||||
export const TRENDS_STATUSES_EXPAND_FAIL = 'TRENDS_STATUSES_EXPAND_FAIL';
|
export const TRENDS_STATUSES_EXPAND_FAIL = 'TRENDS_STATUSES_EXPAND_FAIL';
|
||||||
|
|
||||||
export const fetchTrendingHashtags = () => (dispatch, getState) => {
|
export const fetchTrendingHashtags = () => (dispatch) => {
|
||||||
dispatch(fetchTrendingHashtagsRequest());
|
dispatch(fetchTrendingHashtagsRequest());
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.get('/api/v1/trends/tags')
|
.get('/api/v1/trends/tags')
|
||||||
.then(({ data }) => dispatch(fetchTrendingHashtagsSuccess(data)))
|
.then(({ data }) => dispatch(fetchTrendingHashtagsSuccess(data)))
|
||||||
.catch(err => dispatch(fetchTrendingHashtagsFail(err)));
|
.catch(err => dispatch(fetchTrendingHashtagsFail(err)));
|
||||||
|
@ -45,10 +45,10 @@ export const fetchTrendingHashtagsFail = error => ({
|
||||||
skipAlert: true,
|
skipAlert: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const fetchTrendingLinks = () => (dispatch, getState) => {
|
export const fetchTrendingLinks = () => (dispatch) => {
|
||||||
dispatch(fetchTrendingLinksRequest());
|
dispatch(fetchTrendingLinksRequest());
|
||||||
|
|
||||||
api(getState)
|
api()
|
||||||
.get('/api/v1/trends/links')
|
.get('/api/v1/trends/links')
|
||||||
.then(({ data }) => dispatch(fetchTrendingLinksSuccess(data)))
|
.then(({ data }) => dispatch(fetchTrendingLinksSuccess(data)))
|
||||||
.catch(err => dispatch(fetchTrendingLinksFail(err)));
|
.catch(err => dispatch(fetchTrendingLinksFail(err)));
|
||||||
|
@ -79,7 +79,7 @@ export const fetchTrendingStatuses = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(fetchTrendingStatusesRequest());
|
dispatch(fetchTrendingStatusesRequest());
|
||||||
|
|
||||||
api(getState).get('/api/v1/trends/statuses').then(response => {
|
api().get('/api/v1/trends/statuses').then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
dispatch(fetchTrendingStatusesSuccess(response.data, next ? next.uri : null));
|
dispatch(fetchTrendingStatusesSuccess(response.data, next ? next.uri : null));
|
||||||
|
@ -115,7 +115,7 @@ export const expandTrendingStatuses = () => (dispatch, getState) => {
|
||||||
|
|
||||||
dispatch(expandTrendingStatusesRequest());
|
dispatch(expandTrendingStatusesRequest());
|
||||||
|
|
||||||
api(getState).get(url).then(response => {
|
api().get(url).then(response => {
|
||||||
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
||||||
dispatch(importFetchedStatuses(response.data));
|
dispatch(importFetchedStatuses(response.data));
|
||||||
dispatch(expandTrendingStatusesSuccess(response.data, next ? next.uri : null));
|
dispatch(expandTrendingStatusesSuccess(response.data, next ? next.uri : null));
|
||||||
|
|
|
@ -2,8 +2,8 @@ import type { AxiosResponse, RawAxiosRequestHeaders } from 'axios';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import LinkHeader from 'http-link-header';
|
import LinkHeader from 'http-link-header';
|
||||||
|
|
||||||
|
import { getAccessToken } from './initial_state';
|
||||||
import ready from './ready';
|
import ready from './ready';
|
||||||
import type { GetState } from './store';
|
|
||||||
|
|
||||||
export const getLinks = (response: AxiosResponse) => {
|
export const getLinks = (response: AxiosResponse) => {
|
||||||
const value = response.headers.link as string | undefined;
|
const value = response.headers.link as string | undefined;
|
||||||
|
@ -29,30 +29,22 @@ const setCSRFHeader = () => {
|
||||||
|
|
||||||
void ready(setCSRFHeader);
|
void ready(setCSRFHeader);
|
||||||
|
|
||||||
export const authorizationTokenFromState = (getState?: GetState) => {
|
const authorizationTokenFromInitialState = (): RawAxiosRequestHeaders => {
|
||||||
return (
|
const accessToken = getAccessToken();
|
||||||
getState && (getState().meta.get('access_token', '') as string | false)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const authorizationHeaderFromState = (getState?: GetState) => {
|
if (!accessToken) return {};
|
||||||
const accessToken = authorizationTokenFromState(getState);
|
|
||||||
|
|
||||||
if (!accessToken) {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
Authorization: `Bearer ${accessToken}`,
|
Authorization: `Bearer ${accessToken}`,
|
||||||
} as RawAxiosRequestHeaders;
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
// eslint-disable-next-line import/no-default-export
|
// eslint-disable-next-line import/no-default-export
|
||||||
export default function api(getState: GetState) {
|
export default function api() {
|
||||||
return axios.create({
|
return axios.create({
|
||||||
headers: {
|
headers: {
|
||||||
...csrfHeader,
|
...csrfHeader,
|
||||||
...authorizationHeaderFromState(getState),
|
...authorizationTokenFromInitialState(),
|
||||||
},
|
},
|
||||||
|
|
||||||
transformResponse: [
|
transformResponse: [
|
||||||
|
|
|
@ -9,7 +9,6 @@ export interface IdentityContextType {
|
||||||
signedIn: boolean;
|
signedIn: boolean;
|
||||||
accountId: string | undefined;
|
accountId: string | undefined;
|
||||||
disabledAccountId: string | undefined;
|
disabledAccountId: string | undefined;
|
||||||
accessToken: string | undefined;
|
|
||||||
permissions: number;
|
permissions: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,14 +16,12 @@ export const identityContextPropShape = PropTypes.shape({
|
||||||
signedIn: PropTypes.bool.isRequired,
|
signedIn: PropTypes.bool.isRequired,
|
||||||
accountId: PropTypes.string,
|
accountId: PropTypes.string,
|
||||||
disabledAccountId: PropTypes.string,
|
disabledAccountId: PropTypes.string,
|
||||||
accessToken: PropTypes.string,
|
|
||||||
}).isRequired;
|
}).isRequired;
|
||||||
|
|
||||||
export const createIdentityContext = (state: InitialState) => ({
|
export const createIdentityContext = (state: InitialState) => ({
|
||||||
signedIn: !!state.meta.me,
|
signedIn: !!state.meta.me,
|
||||||
accountId: state.meta.me,
|
accountId: state.meta.me,
|
||||||
disabledAccountId: state.meta.disabled_account_id,
|
disabledAccountId: state.meta.disabled_account_id,
|
||||||
accessToken: state.meta.access_token,
|
|
||||||
permissions: state.role?.permissions ?? 0,
|
permissions: state.role?.permissions ?? 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -33,7 +30,6 @@ export const IdentityContext = createContext<IdentityContextType>({
|
||||||
permissions: 0,
|
permissions: 0,
|
||||||
accountId: undefined,
|
accountId: undefined,
|
||||||
disabledAccountId: undefined,
|
disabledAccountId: undefined,
|
||||||
accessToken: undefined,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const useIdentity = () => useContext(IdentityContext);
|
export const useIdentity = () => useContext(IdentityContext);
|
||||||
|
|
|
@ -117,4 +117,11 @@ export const criticalUpdatesPending = initialState?.critical_updates_pending;
|
||||||
export const statusPageUrl = getMeta('status_page_url');
|
export const statusPageUrl = getMeta('status_page_url');
|
||||||
export const sso_redirect = getMeta('sso_redirect');
|
export const sso_redirect = getMeta('sso_redirect');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns {string | undefined}
|
||||||
|
*/
|
||||||
|
export function getAccessToken() {
|
||||||
|
return getMeta('access_token');
|
||||||
|
}
|
||||||
|
|
||||||
export default initialState;
|
export default initialState;
|
||||||
|
|
|
@ -195,8 +195,9 @@
|
||||||
"hashtag.column_header.tag_mode.all": "at {additional}",
|
"hashtag.column_header.tag_mode.all": "at {additional}",
|
||||||
"hashtag.column_header.tag_mode.any": "o {additional}",
|
"hashtag.column_header.tag_mode.any": "o {additional}",
|
||||||
"hashtag.column_settings.tag_mode.all": "Lahat ng nandito",
|
"hashtag.column_settings.tag_mode.all": "Lahat ng nandito",
|
||||||
"hashtag.column_settings.tag_mode.any": "Ilan sa nandito",
|
"hashtag.column_settings.tag_mode.any": "Ilan dito",
|
||||||
"hashtag.column_settings.tag_mode.none": "Wala dito",
|
"hashtag.column_settings.tag_mode.none": "Wala dito",
|
||||||
|
"hashtags.and_other": "…at {count, plural, one {# iba pa} other {# na iba pa}}",
|
||||||
"home.column_settings.show_replies": "Ipakita ang mga tugon",
|
"home.column_settings.show_replies": "Ipakita ang mga tugon",
|
||||||
"home.pending_critical_update.body": "Mangyaring i-update ang iyong serbiro ng Mastodon sa lalong madaling panahon!",
|
"home.pending_critical_update.body": "Mangyaring i-update ang iyong serbiro ng Mastodon sa lalong madaling panahon!",
|
||||||
"interaction_modal.login.action": "Iuwi mo ako",
|
"interaction_modal.login.action": "Iuwi mo ako",
|
||||||
|
@ -224,6 +225,7 @@
|
||||||
"lists.replies_policy.title": "Ipakita ang mga tugon sa:",
|
"lists.replies_policy.title": "Ipakita ang mga tugon sa:",
|
||||||
"lists.subheading": "Iyong mga talaan",
|
"lists.subheading": "Iyong mga talaan",
|
||||||
"loading_indicator.label": "Kumakarga…",
|
"loading_indicator.label": "Kumakarga…",
|
||||||
|
"mute_modal.hide_from_notifications": "Itago mula sa mga abiso",
|
||||||
"navigation_bar.about": "Tungkol dito",
|
"navigation_bar.about": "Tungkol dito",
|
||||||
"navigation_bar.blocks": "Nakaharang na mga tagagamit",
|
"navigation_bar.blocks": "Nakaharang na mga tagagamit",
|
||||||
"navigation_bar.direct": "Mga palihim na banggit",
|
"navigation_bar.direct": "Mga palihim na banggit",
|
||||||
|
@ -233,6 +235,7 @@
|
||||||
"navigation_bar.follow_requests": "Mga hiling sa pagsunod",
|
"navigation_bar.follow_requests": "Mga hiling sa pagsunod",
|
||||||
"navigation_bar.follows_and_followers": "Mga sinusundan at tagasunod",
|
"navigation_bar.follows_and_followers": "Mga sinusundan at tagasunod",
|
||||||
"navigation_bar.lists": "Mga listahan",
|
"navigation_bar.lists": "Mga listahan",
|
||||||
|
"navigation_bar.public_timeline": "Pinagsamang timeline",
|
||||||
"navigation_bar.search": "Maghanap",
|
"navigation_bar.search": "Maghanap",
|
||||||
"notification.admin.report": "Iniulat ni {name} si {target}",
|
"notification.admin.report": "Iniulat ni {name} si {target}",
|
||||||
"notification.follow": "Sinundan ka ni {name}",
|
"notification.follow": "Sinundan ka ni {name}",
|
||||||
|
@ -247,10 +250,12 @@
|
||||||
"notifications.column_settings.alert": "Mga abiso sa Desktop",
|
"notifications.column_settings.alert": "Mga abiso sa Desktop",
|
||||||
"notifications.column_settings.favourite": "Mga paborito:",
|
"notifications.column_settings.favourite": "Mga paborito:",
|
||||||
"notifications.column_settings.follow": "Mga bagong tagasunod:",
|
"notifications.column_settings.follow": "Mga bagong tagasunod:",
|
||||||
|
"notifications.column_settings.poll": "Resulta ng botohan:",
|
||||||
"notifications.column_settings.unread_notifications.category": "Hindi Nabasang mga Abiso",
|
"notifications.column_settings.unread_notifications.category": "Hindi Nabasang mga Abiso",
|
||||||
"notifications.column_settings.update": "Mga pagbago:",
|
"notifications.column_settings.update": "Mga pagbago:",
|
||||||
"notifications.filter.all": "Lahat",
|
"notifications.filter.all": "Lahat",
|
||||||
"notifications.filter.favourites": "Mga paborito",
|
"notifications.filter.favourites": "Mga paborito",
|
||||||
|
"notifications.filter.polls": "Resulta ng botohan",
|
||||||
"notifications.mark_as_read": "Markahan lahat ng abiso bilang nabasa na",
|
"notifications.mark_as_read": "Markahan lahat ng abiso bilang nabasa na",
|
||||||
"notifications.policy.filter_not_followers_title": "Mga taong hindi ka susundan",
|
"notifications.policy.filter_not_followers_title": "Mga taong hindi ka susundan",
|
||||||
"notifications.policy.filter_not_following_title": "Mga taong hindi mo sinusundan",
|
"notifications.policy.filter_not_following_title": "Mga taong hindi mo sinusundan",
|
||||||
|
@ -294,10 +299,13 @@
|
||||||
"report.thanks.title": "Ayaw mo bang makita ito?",
|
"report.thanks.title": "Ayaw mo bang makita ito?",
|
||||||
"report.thanks.title_actionable": "Salamat sa pag-uulat, titingnan namin ito.",
|
"report.thanks.title_actionable": "Salamat sa pag-uulat, titingnan namin ito.",
|
||||||
"report_notification.categories.other": "Iba pa",
|
"report_notification.categories.other": "Iba pa",
|
||||||
|
"report_notification.categories.violation": "Paglabag sa patakaran",
|
||||||
|
"report_notification.open": "Buksan ang ulat",
|
||||||
"search.quick_action.open_url": "Buksan ang URL sa Mastodon",
|
"search.quick_action.open_url": "Buksan ang URL sa Mastodon",
|
||||||
"search.search_or_paste": "Maghanap o ilagay ang URL",
|
"search.search_or_paste": "Maghanap o ilagay ang URL",
|
||||||
"search_popout.full_text_search_disabled_message": "Hindi magagamit sa {domain}.",
|
"search_popout.full_text_search_disabled_message": "Hindi magagamit sa {domain}.",
|
||||||
"search_popout.full_text_search_logged_out_message": "Magagamit lamang kapag naka-log in.",
|
"search_popout.full_text_search_logged_out_message": "Magagamit lamang kapag naka-log in.",
|
||||||
|
"search_popout.recent": "Kamakailang mga paghahanap",
|
||||||
"search_results.all": "Lahat",
|
"search_results.all": "Lahat",
|
||||||
"search_results.see_all": "Ipakita lahat",
|
"search_results.see_all": "Ipakita lahat",
|
||||||
"server_banner.learn_more": "Matuto nang higit pa",
|
"server_banner.learn_more": "Matuto nang higit pa",
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
"attachments_list.unprocessed": "(neapstrādāti)",
|
"attachments_list.unprocessed": "(neapstrādāti)",
|
||||||
"audio.hide": "Slēpt audio",
|
"audio.hide": "Slēpt audio",
|
||||||
"block_modal.remote_users_caveat": "Mēs vaicāsim serverim {domain} ņemt vērā Tavu lēmumu. Tomēr atbilstība nav nodrošināta, jo atsevišķi serveri var apstrādāt bloķēšanu citādi. Publiski ieraksti joprojām var būt redzami lietotājiem, kuri nav pieteikušies.",
|
"block_modal.remote_users_caveat": "Mēs vaicāsim serverim {domain} ņemt vērā Tavu lēmumu. Tomēr atbilstība nav nodrošināta, jo atsevišķi serveri var apstrādāt bloķēšanu citādi. Publiski ieraksti joprojām var būt redzami lietotājiem, kuri nav pieteikušies.",
|
||||||
"block_modal.show_less": "Parādīt vairāk",
|
"block_modal.show_less": "Rādīt mazāk",
|
||||||
"block_modal.show_more": "Parādīt mazāk",
|
"block_modal.show_more": "Parādīt mazāk",
|
||||||
"boost_modal.combo": "Nospied {combo}, lai nākamreiz šo izlaistu",
|
"boost_modal.combo": "Nospied {combo}, lai nākamreiz šo izlaistu",
|
||||||
"bundle_column_error.copy_stacktrace": "Kopēt kļūdu ziņojumu",
|
"bundle_column_error.copy_stacktrace": "Kopēt kļūdu ziņojumu",
|
||||||
|
@ -309,7 +309,7 @@
|
||||||
"hashtag.counter_by_uses_today": "{count, plural, zero {{counter} ierakstu} one {{counter} ieraksts} other {{counter} ieraksti}} šodien",
|
"hashtag.counter_by_uses_today": "{count, plural, zero {{counter} ierakstu} one {{counter} ieraksts} other {{counter} ieraksti}} šodien",
|
||||||
"hashtag.follow": "Sekot tēmturim",
|
"hashtag.follow": "Sekot tēmturim",
|
||||||
"hashtag.unfollow": "Pārstāt sekot tēmturim",
|
"hashtag.unfollow": "Pārstāt sekot tēmturim",
|
||||||
"hashtags.and_other": "..un {count, plural, other {# vairāk}}",
|
"hashtags.and_other": "… un {count, plural, other {vēl #}}",
|
||||||
"home.column_settings.show_reblogs": "Rādīt pastiprinātos ierakstus",
|
"home.column_settings.show_reblogs": "Rādīt pastiprinātos ierakstus",
|
||||||
"home.column_settings.show_replies": "Rādīt atbildes",
|
"home.column_settings.show_replies": "Rādīt atbildes",
|
||||||
"home.hide_announcements": "Slēpt paziņojumus",
|
"home.hide_announcements": "Slēpt paziņojumus",
|
||||||
|
|
|
@ -6,7 +6,6 @@ import { layoutFromWindow } from 'mastodon/is_mobile';
|
||||||
|
|
||||||
const initialState = ImmutableMap({
|
const initialState = ImmutableMap({
|
||||||
streaming_api_base_url: null,
|
streaming_api_base_url: null,
|
||||||
access_token: null,
|
|
||||||
layout: layoutFromWindow(),
|
layout: layoutFromWindow(),
|
||||||
permissions: '0',
|
permissions: '0',
|
||||||
});
|
});
|
||||||
|
@ -14,7 +13,8 @@ const initialState = ImmutableMap({
|
||||||
export default function meta(state = initialState, action) {
|
export default function meta(state = initialState, action) {
|
||||||
switch(action.type) {
|
switch(action.type) {
|
||||||
case STORE_HYDRATE:
|
case STORE_HYDRATE:
|
||||||
return state.merge(action.state.get('meta')).set('permissions', action.state.getIn(['role', 'permissions']));
|
// we do not want `access_token` to be stored in the state
|
||||||
|
return state.merge(action.state.get('meta')).delete('access_token').set('permissions', action.state.getIn(['role', 'permissions']));
|
||||||
case changeLayout.type:
|
case changeLayout.type:
|
||||||
return state.set('layout', action.payload.layout);
|
return state.set('layout', action.payload.layout);
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
import WebSocketClient from '@gamestdio/websocket';
|
import WebSocketClient from '@gamestdio/websocket';
|
||||||
|
|
||||||
|
import { getAccessToken } from './initial_state';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {WebSocketClient | undefined}
|
* @type {WebSocketClient | undefined}
|
||||||
*/
|
*/
|
||||||
|
@ -145,9 +147,11 @@ const channelNameWithInlineParams = (channelName, params) => {
|
||||||
// @ts-expect-error
|
// @ts-expect-error
|
||||||
export const connectStream = (channelName, params, callbacks) => (dispatch, getState) => {
|
export const connectStream = (channelName, params, callbacks) => (dispatch, getState) => {
|
||||||
const streamingAPIBaseURL = getState().getIn(['meta', 'streaming_api_base_url']);
|
const streamingAPIBaseURL = getState().getIn(['meta', 'streaming_api_base_url']);
|
||||||
const accessToken = getState().getIn(['meta', 'access_token']);
|
const accessToken = getAccessToken();
|
||||||
const { onConnect, onReceive, onDisconnect } = callbacks(dispatch, getState);
|
const { onConnect, onReceive, onDisconnect } = callbacks(dispatch, getState);
|
||||||
|
|
||||||
|
if(!accessToken) throw new Error("Trying to connect to the streaming server but no access token is available.");
|
||||||
|
|
||||||
// If we cannot use a websockets connection, we must fall back
|
// If we cannot use a websockets connection, we must fall back
|
||||||
// to using individual connections for each channel
|
// to using individual connections for each channel
|
||||||
if (!streamingAPIBaseURL.startsWith('ws')) {
|
if (!streamingAPIBaseURL.startsWith('ws')) {
|
||||||
|
|
|
@ -14,7 +14,6 @@ function render(
|
||||||
const fakeIdentity = {
|
const fakeIdentity = {
|
||||||
signedIn: signedIn,
|
signedIn: signedIn,
|
||||||
accountId: '123',
|
accountId: '123',
|
||||||
accessToken: 'test-access-token',
|
|
||||||
disabledAccountId: undefined,
|
disabledAccountId: undefined,
|
||||||
permissions: 0,
|
permissions: 0,
|
||||||
};
|
};
|
||||||
|
|
|
@ -950,7 +950,7 @@ en-GB:
|
||||||
delete: Delete
|
delete: Delete
|
||||||
edit_preset: Edit warning preset
|
edit_preset: Edit warning preset
|
||||||
empty: You haven't defined any warning presets yet.
|
empty: You haven't defined any warning presets yet.
|
||||||
title: Manage warning presets
|
title: Warning presets
|
||||||
webhooks:
|
webhooks:
|
||||||
add_new: Add endpoint
|
add_new: Add endpoint
|
||||||
delete: Delete
|
delete: Delete
|
||||||
|
|
|
@ -951,7 +951,7 @@ en:
|
||||||
delete: Delete
|
delete: Delete
|
||||||
edit_preset: Edit warning preset
|
edit_preset: Edit warning preset
|
||||||
empty: You haven't defined any warning presets yet.
|
empty: You haven't defined any warning presets yet.
|
||||||
title: Manage warning presets
|
title: Warning presets
|
||||||
webhooks:
|
webhooks:
|
||||||
add_new: Add endpoint
|
add_new: Add endpoint
|
||||||
delete: Delete
|
delete: Delete
|
||||||
|
|
|
@ -65,6 +65,7 @@ SimpleNavigation::Configuration.run do |navigation|
|
||||||
s.item :dashboard, safe_join([fa_icon('tachometer fw'), t('admin.dashboard.title')]), admin_dashboard_path, if: -> { current_user.can?(:view_dashboard) }
|
s.item :dashboard, safe_join([fa_icon('tachometer fw'), t('admin.dashboard.title')]), admin_dashboard_path, if: -> { current_user.can?(:view_dashboard) }
|
||||||
s.item :settings, safe_join([fa_icon('cogs fw'), t('admin.settings.title')]), admin_settings_path, if: -> { current_user.can?(:manage_settings) }, highlights_on: %r{/admin/settings}
|
s.item :settings, safe_join([fa_icon('cogs fw'), t('admin.settings.title')]), admin_settings_path, if: -> { current_user.can?(:manage_settings) }, highlights_on: %r{/admin/settings}
|
||||||
s.item :rules, safe_join([fa_icon('gavel fw'), t('admin.rules.title')]), admin_rules_path, highlights_on: %r{/admin/rules}, if: -> { current_user.can?(:manage_rules) }
|
s.item :rules, safe_join([fa_icon('gavel fw'), t('admin.rules.title')]), admin_rules_path, highlights_on: %r{/admin/rules}, if: -> { current_user.can?(:manage_rules) }
|
||||||
|
s.item :warning_presets, safe_join([fa_icon('warning fw'), t('admin.warning_presets.title')]), admin_warning_presets_path, highlights_on: %r{/admin/warning_presets}, if: -> { current_user.can?(:manage_settings) }
|
||||||
s.item :roles, safe_join([fa_icon('vcard fw'), t('admin.roles.title')]), admin_roles_path, highlights_on: %r{/admin/roles}, if: -> { current_user.can?(:manage_roles) }
|
s.item :roles, safe_join([fa_icon('vcard fw'), t('admin.roles.title')]), admin_roles_path, highlights_on: %r{/admin/roles}, if: -> { current_user.can?(:manage_roles) }
|
||||||
s.item :announcements, safe_join([fa_icon('bullhorn fw'), t('admin.announcements.title')]), admin_announcements_path, highlights_on: %r{/admin/announcements}, if: -> { current_user.can?(:manage_announcements) }
|
s.item :announcements, safe_join([fa_icon('bullhorn fw'), t('admin.announcements.title')]), admin_announcements_path, highlights_on: %r{/admin/announcements}, if: -> { current_user.can?(:manage_announcements) }
|
||||||
s.item :custom_emojis, safe_join([fa_icon('smile-o fw'), t('admin.custom_emojis.title')]), admin_custom_emojis_path, highlights_on: %r{/admin/custom_emojis}, if: -> { current_user.can?(:manage_custom_emojis) }
|
s.item :custom_emojis, safe_join([fa_icon('smile-o fw'), t('admin.custom_emojis.title')]), admin_custom_emojis_path, highlights_on: %r{/admin/custom_emojis}, if: -> { current_user.can?(:manage_custom_emojis) }
|
||||||
|
|
22
yarn.lock
22
yarn.lock
|
@ -5206,13 +5206,13 @@ __metadata:
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"axios@npm:^1.4.0":
|
"axios@npm:^1.4.0":
|
||||||
version: 1.6.8
|
version: 1.7.2
|
||||||
resolution: "axios@npm:1.6.8"
|
resolution: "axios@npm:1.7.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
follow-redirects: "npm:^1.15.6"
|
follow-redirects: "npm:^1.15.6"
|
||||||
form-data: "npm:^4.0.0"
|
form-data: "npm:^4.0.0"
|
||||||
proxy-from-env: "npm:^1.1.0"
|
proxy-from-env: "npm:^1.1.0"
|
||||||
checksum: 10c0/0f22da6f490335479a89878bc7d5a1419484fbb437b564a80c34888fc36759ae4f56ea28d55a191695e5ed327f0bad56e7ff60fb6770c14d1be6501505d47ab9
|
checksum: 10c0/cbd47ce380fe045313364e740bb03b936420b8b5558c7ea36a4563db1258c658f05e40feb5ddd41f6633fdd96d37ac2a76f884dad599c5b0224b4c451b3fa7ae
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
@ -8960,17 +8960,17 @@ __metadata:
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"glob@npm:^10.2.2, glob@npm:^10.2.6, glob@npm:^10.3.10, glob@npm:^10.3.7":
|
"glob@npm:^10.2.2, glob@npm:^10.2.6, glob@npm:^10.3.10, glob@npm:^10.3.7":
|
||||||
version: 10.3.15
|
version: 10.3.16
|
||||||
resolution: "glob@npm:10.3.15"
|
resolution: "glob@npm:10.3.16"
|
||||||
dependencies:
|
dependencies:
|
||||||
foreground-child: "npm:^3.1.0"
|
foreground-child: "npm:^3.1.0"
|
||||||
jackspeak: "npm:^2.3.6"
|
jackspeak: "npm:^3.1.2"
|
||||||
minimatch: "npm:^9.0.1"
|
minimatch: "npm:^9.0.1"
|
||||||
minipass: "npm:^7.0.4"
|
minipass: "npm:^7.0.4"
|
||||||
path-scurry: "npm:^1.11.0"
|
path-scurry: "npm:^1.11.0"
|
||||||
bin:
|
bin:
|
||||||
glob: dist/esm/bin.mjs
|
glob: dist/esm/bin.mjs
|
||||||
checksum: 10c0/cda748ddc181b31b3df9548c0991800406d5cc3b3f8110e37a8751ec1e39f37cdae7d7782d5422d7df92775121cdf00599992dff22f7ff1260344843af227c2b
|
checksum: 10c0/f7eb4c3e66f221f0be3967c02527047167967549bdf8ed1bd5f6277d43a35191af4e2bb8c89f07a79664958bae088fd06659e69a0f1de462972f1eab52a715e8
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
@ -10431,16 +10431,16 @@ __metadata:
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"jackspeak@npm:^2.3.6":
|
"jackspeak@npm:^3.1.2":
|
||||||
version: 2.3.6
|
version: 3.1.2
|
||||||
resolution: "jackspeak@npm:2.3.6"
|
resolution: "jackspeak@npm:3.1.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@isaacs/cliui": "npm:^8.0.2"
|
"@isaacs/cliui": "npm:^8.0.2"
|
||||||
"@pkgjs/parseargs": "npm:^0.11.0"
|
"@pkgjs/parseargs": "npm:^0.11.0"
|
||||||
dependenciesMeta:
|
dependenciesMeta:
|
||||||
"@pkgjs/parseargs":
|
"@pkgjs/parseargs":
|
||||||
optional: true
|
optional: true
|
||||||
checksum: 10c0/f01d8f972d894cd7638bc338e9ef5ddb86f7b208ce177a36d718eac96ec86638a6efa17d0221b10073e64b45edc2ce15340db9380b1f5d5c5d000cbc517dc111
|
checksum: 10c0/5f1922a1ca0f19869e23f0dc4374c60d36e922f7926c76fecf8080cc6f7f798d6a9caac1b9428327d14c67731fd551bb3454cb270a5e13a0718f3b3660ec3d5d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue