mirror of
https://github.com/supabase/supabase.git
synced 2026-07-07 03:34:27 +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>
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { useQuery, UseQueryOptions } from '@tanstack/react-query'
|
|
import { get, handleError } from 'data/fetchers'
|
|
import { subscriptionKeys } from './keys'
|
|
|
|
export type OrgPlansVariables = {
|
|
orgSlug?: string
|
|
}
|
|
|
|
export async function getOrgPlans({ orgSlug }: OrgPlansVariables, signal?: AbortSignal) {
|
|
if (!orgSlug) throw new Error('orgSlug is required')
|
|
|
|
const { error, data } = await get('/platform/organizations/{slug}/billing/plans', {
|
|
params: { path: { slug: orgSlug } },
|
|
signal,
|
|
})
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
export type OrgPlansData = Awaited<ReturnType<typeof getOrgPlans>>
|
|
export type OrgPlansError = unknown
|
|
|
|
export const useOrgPlansQuery = <TData = OrgPlansData>(
|
|
{ orgSlug }: OrgPlansVariables,
|
|
{ enabled = true, ...options }: UseQueryOptions<OrgPlansData, OrgPlansError, TData> = {}
|
|
) =>
|
|
useQuery<OrgPlansData, OrgPlansError, TData>(
|
|
subscriptionKeys.orgPlans(orgSlug),
|
|
({ signal }) => getOrgPlans({ orgSlug }, signal),
|
|
{
|
|
enabled: enabled && typeof orgSlug !== 'undefined',
|
|
...options,
|
|
}
|
|
)
|