mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 13:34:28 +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. * Second round of wrapping RQ errors with handleError * Temp fix in delete credential mutation, and fix loading state --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import { useMutation, UseMutationOptions } from '@tanstack/react-query'
|
|
import { toast } from 'react-hot-toast'
|
|
|
|
import { handleError, post } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
|
|
export type ProjectPauseVariables = {
|
|
ref: string
|
|
}
|
|
|
|
export async function pauseProject({ ref }: ProjectPauseVariables) {
|
|
const { data, error } = await post('/platform/projects/{ref}/pause', {
|
|
params: { path: { ref } },
|
|
})
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
type ProjectPauseData = Awaited<ReturnType<typeof pauseProject>>
|
|
|
|
export const useProjectPauseMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseMutationOptions<ProjectPauseData, ResponseError, ProjectPauseVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
return useMutation<ProjectPauseData, ResponseError, ProjectPauseVariables>(
|
|
(vars) => pauseProject(vars),
|
|
{
|
|
async onSuccess(data, variables, context) {
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to pause project: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
}
|
|
)
|
|
}
|