102 lines
3.7 KiB
TypeScript
102 lines
3.7 KiB
TypeScript
|
|
import React, { useState, useRef, useEffect } from "react";
|
||
|
|
import { Send, Bot, User } from "lucide-react";
|
||
|
|
import type { TriageMessage } from "@/lib/tauriCommands";
|
||
|
|
|
||
|
|
interface ChatWindowProps {
|
||
|
|
messages: TriageMessage[];
|
||
|
|
onSend: (message: string) => Promise<void>;
|
||
|
|
isLoading?: boolean;
|
||
|
|
placeholder?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function ChatWindow({ messages, onSend, isLoading, placeholder }: ChatWindowProps) {
|
||
|
|
const [input, setInput] = useState("");
|
||
|
|
const bottomRef = useRef<HTMLDivElement>(null);
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
bottomRef.current?.scrollIntoView({ behavior: "smooth" });
|
||
|
|
}, [messages]);
|
||
|
|
|
||
|
|
const handleSend = async () => {
|
||
|
|
if (!input.trim() || isLoading) return;
|
||
|
|
const msg = input;
|
||
|
|
setInput("");
|
||
|
|
await onSend(msg);
|
||
|
|
};
|
||
|
|
|
||
|
|
const handleKeyDown = (e: React.KeyboardEvent) => {
|
||
|
|
if (e.key === "Enter" && !e.shiftKey) {
|
||
|
|
e.preventDefault();
|
||
|
|
handleSend();
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col h-full">
|
||
|
|
<div className="flex-1 overflow-y-auto p-4 space-y-4">
|
||
|
|
{messages.map((msg) => (
|
||
|
|
<div
|
||
|
|
key={msg.id}
|
||
|
|
className={`flex gap-3 ${msg.role === "user" ? "justify-end" : "justify-start"}`}
|
||
|
|
>
|
||
|
|
{msg.role === "assistant" && (
|
||
|
|
<div className="w-8 h-8 rounded-full bg-primary flex items-center justify-center shrink-0">
|
||
|
|
<Bot className="w-4 h-4 text-primary-foreground" />
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
<div
|
||
|
|
className={`max-w-[75%] rounded-lg px-4 py-2 text-sm ${
|
||
|
|
msg.role === "user"
|
||
|
|
? "bg-primary text-primary-foreground"
|
||
|
|
: "bg-muted text-foreground"
|
||
|
|
}`}
|
||
|
|
>
|
||
|
|
<p className="whitespace-pre-wrap">{msg.content}</p>
|
||
|
|
</div>
|
||
|
|
{msg.role === "user" && (
|
||
|
|
<div className="w-8 h-8 rounded-full bg-secondary flex items-center justify-center shrink-0">
|
||
|
|
<User className="w-4 h-4 text-secondary-foreground" />
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
</div>
|
||
|
|
))}
|
||
|
|
{isLoading && (
|
||
|
|
<div className="flex gap-3 justify-start">
|
||
|
|
<div className="w-8 h-8 rounded-full bg-primary flex items-center justify-center">
|
||
|
|
<Bot className="w-4 h-4 text-primary-foreground" />
|
||
|
|
</div>
|
||
|
|
<div className="bg-muted rounded-lg px-4 py-3">
|
||
|
|
<div className="flex space-x-1">
|
||
|
|
<div className="w-2 h-2 bg-muted-foreground rounded-full animate-bounce" />
|
||
|
|
<div className="w-2 h-2 bg-muted-foreground rounded-full animate-bounce [animation-delay:0.1s]" />
|
||
|
|
<div className="w-2 h-2 bg-muted-foreground rounded-full animate-bounce [animation-delay:0.2s]" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
<div ref={bottomRef} />
|
||
|
|
</div>
|
||
|
|
<div className="border-t p-4">
|
||
|
|
<div className="flex gap-2">
|
||
|
|
<textarea
|
||
|
|
value={input}
|
||
|
|
onChange={(e) => setInput(e.target.value)}
|
||
|
|
onKeyDown={handleKeyDown}
|
||
|
|
placeholder={placeholder ?? "Type your response... (Enter to send, Shift+Enter for new line)"}
|
||
|
|
rows={2}
|
||
|
|
className="flex-1 resize-none rounded-md border border-input bg-background px-3 py-2 text-sm placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring"
|
||
|
|
disabled={isLoading}
|
||
|
|
/>
|
||
|
|
<button
|
||
|
|
onClick={handleSend}
|
||
|
|
disabled={!input.trim() || isLoading}
|
||
|
|
className="px-4 py-2 bg-primary text-primary-foreground rounded-md hover:opacity-90 disabled:opacity-50 disabled:cursor-not-allowed"
|
||
|
|
>
|
||
|
|
<Send className="w-4 h-4" />
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|