mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 13:14:36 +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>
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { useQuery, UseQueryOptions } from '@tanstack/react-query'
|
|
|
|
import { get, handleError } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
import { subscriptionKeys } from './keys'
|
|
|
|
export type ProjectAddonsVariables = {
|
|
projectRef?: string
|
|
}
|
|
|
|
export async function getProjectAddons(
|
|
{ projectRef }: ProjectAddonsVariables,
|
|
signal?: AbortSignal
|
|
) {
|
|
if (!projectRef) throw new Error('projectRef is required')
|
|
|
|
const { error, data } = await get(`/platform/projects/{ref}/billing/addons`, {
|
|
params: { path: { ref: projectRef } },
|
|
signal,
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
export type ProjectAddonsData = Awaited<ReturnType<typeof getProjectAddons>>
|
|
export type ProjectAddonsError = ResponseError
|
|
|
|
export const useProjectAddonsQuery = <TData = ProjectAddonsData>(
|
|
{ projectRef }: ProjectAddonsVariables,
|
|
{ enabled = true, ...options }: UseQueryOptions<ProjectAddonsData, ProjectAddonsError, TData> = {}
|
|
) =>
|
|
useQuery<ProjectAddonsData, ProjectAddonsError, TData>(
|
|
subscriptionKeys.addons(projectRef),
|
|
({ signal }) => getProjectAddons({ projectRef }, signal),
|
|
{
|
|
enabled: enabled && typeof projectRef !== 'undefined',
|
|
...options,
|
|
}
|
|
)
|