| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- export const SHORTCUT_REFERENCE_GROUPS = {
- NAVIGATION_GLOBAL: 'navigation.global',
- NAVIGATION_DATABASE: 'navigation.database',
- NAVIGATION_AUTH: 'navigation.auth',
- NAVIGATION_STORAGE: 'navigation.storage',
- NAVIGATION_FUNCTIONS: 'navigation.functions',
- NAVIGATION_FUNCTION_DETAIL: 'navigation.function-detail',
- NAVIGATION_REALTIME: 'navigation.realtime',
- } as const
- export const SHORTCUT_REFERENCE_GROUP_LABELS: Record<string, string> = {
- [SHORTCUT_REFERENCE_GROUPS.NAVIGATION_GLOBAL]: 'Global Navigation',
- [SHORTCUT_REFERENCE_GROUPS.NAVIGATION_DATABASE]: 'Database Navigation',
- [SHORTCUT_REFERENCE_GROUPS.NAVIGATION_AUTH]: 'Auth Navigation',
- [SHORTCUT_REFERENCE_GROUPS.NAVIGATION_STORAGE]: 'Storage Navigation',
- [SHORTCUT_REFERENCE_GROUPS.NAVIGATION_FUNCTIONS]: 'Edge Functions Navigation',
- [SHORTCUT_REFERENCE_GROUPS.NAVIGATION_FUNCTION_DETAIL]: 'Edge Function Tabs',
- [SHORTCUT_REFERENCE_GROUPS.NAVIGATION_REALTIME]: 'Realtime Navigation',
- }
- export const SHORTCUT_REFERENCE_GROUP_ORDER = [
- 'command-menu',
- 'shortcuts',
- SHORTCUT_REFERENCE_GROUPS.NAVIGATION_GLOBAL,
- SHORTCUT_REFERENCE_GROUPS.NAVIGATION_DATABASE,
- SHORTCUT_REFERENCE_GROUPS.NAVIGATION_AUTH,
- 'auth-users',
- SHORTCUT_REFERENCE_GROUPS.NAVIGATION_STORAGE,
- 'storage-buckets',
- 'storage-explorer',
- SHORTCUT_REFERENCE_GROUPS.NAVIGATION_FUNCTIONS,
- 'functions-list',
- SHORTCUT_REFERENCE_GROUPS.NAVIGATION_FUNCTION_DETAIL,
- 'functions-detail',
- 'functions-overview',
- SHORTCUT_REFERENCE_GROUPS.NAVIGATION_REALTIME,
- 'realtime-inspector',
- 'logs-preview',
- 'nav',
- 'ai-assistant',
- 'inline-editor',
- 'sql-editor',
- 'results',
- 'data-table',
- 'table-editor',
- 'schema-visualizer',
- 'list-page',
- 'action-bar',
- 'operation-queue',
- 'unified-logs',
- ]
|