mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 00:04:23 +08:00
* chore: cleanup packages - Avoid circular imports - Export API-types as types - pg-format without depending on Node internal Buffer (not browser-compatible) - Avoid importing from barrel files in ui dir * chore: avoid barrel file imports in studio (#27771) * chore: avoid barrel file imports - Removes some unused imports - Avoids barrel file import for faster builds + less memory * add eslint rule * type fixes * delete layouts barrel * delete components/grid barrel file * delete components/grid/utils barrel file * delete components/grid/components/common barrel file * delete components/grid/components/editor barrel file * delete components/grid/components/formatter barrel file * delete components/grid/components/grid barrel file * delete components/grid/components/header/filter barrel file * remote components/grid/store barrel file * remove components/interfaces/Auth/Policies barrel file * delete components/interfaces/Settings/Logs barrel file * delete components/ui/CodeEditor barrel file * delete components/ui/Forms barrel file * delete components/ui/Shimmers barrel file * delete data/analytics barrel file * delete hooks barrel file * cleanup lib/common/fetch barrel file * final * barral files cleanup * global react-data-grid styles * remove console.log --------- Co-authored-by: Kevin Grüneberg <k.grueneberg1994@gmail.com> * fix build --------- Co-authored-by: Kevin Grüneberg <k.grueneberg1994@gmail.com>
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
'use client'
|
|
import { createContext, useContext } from 'react'
|
|
|
|
export interface CommandMenuContextValue {
|
|
isOpen: boolean
|
|
setIsOpen: React.Dispatch<React.SetStateAction<boolean>>
|
|
isLoading: boolean
|
|
setIsLoading: React.Dispatch<React.SetStateAction<boolean>>
|
|
search: string
|
|
setSearch: React.Dispatch<React.SetStateAction<string>>
|
|
pages: string[]
|
|
setPages: React.Dispatch<React.SetStateAction<string[]>>
|
|
currentPage?: string
|
|
inputRef: React.RefObject<HTMLInputElement>
|
|
site: 'studio' | 'docs' | 'website'
|
|
|
|
/**
|
|
* Project metadata for easy retrieval
|
|
*/
|
|
project?: { ref?: string; apiKeys?: { anon?: string; service?: string }; apiUrl?: string }
|
|
/**
|
|
* Any additional metadata that CMDK component can use in its AI prompts
|
|
*/
|
|
metadata?: { definitions?: string; flags?: { [key: string]: string } }
|
|
/**
|
|
* Opt in flag to use additional metadata in AI prompts
|
|
*/
|
|
isOptedInToAI: boolean
|
|
|
|
// Optional callback to save a generated SQL output
|
|
saveGeneratedSQL?: (answer: string, title: string) => Promise<void>
|
|
}
|
|
|
|
export const CommandMenuContext = createContext<CommandMenuContextValue | undefined>(undefined)
|
|
export const useCommandMenu = () => {
|
|
const context = useContext(CommandMenuContext)
|
|
|
|
if (context === undefined) {
|
|
throw new Error('useCommandMenu was used outside of CommandMenuProvider')
|
|
}
|
|
|
|
return context
|
|
}
|