mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-26 07:44:05 +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>
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
import { parseAsString, useQueryState } from 'nuqs'
|
|
import { useEffect, useMemo } from 'react'
|
|
|
|
import { LOCAL_STORAGE_KEYS, useParams } from 'common'
|
|
|
|
/**
|
|
* This hook wraps useQueryState because useQueryState imports app router for some reason which breaks the SSR in
|
|
* the playwright tests. I've localized the issue to "NODE_ENV='test'" in the playwright tests.
|
|
*/
|
|
const useIsomorphicUseQueryState = (defaultSchema: string) => {
|
|
if (typeof window === 'undefined') {
|
|
return [defaultSchema, () => {}] as const
|
|
} else {
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
return useQueryState(
|
|
'schema',
|
|
parseAsString.withDefault(defaultSchema).withOptions({
|
|
clearOnDefault: false,
|
|
})
|
|
)
|
|
}
|
|
}
|
|
|
|
export const useQuerySchemaState = () => {
|
|
const { ref } = useParams()
|
|
|
|
const defaultSchema =
|
|
typeof window !== 'undefined' && ref && ref.length > 0
|
|
? window.localStorage.getItem(LOCAL_STORAGE_KEYS.LAST_SELECTED_SCHEMA(ref)) || 'public'
|
|
: 'public'
|
|
|
|
// cache the original default schema so that it's not changed by another tab and cause issues in the app (saving a
|
|
// table on the wrong schema)
|
|
const originalDefaultSchema = useMemo(() => defaultSchema, [ref])
|
|
const [schema, setSelectedSchema] = useIsomorphicUseQueryState(originalDefaultSchema)
|
|
|
|
useEffect(() => {
|
|
// Update the schema in local storage on every change
|
|
if (typeof window !== 'undefined' && ref && ref.length > 0) {
|
|
window.localStorage.setItem(LOCAL_STORAGE_KEYS.LAST_SELECTED_SCHEMA(ref), schema)
|
|
}
|
|
}, [schema, ref])
|
|
|
|
return { selectedSchema: schema, setSelectedSchema }
|
|
}
|