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>
76 lines
2.2 KiB
TypeScript
76 lines
2.2 KiB
TypeScript
import pgMeta from '@supabase/pg-meta'
|
|
import { useMutation, useQueryClient } from '@tanstack/react-query'
|
|
import { toast } from 'sonner'
|
|
|
|
import { entityTypeKeys } from 'data/entity-types/keys'
|
|
import { executeSql } from 'data/sql/execute-sql-query'
|
|
import { tableEditorKeys } from 'data/table-editor/keys'
|
|
import { viewKeys } from 'data/views/keys'
|
|
import type { ResponseError, UseCustomMutationOptions } from 'types'
|
|
import { tableKeys } from './keys'
|
|
|
|
export type TableDeleteVariables = {
|
|
projectRef: string
|
|
connectionString?: string | null
|
|
id: number
|
|
name: string
|
|
schema: string
|
|
cascade?: boolean
|
|
}
|
|
|
|
export async function deleteTable({
|
|
projectRef,
|
|
connectionString,
|
|
id,
|
|
name,
|
|
schema,
|
|
cascade = false,
|
|
}: TableDeleteVariables) {
|
|
const { sql } = pgMeta.tables.remove({ name, schema }, { cascade })
|
|
|
|
const { result } = await executeSql<void>({
|
|
projectRef,
|
|
connectionString,
|
|
sql,
|
|
queryKey: ['table', 'delete', id],
|
|
})
|
|
|
|
return result
|
|
}
|
|
|
|
type TableDeleteData = Awaited<ReturnType<typeof deleteTable>>
|
|
|
|
export const useTableDeleteMutation = ({
|
|
onSuccess,
|
|
onError,
|
|
...options
|
|
}: Omit<
|
|
UseCustomMutationOptions<TableDeleteData, ResponseError, TableDeleteVariables>,
|
|
'mutationFn'
|
|
> = {}) => {
|
|
const queryClient = useQueryClient()
|
|
|
|
return useMutation<TableDeleteData, ResponseError, TableDeleteVariables>({
|
|
mutationFn: (vars) => deleteTable(vars),
|
|
async onSuccess(data, variables, context) {
|
|
const { id, projectRef, schema } = variables
|
|
await Promise.all([
|
|
queryClient.invalidateQueries({ queryKey: tableEditorKeys.tableEditor(projectRef, id) }),
|
|
queryClient.invalidateQueries({ queryKey: tableKeys.list(projectRef, schema) }),
|
|
queryClient.invalidateQueries({ queryKey: entityTypeKeys.list(projectRef) }),
|
|
// invalidate all views from this schema
|
|
queryClient.invalidateQueries({ queryKey: viewKeys.listBySchema(projectRef, schema) }),
|
|
])
|
|
|
|
await onSuccess?.(data, variables, context)
|
|
},
|
|
async onError(data, variables, context) {
|
|
if (onError === undefined) {
|
|
toast.error(`Failed to delete database table: ${data.message}`)
|
|
} else {
|
|
onError(data, variables, context)
|
|
}
|
|
},
|
|
...options,
|
|
})
|
|
}
|