mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
cf9ccd0076
* Scaffold Geistdocs instance * Update biome.json * Replace content * Re-path docs * Update docs package name * Misc fixes * Update geistdocs.tsx * Move content to correct folder * Start migrating custom components * Finish migrating custom components * Migrate existing redirects * Remove #next suffixes from code blocks * Migrate homepage and flags * Remove duplicate lockfiles * Start fixing homepage * Replace Geist components * Fix colors * Improve layout * Fix code blocks * Fix hero * Fix illustrations * Fix redirect * Fix nav links * Patch in FrameworkSwitcher * Bump Next.js in docs * Delete turbo.json * Misc fixes * More logo fixes
24 lines
581 B
TypeScript
24 lines
581 B
TypeScript
import { atom, useAtom } from "jotai";
|
|
import { atomWithStorage } from "jotai/utils";
|
|
|
|
// Export the prompt atom so it can be used from other parts of the app
|
|
export const chatPromptAtom = atom<string>("");
|
|
|
|
// Export the open state atom for controlling chat visibility
|
|
export const chatOpenAtom = atomWithStorage<boolean>(
|
|
"geistdocs:chat-open",
|
|
false
|
|
);
|
|
|
|
export const useChatContext = () => {
|
|
const [prompt, setPrompt] = useAtom(chatPromptAtom);
|
|
const [isOpen, setIsOpen] = useAtom(chatOpenAtom);
|
|
|
|
return {
|
|
prompt,
|
|
setPrompt,
|
|
isOpen,
|
|
setIsOpen,
|
|
};
|
|
};
|