mirror of
https://github.com/supabase/supabase.git
synced 2026-05-09 10:19:50 -04:00
4a0bb36ca8
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
import { useParams } from 'common'
|
|
import { Table2 } from 'lucide-react'
|
|
import type { CommandOptions } from 'ui-patterns/CommandMenu'
|
|
import { useRegisterCommands } from 'ui-patterns/CommandMenu'
|
|
|
|
import { COMMAND_MENU_SECTIONS } from '@/components/interfaces/App/CommandMenu/CommandMenu.utils'
|
|
import { orderCommandSectionsByPriority } from '@/components/interfaces/App/CommandMenu/ordering'
|
|
import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
|
|
|
|
export function useProjectLevelTableEditorCommands(options?: CommandOptions) {
|
|
const { data: project } = useSelectedProjectQuery()
|
|
const ref = project?.ref || '_'
|
|
|
|
useRegisterCommands(
|
|
COMMAND_MENU_SECTIONS.TABLE,
|
|
[
|
|
{
|
|
id: 'create-table',
|
|
name: 'Create new table',
|
|
route: `/project/${ref}/editor?create=table`,
|
|
icon: () => <Table2 />,
|
|
},
|
|
],
|
|
{
|
|
...options,
|
|
deps: [ref],
|
|
enabled: (options?.enabled ?? true) && !!project,
|
|
orderSection: orderCommandSectionsByPriority,
|
|
sectionMeta: { priority: 3 },
|
|
}
|
|
)
|
|
}
|
|
|
|
export function useTableEditorGotoCommands(options?: CommandOptions) {
|
|
let { ref } = useParams()
|
|
ref ||= '_'
|
|
|
|
useRegisterCommands(
|
|
COMMAND_MENU_SECTIONS.TABLE,
|
|
[
|
|
{
|
|
id: 'view-tables',
|
|
name: 'View your tables',
|
|
route: `/project/${ref}/editor`,
|
|
icon: () => <Table2 />,
|
|
},
|
|
],
|
|
{
|
|
...options,
|
|
deps: [ref],
|
|
orderSection: orderCommandSectionsByPriority,
|
|
sectionMeta: { priority: 3 },
|
|
}
|
|
)
|
|
|
|
useRegisterCommands(
|
|
COMMAND_MENU_SECTIONS.NAVIGATE,
|
|
[
|
|
{
|
|
id: 'nav-table-editor',
|
|
name: 'Table Editor',
|
|
route: `/project/${ref}/editor`,
|
|
defaultHidden: true,
|
|
},
|
|
],
|
|
{ ...options, deps: [ref] }
|
|
)
|
|
}
|