mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 13:54:31 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
1.7 KiB
TypeScript
30 lines
1.7 KiB
TypeScript
import { useIsLoggedIn } from 'common'
|
|
import { useApiDocsGotoCommands } from 'components/interfaces/ProjectAPIDocs/ProjectAPIDocs.Commands'
|
|
import { useAdvisorsGoToCommands } from './AdvisorsLayout/Advisors.Commands'
|
|
import { useAuthGotoCommands } from './AuthLayout/Auth.Commands'
|
|
import { useDatabaseGotoCommands } from './DatabaseLayout/Database.Commands'
|
|
import { useFunctionsGotoCommands } from './EdgeFunctionsLayout/EdgeFunctions.Commands'
|
|
import { useIntegrationsGotoCommands } from './IntegrationsLayout/Integrations.Commands'
|
|
import { useLogsGotoCommands } from './LogsLayout/Logs.Commands'
|
|
import { useProjectSettingsGotoCommands } from './ProjectSettingsLayout/ProjectSettings.Commands'
|
|
import { useReportsGotoCommands } from './ReportsLayout/Reports.Commands'
|
|
import { useSqlEditorGotoCommands } from './SQLEditorLayout/SqlEditor.Commands'
|
|
import { useStorageGotoCommands } from '../interfaces/Storage/Storage.Commands'
|
|
import { useTableEditorGotoCommands } from './TableEditorLayout/TableEditor.Commands'
|
|
|
|
export function useLayoutNavCommands() {
|
|
const isLoggedIn = useIsLoggedIn()
|
|
|
|
useTableEditorGotoCommands({ enabled: isLoggedIn })
|
|
useSqlEditorGotoCommands({ enabled: isLoggedIn })
|
|
useDatabaseGotoCommands({ enabled: isLoggedIn })
|
|
useAuthGotoCommands({ enabled: isLoggedIn })
|
|
useAdvisorsGoToCommands({ enabled: isLoggedIn })
|
|
useStorageGotoCommands({ enabled: isLoggedIn })
|
|
useFunctionsGotoCommands({ enabled: isLoggedIn })
|
|
useLogsGotoCommands({ enabled: isLoggedIn })
|
|
useReportsGotoCommands({ enabled: isLoggedIn })
|
|
useApiDocsGotoCommands({ enabled: isLoggedIn })
|
|
useProjectSettingsGotoCommands({ enabled: isLoggedIn })
|
|
useIntegrationsGotoCommands({ enabled: isLoggedIn })
|
|
}
|