mirror of
https://github.com/supabase/supabase.git
synced 2026-09-09 03:19:36 +08:00
## Context Part of consolidating all our code editors - removes all direct renders of the `Editor` component and use `CodeEditor` instead ## UIs affected - [ ] Query performance advisor -> query block - [ ] Table Editor -> Table definition - [ ] Table Editor -> Text + JSON editor (From RowEditorSidePanel, expand input field) - [ ] Auth -> RLS -> Create/edit policy code sections - [ ] Storage policies -> Anywhere that has a code section <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Rolled out a consistent PostgreSQL code editor experience across policy, storage policy, trigger function, table definitions, and query performance screens. * Updated policy/template previews to use the shared editor for cleaner read-only viewing. * **Bug Fixes** * Removed extra left padding in the query performance editor wrapper. * Improved the JSON editor action control with clearer icon behavior. * **Refactor** * Standardized editor usage by replacing legacy SQL/Monaco-based editors with the shared CodeEditor and simplifying related editor components. * Updated CodeEditor capabilities (read-only handling, wrapper styling, markdown support) and tightened editor prop contracts. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
179 lines
5.6 KiB
TypeScript
179 lines
5.6 KiB
TypeScript
import { useParams } from 'common'
|
|
import { map as lodashMap, uniqBy } from 'lodash'
|
|
import { HelpCircle, Terminal } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Button, SidePanel } from 'ui'
|
|
|
|
import ProductEmptyState from '@/components/to-be-cleaned/ProductEmptyState'
|
|
import { CodeEditor } from '@/components/ui/CodeEditor/CodeEditor'
|
|
import InformationBox from '@/components/ui/InformationBox'
|
|
import {
|
|
useDatabaseFunctionsQuery,
|
|
type DatabaseFunction,
|
|
} from '@/data/database-functions/database-functions-query'
|
|
import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
|
|
|
|
export interface ChooseFunctionFormProps {
|
|
visible: boolean
|
|
setVisible: (value: boolean) => void
|
|
onChange: (fn: DatabaseFunction) => void
|
|
}
|
|
|
|
const ChooseFunctionForm = ({ visible, onChange, setVisible }: ChooseFunctionFormProps) => {
|
|
const { data: project } = useSelectedProjectQuery()
|
|
|
|
const { data = [] } = useDatabaseFunctionsQuery({
|
|
projectRef: project?.ref,
|
|
connectionString: project?.connectionString,
|
|
})
|
|
const triggerFunctions = data.filter((fn) => fn.return_type === 'trigger')
|
|
const hasPublicSchemaFunctions = triggerFunctions.length >= 1
|
|
const functionSchemas = lodashMap(uniqBy(triggerFunctions, 'schema'), 'schema')
|
|
|
|
const selectFunction = (id: number) => {
|
|
const fn = triggerFunctions.find((x) => x.id === id)
|
|
if (!!fn) onChange(fn)
|
|
setVisible(!visible)
|
|
}
|
|
|
|
return (
|
|
<SidePanel
|
|
size="large"
|
|
header="Pick a function"
|
|
visible={visible}
|
|
onCancel={() => setVisible(!visible)}
|
|
className="hooks-sidepanel"
|
|
>
|
|
<div className="py-6">
|
|
{hasPublicSchemaFunctions ? (
|
|
<div className="space-y-6">
|
|
<NoticeBox />
|
|
{functionSchemas.map((schema: string) => (
|
|
<SchemaFunctionGroup
|
|
key={schema}
|
|
schema={schema}
|
|
functions={triggerFunctions.filter((x) => x.schema == schema)}
|
|
selectFunction={selectFunction}
|
|
/>
|
|
))}
|
|
</div>
|
|
) : (
|
|
<NoFunctionsState />
|
|
)}
|
|
</div>
|
|
</SidePanel>
|
|
)
|
|
}
|
|
|
|
export default ChooseFunctionForm
|
|
|
|
const NoticeBox = () => {
|
|
const { ref } = useParams()
|
|
|
|
return (
|
|
<div className="px-6">
|
|
<InformationBox
|
|
icon={<HelpCircle size="20" strokeWidth={1.5} />}
|
|
title="Only functions that return a trigger will be displayed below"
|
|
description={`You can make functions by using the Database Functions`}
|
|
button={
|
|
<Button asChild variant="default">
|
|
<Link href={`/project/${ref}/database/functions`}>Go to Functions</Link>
|
|
</Button>
|
|
}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const NoFunctionsState = () => {
|
|
// for the empty 'no tables' state link
|
|
const router = useRouter()
|
|
const { ref } = router.query
|
|
|
|
return (
|
|
<ProductEmptyState
|
|
title="No Trigger Functions found in database"
|
|
ctaButtonLabel="Create a trigger function"
|
|
onClickCta={() => {
|
|
router.push(`/project/${ref}/database/functions`)
|
|
}}
|
|
>
|
|
<p className="text-sm text-foreground-light">
|
|
You will need to create a trigger based function before you can add it to your trigger.
|
|
</p>
|
|
</ProductEmptyState>
|
|
)
|
|
}
|
|
|
|
export interface SchemaFunctionGroupProps {
|
|
schema: string
|
|
functions: DatabaseFunction[]
|
|
selectFunction: (id: number) => void
|
|
}
|
|
|
|
const SchemaFunctionGroup = ({ schema, functions, selectFunction }: SchemaFunctionGroupProps) => {
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="sticky top-0 flex items-center space-x-1 px-6 backdrop-blur-sm backdrop-filter">
|
|
<h5 className="text-foreground-light">schema</h5>
|
|
<h5>{schema}</h5>
|
|
</div>
|
|
<div className="space-y-0 divide-y border-t border-b border-default">
|
|
{functions.map((x) => (
|
|
<Function
|
|
id={x.id}
|
|
key={x.id}
|
|
completeStatement={x.complete_statement}
|
|
name={x.name}
|
|
onClick={selectFunction}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export interface FunctionProps {
|
|
id: number
|
|
completeStatement: string
|
|
name: string
|
|
onClick: (id: number) => void
|
|
}
|
|
|
|
const Function = ({ id, completeStatement, name, onClick }: FunctionProps) => {
|
|
return (
|
|
<div className="cursor-pointer rounded-sm p-3 px-6 hover:bg-studio" onClick={() => onClick(id)}>
|
|
<Accordion type="single" collapsible>
|
|
<AccordionItem value="definition" className="border-none">
|
|
<div className="flex items-center justify-between space-x-3">
|
|
<div className="flex items-center space-x-3">
|
|
<div className="flex items-center justify-center rounded-sm bg-foreground p-1 text-background">
|
|
<Terminal strokeWidth={2} size={14} />
|
|
</div>
|
|
<p className="mb-0 text-sm">{name}</p>
|
|
</div>
|
|
<AccordionTrigger
|
|
onClick={(e) => e.stopPropagation()}
|
|
className="py-0 text-xs font-normal text-foreground-light hover:no-underline"
|
|
>
|
|
View definition
|
|
</AccordionTrigger>
|
|
</div>
|
|
<AccordionContent className="[&>div]:pb-0" onClick={(e) => e.stopPropagation()}>
|
|
<div className="mt-4 h-64 border border-default">
|
|
<CodeEditor
|
|
isReadOnly
|
|
language="pgsql"
|
|
defaultValue={completeStatement}
|
|
options={{ contextmenu: false }}
|
|
/>
|
|
</div>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
</div>
|
|
)
|
|
}
|