38 lines
1.2 KiB
TypeScript
Executable File
38 lines
1.2 KiB
TypeScript
Executable File
import {BackendResponse} from '@common/http/backend-response/backend-response';
|
|
import {useMutation} from '@tanstack/react-query';
|
|
import {toast} from '@common/ui/toast/toast';
|
|
import {message} from '@common/i18n/message';
|
|
import {apiClient, queryClient} from '@common/http/query-client';
|
|
import {showHttpErrorToast} from '@common/utils/http/show-http-error-toast';
|
|
import {Title} from '@app/titles/models/title';
|
|
import {useCurrentUserWatchlist} from '@app/user-lists/requests/use-current-user-watchlist';
|
|
|
|
interface Response extends BackendResponse {}
|
|
|
|
export function useRemoveFromWatchlist() {
|
|
const {data} = useCurrentUserWatchlist();
|
|
return useMutation({
|
|
mutationFn: (payload: Title) =>
|
|
removeFromWatchlist(data!.watchlist.id, payload),
|
|
onSuccess: async () => {
|
|
await queryClient.invalidateQueries({
|
|
queryKey: ['channel', 'watchlist'],
|
|
});
|
|
toast(message('Removed from your watchlist'));
|
|
},
|
|
onError: r => showHttpErrorToast(r),
|
|
});
|
|
}
|
|
|
|
function removeFromWatchlist(
|
|
listId: number,
|
|
payload: Title,
|
|
): Promise<Response> {
|
|
return apiClient
|
|
.post(`channel/${listId}/remove`, {
|
|
itemId: payload.id,
|
|
itemType: payload.model_type,
|
|
})
|
|
.then(r => r.data);
|
|
}
|