mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-19 08:42:08 +03:00
6acb13d4ae
* refactor(<ChatPage/>) * test(<ChatInput />): add unit tests * test(<ChatMessages />): add unit tests
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
/* eslint-disable */
|
|
"use client";
|
|
import Button from "@/lib/components/ui/Button";
|
|
|
|
import { useChat } from "@/app/chat/[chatId]/hooks/useChat";
|
|
import { useState } from "react";
|
|
import { ConfigButton } from "./components/ConfigButton";
|
|
import { MicButton } from "./components/MicButton";
|
|
|
|
export const ChatInput = (): JSX.Element => {
|
|
const [message, setMessage] = useState<string>(""); // for optimistic updates
|
|
const { addQuestion, generatingAnswer } = useChat();
|
|
|
|
const submitQuestion = () => {
|
|
if (message.length === 0) return;
|
|
if (!generatingAnswer) {
|
|
addQuestion(message, () => setMessage(""));
|
|
}
|
|
};
|
|
|
|
return (
|
|
<form
|
|
data-testid="chat-input-form"
|
|
onSubmit={(e) => {
|
|
e.preventDefault();
|
|
submitQuestion();
|
|
}}
|
|
className="sticky bottom-0 p-5 bg-white dark:bg-black rounded-t-md border border-black/10 dark:border-white/25 border-b-0 w-full max-w-3xl flex items-center justify-center gap-2 z-20"
|
|
>
|
|
<textarea
|
|
autoFocus
|
|
value={message}
|
|
required
|
|
onChange={(e) => setMessage(e.target.value)}
|
|
onKeyDown={(e) => {
|
|
if (e.key === "Enter" && !e.shiftKey) {
|
|
e.preventDefault(); // Prevents the newline from being entered in the textarea
|
|
submitQuestion();
|
|
}
|
|
}}
|
|
className="w-full p-2 border border-gray-300 dark:border-gray-500 outline-none rounded dark:bg-gray-800"
|
|
placeholder="Begin conversation here..."
|
|
data-testid="chat-input"
|
|
/>
|
|
<Button
|
|
className="px-3 py-2 sm:px-4 sm:py-2"
|
|
type="submit"
|
|
isLoading={generatingAnswer}
|
|
data-testid="submit-button"
|
|
>
|
|
{generatingAnswer ? "Thinking..." : "Chat"}
|
|
</Button>
|
|
<div className="flex items-center">
|
|
<MicButton setMessage={setMessage} />
|
|
<ConfigButton />
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|