| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import type { ProductMenuGroup } from '@/components/ui/ProductMenu/ProductMenu.types'
- import type { Project } from '@/data/projects/project-detail-query'
- import { IS_PLATFORM } from '@/lib/constants'
- import { SHORTCUT_IDS } from '@/state/shortcuts/registry'
- export const generateRealtimeMenu = (project: Project | undefined): ProductMenuGroup[] => {
- const ref = project?.ref ?? 'default'
- const showRealtimeSettings = IS_PLATFORM
- return [
- {
- title: 'Tools',
- items: [
- {
- name: 'Inspector',
- key: 'inspector',
- url: `/project/${ref}/realtime/inspector`,
- items: [],
- shortcutId: SHORTCUT_IDS.NAV_REALTIME_INSPECTOR,
- },
- ],
- },
- {
- title: 'Configuration',
- items: [
- {
- name: 'Policies',
- key: 'policies',
- url: `/project/${ref}/realtime/policies`,
- items: [],
- shortcutId: SHORTCUT_IDS.NAV_REALTIME_POLICIES,
- },
- ...(showRealtimeSettings
- ? [
- {
- name: 'Settings',
- key: 'settings',
- url: `/project/${ref}/realtime/settings`,
- items: [],
- shortcutId: SHORTCUT_IDS.NAV_REALTIME_SETTINGS,
- },
- ]
- : []),
- ],
- },
- ]
- }
|