mirror of
https://github.com/supabase/supabase.git
synced 2026-05-24 12:47:48 +08:00
* start * added panels * remove stuff * fixes and refinements * clean up * remove old assistant panel * resizable assistant kinda * use icon * Add missing package * remove canvas * add suggestions * updated empty state if no tables exist * fix table condition * Implement diffing if using assistant in sql editor * Reinstate old assistant in SQL editor if feature preview is off * pane size adjustment * assistant button corners * Add SQL snippet content to assistant if opening assistant in sql editor * Add the necessary checks for opt in and hipaa * revert adding snippet to assistant when opening assistant in sql editor * Add cmd i shortcut * Add admonitions for when disablePrompt is toggled on, and if no api key is set. Add footer note RE rate limitation * Bump ai package in packages * some fixes for backwards compability depending on feature preview toggled * Rename feature preview property for new assistant * Smol fix * Prevent SQL snippet from running until message is finished * only loading last message * fix z-index * save chat state to global state * add debug to failed ai queries * Add basic contextual invalidation * Add explain code action to SQL editor * Add link to abort ongoing queries from SqlSnippet * Update feature preview content * Fix * Fix * Fix * Te4st * Fix tests * ONly show ai button within a project * Fix PH tracking * Beef up a bit more event tracking * Rough fix to padding when assistant is open * A bit more telemetry stuff * Update prompts * fix rls editing via assistant * Update generate-v3.ts prompt to get auth schema too * Add policy satement to assistant when editing * Address all comments * fixc * Fix SqlSnippet not taking full width on larger viewports * Adjust max width --------- Co-authored-by: Saxon Fletcher <saxonafletcher@gmail.com>
122 lines
3.3 KiB
TypeScript
122 lines
3.3 KiB
TypeScript
import { useQuery, UseQueryOptions } from '@tanstack/react-query'
|
|
import { executeSql, ExecuteSqlError } from '../sql/execute-sql-query'
|
|
import { CREATE_PG_GET_TABLEDEF_SQL } from './database-query-constants'
|
|
import { databaseKeys } from './keys'
|
|
|
|
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
|
|
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
|
|
}: UseQueryOptions<EntityDefinitionsData, EntityDefinitionsError, TData> = {}
|
|
) =>
|
|
useQuery<EntityDefinitionsData, EntityDefinitionsError, TData>(
|
|
databaseKeys.entityDefinitions(projectRef, schemas),
|
|
({ signal }) => getEntityDefinitions({ projectRef, connectionString, schemas, limit }, signal),
|
|
{
|
|
enabled: enabled && typeof projectRef !== 'undefined' && schemas.length > 0,
|
|
...options,
|
|
}
|
|
)
|