// @ts-nocheck import { SHORTCUT_REFERENCE_GROUPS } from '../referenceGroups' import { RegistryDefinations } from '../types' /** * Contextual chords for jumping between Advisors sub-pages — `V + `. * * Active only while AdvisorsLayout is mounted (i.e. the user is somewhere * under `/project//advisors/*`). Mirrors the database-nav / auth-nav * pattern: the leading `V` (adVisor) is layout-scoped so it doesn't burn a * global key. `A` is already in use by Auth. */ export const ADVISORS_NAV_SHORTCUT_IDS = { NAV_ADVISORS_SECURITY: 'nav.advisors-security', NAV_ADVISORS_PERFORMANCE: 'nav.advisors-performance', NAV_ADVISORS_RULES: 'nav.advisors-rules', } export type AdvisorsNavShortcutId = (typeof ADVISORS_NAV_SHORTCUT_IDS)[keyof typeof ADVISORS_NAV_SHORTCUT_IDS] export const advisorsNavRegistry: RegistryDefinations = { [ADVISORS_NAV_SHORTCUT_IDS.NAV_ADVISORS_SECURITY]: { id: ADVISORS_NAV_SHORTCUT_IDS.NAV_ADVISORS_SECURITY, label: 'Go to Security Advisor', sequence: ['V', 'S'], showInSettings: false, referenceGroup: SHORTCUT_REFERENCE_GROUPS.NAVIGATION_ADVISORS, }, [ADVISORS_NAV_SHORTCUT_IDS.NAV_ADVISORS_PERFORMANCE]: { id: ADVISORS_NAV_SHORTCUT_IDS.NAV_ADVISORS_PERFORMANCE, label: 'Go to Performance Advisor', sequence: ['V', 'P'], showInSettings: false, referenceGroup: SHORTCUT_REFERENCE_GROUPS.NAVIGATION_ADVISORS, }, [ADVISORS_NAV_SHORTCUT_IDS.NAV_ADVISORS_RULES]: { id: ADVISORS_NAV_SHORTCUT_IDS.NAV_ADVISORS_RULES, label: 'Go to Advisor Settings', sequence: ['V', 'R'], showInSettings: false, referenceGroup: SHORTCUT_REFERENCE_GROUPS.NAVIGATION_ADVISORS, }, }