mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 17:30:25 -04:00
104 lines
2.5 KiB
TypeScript
104 lines
2.5 KiB
TypeScript
import { useQuery } from '@tanstack/react-query'
|
|
|
|
import { docsKeys } from './keys'
|
|
import { get, handleError } from '@/data/fetchers'
|
|
import type { ResponseError, UseCustomQueryOptions } from '@/types'
|
|
|
|
export type ProjectJsonSchemaVariables = {
|
|
projectRef?: string
|
|
}
|
|
|
|
type ProjectJsonSchemaMethod = {
|
|
tags: string[]
|
|
summary: string
|
|
responses: {
|
|
[key: string]: any
|
|
}
|
|
parameters: { [key: string]: string }[]
|
|
}
|
|
|
|
export type ProjectJsonSchemaDefinitions = {
|
|
[key: string]: {
|
|
type: string
|
|
description: string
|
|
required: string[]
|
|
properties: {
|
|
[key: string]: {
|
|
type: string
|
|
format: string
|
|
description?: string
|
|
enum?: string[]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export type ProjectJsonSchemaPaths = {
|
|
[key: string]: {
|
|
get?: ProjectJsonSchemaMethod
|
|
post?: ProjectJsonSchemaMethod
|
|
patch?: ProjectJsonSchemaMethod
|
|
delete?: ProjectJsonSchemaMethod
|
|
}
|
|
}
|
|
|
|
export type ProjectJsonSchemaResponse = {
|
|
basePath: string
|
|
consumes: string[]
|
|
definitions: ProjectJsonSchemaDefinitions
|
|
externalDocs: { description: string; url: string }
|
|
host: string
|
|
info: {
|
|
title: string
|
|
description: string
|
|
version: string
|
|
}
|
|
parameters: {
|
|
[key: string]: {
|
|
default?: string
|
|
description: string
|
|
in: string
|
|
name: string
|
|
required: boolean
|
|
type?: string
|
|
schema?: { [key: string]: string }
|
|
}
|
|
}
|
|
paths: ProjectJsonSchemaPaths
|
|
produces: string[]
|
|
schemes: string[]
|
|
swagger: string
|
|
}
|
|
|
|
export async function getProjectJsonSchema(
|
|
{ projectRef }: ProjectJsonSchemaVariables,
|
|
signal?: AbortSignal
|
|
) {
|
|
if (!projectRef) throw new Error('projectRef is required')
|
|
|
|
const { data, error } = await get('/platform/projects/{ref}/api/rest', {
|
|
params: { path: { ref: projectRef } },
|
|
signal,
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data as unknown as ProjectJsonSchemaResponse
|
|
}
|
|
|
|
export type ProjectJsonSchemaData = Awaited<ReturnType<typeof getProjectJsonSchema>>
|
|
export type ProjectJsonSchemaError = ResponseError
|
|
|
|
export const useProjectJsonSchemaQuery = <TData = ProjectJsonSchemaData>(
|
|
{ projectRef }: ProjectJsonSchemaVariables,
|
|
{
|
|
enabled = true,
|
|
...options
|
|
}: UseCustomQueryOptions<ProjectJsonSchemaData, ProjectJsonSchemaError, TData> = {}
|
|
) =>
|
|
useQuery<ProjectJsonSchemaData, ProjectJsonSchemaError, TData>({
|
|
queryKey: docsKeys.jsonSchema(projectRef),
|
|
queryFn: ({ signal }) => getProjectJsonSchema({ projectRef }, signal),
|
|
enabled: enabled && typeof projectRef !== 'undefined',
|
|
...options,
|
|
})
|