mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 07:14:27 +08:00
* Add custom types for queries, mutations and infinite queries. * Migrate all queries to use the new type. * Migrate all infinite queries to useCustomInfiniteQueryOptions. * Migrate all mutations to use useCustomMutationOptions. * Add type to all imports in `types` folder.
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import { useQuery } from '@tanstack/react-query'
|
|
|
|
import { get, handleError } from 'data/fetchers'
|
|
import { IS_PLATFORM } from 'lib/constants'
|
|
import type { ResponseError, UseCustomQueryOptions } from 'types'
|
|
import { subscriptionKeys } from './keys'
|
|
|
|
export type ProjectAddonsVariables = {
|
|
projectRef?: string
|
|
}
|
|
|
|
// [Joshen] For any customer facing text - let's use "Add-on" hyphenated
|
|
// Will need to address consistency across the dashboard
|
|
|
|
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
|
|
}: UseCustomQueryOptions<ProjectAddonsData, ProjectAddonsError, TData> = {}
|
|
) =>
|
|
useQuery<ProjectAddonsData, ProjectAddonsError, TData>({
|
|
queryKey: subscriptionKeys.addons(projectRef),
|
|
queryFn: ({ signal }) => getProjectAddons({ projectRef }, signal),
|
|
enabled: enabled && IS_PLATFORM && typeof projectRef !== 'undefined',
|
|
staleTime: 60 * 60 * 1000,
|
|
...options,
|
|
})
|