mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 06:36:37 +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>
92 lines
2.6 KiB
TypeScript
92 lines
2.6 KiB
TypeScript
import { useQuery } from '@tanstack/react-query'
|
|
|
|
import { get, handleError } from 'data/fetchers'
|
|
import type { ResponseError, UseCustomQueryOptions } from 'types'
|
|
import { apiKeysKeys } from './keys'
|
|
|
|
type LegacyKeys = {
|
|
api_key: string
|
|
description?: string | null
|
|
hash?: string | null
|
|
id?: string | null
|
|
inserted_at?: string | null
|
|
name: string
|
|
prefix?: string | null
|
|
secret_jwt_template?: { role: string } | null
|
|
type: 'legacy' | null
|
|
updated_at?: string | null
|
|
}
|
|
|
|
type SecretKeys = {
|
|
api_key: string
|
|
description?: string
|
|
hash: string
|
|
id: string
|
|
inserted_at: string
|
|
name: string
|
|
prefix: string
|
|
secret_jwt_template: { role: string }
|
|
type: 'secret'
|
|
updated_at?: string
|
|
}
|
|
|
|
type PublishableKeys = {
|
|
api_key: string
|
|
description?: string
|
|
hash?: string
|
|
id: string
|
|
inserted_at: string
|
|
name: string
|
|
prefix?: string
|
|
secret_jwt_template?: { role: string } | null
|
|
type: 'publishable'
|
|
updated_at?: string
|
|
}
|
|
|
|
interface APIKeysVariables {
|
|
projectRef?: string
|
|
reveal?: boolean
|
|
}
|
|
|
|
type APIKey = LegacyKeys | SecretKeys | PublishableKeys
|
|
|
|
async function getAPIKeys({ projectRef, reveal }: APIKeysVariables, signal?: AbortSignal) {
|
|
if (!projectRef) throw new Error('projectRef is required')
|
|
|
|
const { data, error } = await get(`/v1/projects/{ref}/api-keys`, {
|
|
params: { path: { ref: projectRef }, query: { reveal } },
|
|
signal,
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
|
|
// [Jonny]: Overriding the types here since some stuff is not actually nullable or optional
|
|
return data as unknown as APIKey[]
|
|
}
|
|
|
|
export type APIKeysData = Awaited<ReturnType<typeof getAPIKeys>>
|
|
|
|
export const useAPIKeysQuery = <TData = APIKeysData>(
|
|
{ projectRef, reveal = false }: APIKeysVariables,
|
|
{ enabled = true, ...options }: UseCustomQueryOptions<APIKeysData, ResponseError, TData> = {}
|
|
) => {
|
|
return useQuery<APIKeysData, ResponseError, TData>({
|
|
queryKey: apiKeysKeys.list(projectRef, reveal),
|
|
queryFn: ({ signal }) => getAPIKeys({ projectRef, reveal }, signal),
|
|
enabled: enabled && typeof projectRef !== 'undefined',
|
|
...options,
|
|
})
|
|
}
|
|
|
|
export const getKeys = (apiKeys: APIKey[] = []) => {
|
|
const anonKey = apiKeys.find((x) => x.name === 'anon')
|
|
const serviceKey = apiKeys.find((x) => x.name === 'service_role')
|
|
|
|
// [Joshen] For now I just want 1 of each, I don't need all
|
|
const publishableKey = apiKeys.find((x) => x.type === 'publishable')
|
|
const secretKey = apiKeys.find((x) => x.type === 'secret')
|
|
|
|
const allSecretKeys = apiKeys.filter((x) => x.type === 'secret')
|
|
|
|
return { anonKey, serviceKey, publishableKey, secretKey, allSecretKeys }
|
|
}
|