| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import { useParams } from 'common'
- import { ArrowUpRight } from 'lucide-react'
- import { useIsAdvisorRulesEnabled } from '@/components/interfaces/App/FeaturePreview/FeaturePreviewContext'
- import type { ProductMenuGroup } from '@/components/ui/ProductMenu/ProductMenu.types'
- import { IS_PLATFORM } from '@/lib/constants'
- export const useGenerateAdvisorsMenu = (): ProductMenuGroup[] => {
- const { ref } = useParams()
- const isAdvisorRulesEnabled = useIsAdvisorRulesEnabled()
- return [
- {
- title: 'Advisors',
- items: [
- {
- name: 'Security Advisor',
- key: 'security',
- url: `/project/${ref}/advisors/security`,
- items: [],
- },
- {
- name: 'Performance Advisor',
- key: 'performance',
- url: `/project/${ref}/advisors/performance`,
- items: [],
- },
- {
- name: 'Query Performance',
- key: 'query-performance',
- url: `/project/${ref}/observability/query-performance`,
- items: [],
- rightIcon: <ArrowUpRight size={14} strokeWidth={1.5} className="h-4 w-4" />,
- },
- ],
- },
- ...(IS_PLATFORM && isAdvisorRulesEnabled
- ? [
- {
- title: 'Configuration',
- items: [
- {
- name: 'Settings',
- key: 'rules',
- url: `/project/${ref}/advisors/rules/security`,
- items: [],
- },
- ],
- },
- ]
- : []),
- ]
- }
|