mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-27 00:25:10 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
87 lines
2.4 KiB
TypeScript
87 lines
2.4 KiB
TypeScript
import { useMutation, useQueryClient } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
import { configKeys } from 'data/config/keys'
|
|
import { databaseKeys } from 'data/database/keys'
|
|
import { handleError, patch } from 'data/fetchers'
|
|
import { executeSql } from 'data/sql/execute-sql-query'
|
|
import type { ResponseError, UseCustomMutationOptions } from 'types'
|
|
|
|
export type CreateAndExposeAPISchemaVariables = {
|
|
projectRef: string
|
|
connectionString?: string | null
|
|
existingPostgrestConfig: {
|
|
db_pool: any
|
|
max_rows: number
|
|
db_extra_search_path: string
|
|
db_schema: string
|
|
}
|
|
}
|
|
|
|
export async function createAndExposeApiSchema({
|
|
projectRef,
|
|
connectionString,
|
|
existingPostgrestConfig,
|
|
}: CreateAndExposeAPISchemaVariables) {
|
|
const sql = `
|
|
create schema if not exists api;
|
|
grant usage on schema api to anon, authenticated;
|
|
`.trim()
|
|
|
|
await executeSql({ projectRef, connectionString, sql })
|
|
|
|
const { db_extra_search_path, db_pool, db_schema, max_rows } = existingPostgrestConfig
|
|
const { error } = await patch('/platform/projects/{ref}/config/postgrest', {
|
|
params: { path: { ref: projectRef } },
|
|
body: {
|
|
db_pool,
|
|
max_rows,
|
|
db_extra_search_path,
|
|
db_schema: `api, ${db_schema}`,
|
|
},
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return true
|
|
}
|
|
|
|
type CreateAndExposeAPISchemaData = Awaited<ReturnType<typeof createAndExposeApiSchema>>
|
|
|
|
export const useCreateAndExposeAPISchemaMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseCustomMutationOptions<
|
|
CreateAndExposeAPISchemaData,
|
|
ResponseError,
|
|
CreateAndExposeAPISchemaVariables
|
|
>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
const queryClient = useQueryClient()
|
|
|
|
return useMutation<
|
|
CreateAndExposeAPISchemaData,
|
|
ResponseError,
|
|
CreateAndExposeAPISchemaVariables
|
|
>({
|
|
mutationFn: (vars) => createAndExposeApiSchema(vars),
|
|
async onSuccess(data, variables, context) {
|
|
const { projectRef } = variables
|
|
await Promise.all([
|
|
queryClient.invalidateQueries({ queryKey: databaseKeys.schemas(projectRef) }),
|
|
queryClient.invalidateQueries({ queryKey: configKeys.postgrest(projectRef) }),
|
|
])
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to create and expose API schema: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
})
|
|
}
|