mirror of
https://github.com/vercel/ai-elements.git
synced 2026-09-14 19:48:26 +08:00
30cbcfec97
* Migrate to oxlint / oxfmt * Initial fixes * Misc fixes * Temporary fixes * Update Ultracite * Update .oxlintrc.json * Update .oxlintrc.json * Start running manual fixes * Update .oxlintrc.json * AI Fixes Part 2 * AI Fixes Part 3 * AI Fixes Part 4 * AI Fixes Part 5 * AI Fixes Part 6 * AI Fixes Part 7 * AI Fixes Part 8 * AI Fixes Part 9 * AI Fixes Part 10 * AI Fixes Part 11 * AI Fixes Part 12 * Fix tests * Lint / test fixes * Update chat.tsx * Fix AI SDK React version * Misc fixes * Build 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 {
|
|
isOpen,
|
|
prompt,
|
|
setIsOpen,
|
|
setPrompt,
|
|
};
|
|
};
|