mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 22:15:18 +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>
121 lines
3.4 KiB
TypeScript
121 lines
3.4 KiB
TypeScript
import { useQuery } from '@tanstack/react-query'
|
|
import { executeSql, ExecuteSqlError } from '../sql/execute-sql-query'
|
|
import { CREATE_PG_GET_TABLEDEF_SQL } from './database-table-definition'
|
|
import { databaseKeys } from './keys'
|
|
import { UseCustomQueryOptions } from 'types'
|
|
|
|
export const getEntityDefinitionsSql = ({
|
|
schemas,
|
|
limit = 100,
|
|
}: {
|
|
schemas: string[]
|
|
limit?: number
|
|
}) => {
|
|
const sql = /* SQL */ `
|
|
${CREATE_PG_GET_TABLEDEF_SQL}
|
|
|
|
with records as (
|
|
select
|
|
c.oid::int8 as "id",
|
|
case c.relkind
|
|
when 'r' then pg_temp.pg_get_tabledef(
|
|
concat(nc.nspname),
|
|
concat(c.relname),
|
|
false,
|
|
'FKEYS_INTERNAL',
|
|
'NO_TRIGGERS'
|
|
)
|
|
when 'v' then concat(
|
|
'create view ', concat(nc.nspname, '.', c.relname), ' as',
|
|
pg_get_viewdef(concat(nc.nspname, '.', c.relname), true)
|
|
)
|
|
when 'm' then concat(
|
|
'create materialized view ', concat(nc.nspname, '.', c.relname), ' as',
|
|
pg_get_viewdef(concat(nc.nspname, '.', c.relname), true)
|
|
)
|
|
when 'f' then concat('create foreign table ', nc.nspname, '.', c.relname, ' ( ... )')
|
|
when 'p' then pg_temp.pg_get_tabledef(
|
|
concat(nc.nspname),
|
|
concat(c.relname),
|
|
false,
|
|
'FKEYS_INTERNAL',
|
|
'NO_TRIGGERS'
|
|
)
|
|
end as "sql"
|
|
from
|
|
pg_namespace nc
|
|
join pg_class c on nc.oid = c.relnamespace
|
|
where
|
|
c.relkind in ('r', 'v', 'm', 'f', 'p')
|
|
and not pg_is_other_temp_schema(nc.oid)
|
|
and (
|
|
pg_has_role(c.relowner, 'USAGE')
|
|
or has_table_privilege(
|
|
c.oid,
|
|
'SELECT, INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER'
|
|
)
|
|
or has_any_column_privilege(c.oid, 'SELECT, INSERT, UPDATE, REFERENCES')
|
|
)
|
|
and nc.nspname IN (${schemas.map((schema) => `'${schema}'`).join(', ')})
|
|
order by c.relname asc
|
|
limit ${limit}
|
|
offset 0
|
|
)
|
|
select
|
|
jsonb_build_object(
|
|
'definitions', coalesce(jsonb_agg(
|
|
jsonb_build_object(
|
|
'id', r.id,
|
|
'sql', r.sql
|
|
)
|
|
), '[]'::jsonb)
|
|
) "data"
|
|
from records r;
|
|
`.trim()
|
|
|
|
return sql
|
|
}
|
|
|
|
export type EntityDefinitionsVariables = {
|
|
limit?: number
|
|
projectRef?: string
|
|
connectionString?: string | null
|
|
schemas: string[]
|
|
}
|
|
|
|
export async function getEntityDefinitions(
|
|
{ projectRef, connectionString, schemas, limit }: EntityDefinitionsVariables,
|
|
signal?: AbortSignal
|
|
) {
|
|
const sql = getEntityDefinitionsSql({ schemas, limit })
|
|
const { result } = await executeSql(
|
|
{
|
|
projectRef,
|
|
connectionString,
|
|
sql,
|
|
queryKey: ['entity-definitions', schemas],
|
|
},
|
|
signal
|
|
)
|
|
|
|
return result[0].data.definitions
|
|
}
|
|
|
|
type EntityDefinition = { id: number; sql: string }
|
|
export type EntityDefinitionsData = EntityDefinition[]
|
|
export type EntityDefinitionsError = ExecuteSqlError
|
|
|
|
export const useEntityDefinitionsQuery = <TData = EntityDefinitionsData>(
|
|
{ projectRef, connectionString, schemas, limit }: EntityDefinitionsVariables,
|
|
{
|
|
enabled = true,
|
|
...options
|
|
}: UseCustomQueryOptions<EntityDefinitionsData, EntityDefinitionsError, TData> = {}
|
|
) =>
|
|
useQuery<EntityDefinitionsData, EntityDefinitionsError, TData>({
|
|
queryKey: databaseKeys.entityDefinitions(projectRef, schemas),
|
|
queryFn: ({ signal }) =>
|
|
getEntityDefinitions({ projectRef, connectionString, schemas, limit }, signal),
|
|
enabled: enabled && typeof projectRef !== 'undefined' && schemas.length > 0,
|
|
...options,
|
|
})
|