Files
supabase/apps/studio/data/materialized-views/materialized-views-query.ts
Joshen Lim 4901f081e5 Migrate remaining requests to pg-meta API to use query endpoint (#47758)
## Context

Migrates the remaining API requests to the pg-meta endpoint to use the
query endpoint directly with the SQL from the pg-meta package. This
touches the following:
- policies
- publications
- triggers
- views
- materialized views
- types

## To test
Just need to verify that we're still fetching the data correctly on
these pages
- Database policies
- Database publications
- Database triggers
- Database tables (views + materialized views)
- Database types

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **Bug Fixes**
* Improved and stabilized loading of database metadata (views, triggers,
RLS policies, publications, materialized views, and enum types),
including more reliable schema-scoped filtering.
* Updated policy loading behavior and related UI queries to consistently
use schema arrays, improving cache correctness and consistency.
* **Tests**
* Updated end-to-end test synchronization to wait for the correct
metadata responses using more specific request identifiers.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-07-09 17:09:03 +08:00

55 lines
1.7 KiB
TypeScript

import pgMeta, { type PGMaterializedView } from '@supabase/pg-meta'
import { useQuery } from '@tanstack/react-query'
import { executeSql } from '../sql/execute-sql-mutation'
import { materializedViewKeys } from './keys'
import type { ResponseError, UseCustomQueryOptions } from '@/types'
export type MaterializedViewsVariables = {
projectRef?: string
connectionString?: string | null
schemas?: string[]
}
export async function getMaterializedViews(
{ projectRef, connectionString, schemas }: MaterializedViewsVariables,
signal?: AbortSignal
) {
if (!projectRef) throw new Error('projectRef is required')
const { sql } = pgMeta.materializedViews.list({ includedSchemas: schemas })
const { result } = await executeSql(
{
projectRef,
connectionString,
sql,
queryKey: ['materialized-views', schemas].filter(Boolean),
},
signal
)
return result as PGMaterializedView[]
}
export type MaterializedViewsData = Awaited<ReturnType<typeof getMaterializedViews>>
export type MaterializedViewsError = ResponseError
export const useMaterializedViewsQuery = <TData = MaterializedViewsData>(
{ projectRef, connectionString, schemas }: MaterializedViewsVariables,
{
enabled = true,
...options
}: UseCustomQueryOptions<MaterializedViewsData, MaterializedViewsError, TData> = {}
) =>
useQuery<MaterializedViewsData, MaterializedViewsError, TData>({
queryKey: schemas
? materializedViewKeys.listBySchema(projectRef, schemas)
: materializedViewKeys.list(projectRef),
queryFn: ({ signal }) =>
getMaterializedViews({ projectRef, connectionString, schemas }, signal),
enabled: enabled && typeof projectRef !== 'undefined',
staleTime: 0,
...options,
})