| 1234567891011121314151617181920212223 |
- import { useParams } from 'common'
- import type { CommandOptions } from 'ui-patterns/CommandMenu'
- import { useRegisterCommands } from 'ui-patterns/CommandMenu'
- import { COMMAND_MENU_SECTIONS } from '@/components/interfaces/App/CommandMenu/CommandMenu.utils'
- export function useStorageGotoCommands(options?: CommandOptions) {
- let { ref } = useParams()
- ref ||= '_'
- useRegisterCommands(
- COMMAND_MENU_SECTIONS.NAVIGATE,
- [
- {
- id: 'nav-storage',
- name: 'Storage',
- route: `/project/${ref}/storage`,
- defaultHidden: true,
- },
- ],
- { ...options, deps: [ref] }
- )
- }
|