mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 19:54:38 +08:00
* First round of wrapping RQ errors with handleError * Remove the throw before the handleError usage. * Make the handling of an API error more versatile. Add logging in Sentry if the error is of unknown type. * Remove throwing of the handleError function. * Add return type to the handleError function to be never so that we're sure it always throws. --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
|
|
import toast from 'react-hot-toast'
|
|
|
|
import { del, handleError } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
import { contentKeys } from './keys'
|
|
|
|
type DeleteContentVariables = { projectRef: string; ids: string[] }
|
|
|
|
export async function deleteContents(
|
|
{ projectRef, ids }: DeleteContentVariables,
|
|
signal?: AbortSignal
|
|
) {
|
|
const { data, error } = await del('/platform/projects/{ref}/content', {
|
|
headers: { Version: '2' },
|
|
params: {
|
|
path: { ref: projectRef },
|
|
query: { ids },
|
|
},
|
|
signal,
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data.map((x) => x.id)
|
|
}
|
|
|
|
type DeleteContentData = Awaited<ReturnType<typeof deleteContents>>
|
|
|
|
export const useContentDeleteMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseMutationOptions<DeleteContentData, ResponseError, DeleteContentVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
const queryClient = useQueryClient()
|
|
|
|
return useMutation<DeleteContentData, ResponseError, DeleteContentVariables>(
|
|
(args) => deleteContents(args),
|
|
{
|
|
async onSuccess(data, variables, context) {
|
|
const { projectRef } = variables
|
|
await queryClient.invalidateQueries(contentKeys.list(projectRef))
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to delete contents: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
}
|
|
)
|
|
}
|