|
"use client"; |
|
|
|
import * as React from "react"; |
|
|
|
import { Send } from "lucide-react"; |
|
|
|
import { cn } from "@/lib/utils"; |
|
import { Button } from "@/components/ui/button"; |
|
import { Card, CardContent, CardFooter } from "@/components/ui/card"; |
|
import { Input } from "@/components/ui/input"; |
|
import axios from "axios"; |
|
import { ScrollArea } from "@/components/ui/scroll-area"; |
|
|
|
interface ChatCardProps { |
|
sessionId: string; |
|
} |
|
|
|
export function ChatCard({ sessionId }: ChatCardProps) { |
|
const [loading, setLoading] = React.useState(false); |
|
const [placeholder, setPlaceholder] = React.useState("Ask a question..."); |
|
const [messages, setMessages] = React.useState([ |
|
{ |
|
role: "agent", |
|
content: `Hi, I am an AI Assistant. Start by adding data or asking questions.`, |
|
}, |
|
]); |
|
|
|
const sendQuery = async (query: string, sessionId: string) => { |
|
try { |
|
const response = await axios.get( |
|
"/api/v1/chat?query=" + query + "&session_id=" + sessionId, |
|
); |
|
setMessages((prevMessages) => [ |
|
...prevMessages, |
|
{ |
|
role: "agent", |
|
content: response?.data?.response, |
|
}, |
|
]); |
|
} catch (error) { |
|
console.log("Error getting response from bot. Please try again."); |
|
} |
|
}; |
|
|
|
const sendChatMessage = async (query: string, sessionId: string) => { |
|
await sendQuery(query, sessionId); |
|
}; |
|
|
|
return ( |
|
<> |
|
<Card> |
|
<ScrollArea className="mt-6 h-[60vh] max-h-[calc(100vh - 200px)]"> |
|
<CardContent> |
|
<div className="space-y-4"> |
|
{messages.map((message, index) => ( |
|
<div |
|
key={index} |
|
className={cn( |
|
"flex w-fit max-w-[75%] flex-col gap-2 rounded-lg px-3 py-2 text-sm", |
|
message.role === "user" |
|
? "ml-auto bg-primary text-primary-foreground" |
|
: "bg-muted", |
|
)} |
|
> |
|
{message.content} |
|
</div> |
|
))} |
|
</div> |
|
</CardContent> |
|
</ScrollArea> |
|
<CardFooter className="bottom-0 my-4"> |
|
<form |
|
onSubmit={async (event: any) => { |
|
event.preventDefault(); |
|
const currentMessage = event.currentTarget.message.value; |
|
event.target.message.value = ""; |
|
if (currentMessage === "") { |
|
return; |
|
} |
|
setMessages([ |
|
...messages, |
|
{ |
|
role: "user", |
|
content: currentMessage, |
|
}, |
|
]); |
|
await sendChatMessage(currentMessage, sessionId); |
|
}} |
|
className="flex w-full items-center space-x-2" |
|
> |
|
<Input |
|
id="message" |
|
placeholder={placeholder} |
|
className="flex-1" |
|
autoComplete="off" |
|
disabled={loading} |
|
/> |
|
<Button type="submit" size="icon"> |
|
<Send className="h-4 w-4" /> |
|
<span className="sr-only">Send</span> |
|
</Button> |
|
</form> |
|
</CardFooter> |
|
</Card> |
|
</> |
|
); |
|
} |
|
|