Files
agent-chat-ui/src/components/thread/index.tsx

347 lines
11 KiB
TypeScript
Raw Normal View History

2025-03-03 12:40:24 -08:00
import { v4 as uuidv4 } from "uuid";
2025-03-04 15:37:40 +01:00
import { ReactNode, useEffect, useRef } from "react";
2025-03-06 15:58:02 -08:00
import { motion } from "framer-motion";
import { cn } from "@/lib/utils";
import { useStreamContext } from "@/providers/Stream";
import { useState, FormEvent } from "react";
import { Input } from "../ui/input";
import { Button } from "../ui/button";
2025-03-03 13:24:24 -08:00
import { Checkpoint, Message } from "@langchain/langgraph-sdk";
import { AssistantMessage, AssistantMessageLoading } from "./messages/ai";
import { HumanMessage } from "./messages/human";
2025-03-03 12:40:24 -08:00
import {
DO_NOT_RENDER_ID_PREFIX,
ensureToolCallsHaveResponses,
} from "@/lib/ensure-tool-responses";
2025-03-03 12:51:21 -08:00
import { LangGraphLogoSVG } from "../icons/langgraph";
2025-03-03 13:13:57 -08:00
import { TooltipIconButton } from "./tooltip-icon-button";
2025-03-04 11:01:19 -08:00
import {
ArrowDown,
LoaderCircle,
PanelRightOpen,
SquarePen,
} from "lucide-react";
import { BooleanParam, StringParam, useQueryParam } from "use-query-params";
2025-03-04 15:37:40 +01:00
import { StickToBottom, useStickToBottomContext } from "use-stick-to-bottom";
2025-03-04 10:34:52 -08:00
import ThreadHistory from "./history";
import { toast } from "sonner";
2025-03-06 15:58:02 -08:00
import { useMediaQuery } from "@/hooks/useMediaQuery";
2025-03-04 15:37:40 +01:00
function StickyToBottomContent(props: {
content: ReactNode;
footer?: ReactNode;
className?: string;
contentClassName?: string;
}) {
const context = useStickToBottomContext();
return (
<div
ref={context.scrollRef}
style={{ width: "100%", height: "100%" }}
className={props.className}
>
<div ref={context.contentRef} className={props.contentClassName}>
{props.content}
</div>
{props.footer}
</div>
);
}
2025-03-04 15:56:36 +01:00
function ScrollToBottom(props: { className?: string }) {
const { isAtBottom, scrollToBottom } = useStickToBottomContext();
if (isAtBottom) return null;
return (
<Button
variant="outline"
className={props.className}
onClick={() => scrollToBottom()}
>
<ArrowDown className="w-4 h-4" />
<span>Scroll to bottom</span>
</Button>
);
}
export function Thread() {
2025-03-04 15:54:43 +01:00
const [threadId, setThreadId] = useQueryParam("threadId", StringParam);
2025-03-06 15:58:02 -08:00
const [chatHistoryOpen, setChatHistoryOpen] = useQueryParam(
2025-03-04 11:01:19 -08:00
"chatHistoryOpen",
BooleanParam,
);
const [input, setInput] = useState("");
const [firstTokenReceived, setFirstTokenReceived] = useState(false);
2025-03-06 15:58:02 -08:00
const isLargeScreen = useMediaQuery("(min-width: 1024px)");
2025-03-04 15:54:43 +01:00
const stream = useStreamContext();
const messages = stream.messages;
const isLoading = stream.isLoading;
const lastError = useRef<string | undefined>(undefined);
useEffect(() => {
if (!stream.error) {
lastError.current = undefined;
return;
}
try {
const message = (stream.error as any).message;
if (!message || lastError.current === message) {
// Message has already been logged. do not modify ref, return early.
return;
}
// Message is defined, and it has not been logged yet. Save it, and send the error
lastError.current = message;
toast.error("An error occurred. Please try again.", {
description: (
<p>
<strong>Error:</strong> <code>{message}</code>
</p>
),
richColors: true,
closeButton: true,
});
} catch {
// no-op
}
}, [stream.error]);
2025-03-04 14:44:55 +01:00
// TODO: this should be part of the useStream hook
2025-03-04 15:54:43 +01:00
const prevMessageLength = useRef(0);
useEffect(() => {
if (
messages.length !== prevMessageLength.current &&
messages?.length &&
messages[messages.length - 1].type === "ai"
) {
setFirstTokenReceived(true);
}
2025-03-04 15:46:40 +01:00
prevMessageLength.current = messages.length;
}, [messages]);
const handleSubmit = (e: FormEvent) => {
e.preventDefault();
if (!input.trim() || isLoading) return;
setFirstTokenReceived(false);
2025-03-03 12:40:24 -08:00
const newHumanMessage: Message = {
id: uuidv4(),
type: "human",
content: input,
};
2025-03-04 13:45:02 +01:00
const toolMessages = ensureToolCallsHaveResponses(stream.messages);
stream.submit(
2025-03-04 13:45:02 +01:00
{ messages: [...toolMessages, newHumanMessage] },
2025-03-04 14:44:55 +01:00
{
streamMode: ["values"],
optimisticValues: (prev) => ({
...prev,
messages: [
...(prev.messages ?? []),
...toolMessages,
newHumanMessage,
],
}),
},
);
setInput("");
};
2025-03-03 13:24:24 -08:00
const handleRegenerate = (
2025-03-04 14:12:56 +01:00
parentCheckpoint: Checkpoint | null | undefined,
2025-03-03 13:24:24 -08:00
) => {
// Do this so the loading state is correct
prevMessageLength.current = prevMessageLength.current - 1;
setFirstTokenReceived(false);
stream.submit(undefined, {
checkpoint: parentCheckpoint,
streamMode: ["values"],
});
};
2025-03-05 15:33:02 -08:00
const chatStarted = !!threadId || !!messages.length;
return (
2025-03-04 10:34:52 -08:00
<div className="flex w-full h-screen overflow-hidden">
2025-03-06 15:58:02 -08:00
<div className="relative lg:flex hidden">
<motion.div
className="absolute h-full border-r bg-white overflow-hidden z-20"
style={{ width: 300 }}
animate={
isLargeScreen
? { x: chatHistoryOpen ? 0 : -300 }
: { x: chatHistoryOpen ? 0 : -300 }
}
initial={{ x: -300 }}
transition={
isLargeScreen
? { type: "spring", stiffness: 300, damping: 30 }
: { duration: 0 }
}
>
<div className="relative h-full" style={{ width: 300 }}>
<ThreadHistory />
</div>
</motion.div>
</div>
<motion.div
2025-03-04 15:37:40 +01:00
className={cn(
2025-03-06 15:58:02 -08:00
"flex-1 flex flex-col min-w-0 overflow-hidden relative",
!chatStarted && "grid-rows-[1fr]",
2025-03-03 12:51:21 -08:00
)}
2025-03-06 15:58:02 -08:00
layout={isLargeScreen}
animate={{
marginLeft: chatHistoryOpen ? (isLargeScreen ? 300 : 0) : 0,
width: chatHistoryOpen
? isLargeScreen
? "calc(100% - 300px)"
: "100%"
: "100%",
}}
transition={
isLargeScreen
? { type: "spring", stiffness: 300, damping: 30 }
: { duration: 0 }
}
2025-03-04 15:37:40 +01:00
>
2025-03-06 15:58:02 -08:00
{!chatStarted && (
<div className="flex items-center justify-between gap-3 p-2 pl-4 z-10 relative">
{(!chatHistoryOpen || !isLargeScreen) && (
<Button
className="hover:bg-gray-100"
variant="ghost"
onClick={() => setChatHistoryOpen((p) => !p)}
>
<PanelRightOpen />
</Button>
)}
</div>
)}
{chatStarted && (
2025-03-04 15:37:40 +01:00
<div className="flex items-center justify-between gap-3 p-2 pl-4 z-10 relative">
2025-03-06 15:58:02 -08:00
<div className="flex items-center justify-start gap-2">
{(!chatHistoryOpen || !isLargeScreen) && (
<Button
className="hover:bg-gray-100"
variant="ghost"
onClick={() => setChatHistoryOpen((p) => !p)}
>
<PanelRightOpen />
</Button>
)}
2025-03-04 11:01:19 -08:00
<button
className="flex gap-2 items-center cursor-pointer"
onClick={() => setThreadId(null)}
>
<LangGraphLogoSVG width={32} height={32} />
<span className="text-xl font-semibold tracking-tight">
LangGraph Chat
</span>
</button>
</div>
2025-03-04 15:43:35 +01:00
2025-03-04 15:54:43 +01:00
<TooltipIconButton
size="lg"
className="p-4"
tooltip="New thread"
variant="ghost"
onClick={() => setThreadId(null)}
>
<SquarePen className="size-5" />
</TooltipIconButton>
2025-03-04 15:37:40 +01:00
<div className="absolute inset-x-0 top-full h-5 bg-gradient-to-b from-background to-background/0" />
2025-03-03 12:51:21 -08:00
</div>
)}
2025-03-04 10:34:52 -08:00
<StickToBottom className="relative flex-1 overflow-hidden">
2025-03-04 15:37:40 +01:00
<StickyToBottomContent
className={cn(
"absolute inset-0 overflow-y-scroll [&::-webkit-scrollbar]:w-1.5 [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:bg-gray-300 [&::-webkit-scrollbar-track]:bg-transparent",
!chatStarted && "flex flex-col items-stretch mt-[25vh]",
chatStarted && "grid grid-rows-[1fr_auto]",
2025-03-04 15:37:40 +01:00
)}
2025-03-04 15:54:43 +01:00
contentClassName="pt-8 pb-16 px-4 max-w-4xl mx-auto flex flex-col gap-4 w-full"
2025-03-04 15:37:40 +01:00
content={
<>
2025-03-04 15:54:43 +01:00
{messages
.filter((m) => !m.id?.startsWith(DO_NOT_RENDER_ID_PREFIX))
.map((message, index) =>
message.type === "human" ? (
<HumanMessage
key={message.id || `${message.type}-${index}`}
message={message}
isLoading={isLoading}
/>
) : (
<AssistantMessage
key={message.id || `${message.type}-${index}`}
message={message}
isLoading={isLoading}
handleRegenerate={handleRegenerate}
/>
),
)}
2025-03-04 15:37:40 +01:00
{isLoading && !firstTokenReceived && (
<AssistantMessageLoading />
)}
</>
}
footer={
<div className="sticky flex flex-col items-center gap-8 bottom-8 px-4">
{!chatStarted && (
2025-03-04 15:43:35 +01:00
<div className="flex gap-3 items-center">
<LangGraphLogoSVG className="flex-shrink-0 h-8" />
2025-03-04 17:38:33 +01:00
<h1 className="text-2xl font-semibold tracking-tight">
LangGraph Chat
</h1>
2025-03-04 10:35:03 -08:00
</div>
2025-03-04 15:43:35 +01:00
)}
2025-03-04 15:56:36 +01:00
<ScrollToBottom className="absolute bottom-full left-1/2 -translate-x-1/2 mb-4 animate-in fade-in-0 zoom-in-95" />
2025-03-06 15:58:02 -08:00
<div className="bg-background rounded-2xl border shadow-md mx-auto w-full max-w-4xl relative z-10">
2025-03-04 15:37:40 +01:00
<form
onSubmit={handleSubmit}
className="grid grid-rows-[1fr_auto] gap-2 max-w-4xl mx-auto"
>
<Input
type="text"
value={input}
onChange={(e) => setInput(e.target.value)}
placeholder="Type your message..."
className="px-4 py-6 border-none bg-transparent shadow-none ring-0 outline-none focus:outline-none focus:ring-0"
/>
<div className="flex items-center justify-end p-2 pt-0">
2025-03-04 16:11:44 +01:00
{stream.isLoading ? (
<Button key="stop" onClick={() => stream.stop()}>
<LoaderCircle className="w-4 h-4 animate-spin" />
Cancel
</Button>
) : (
<Button
type="submit"
disabled={isLoading || !input.trim()}
>
Send
</Button>
)}
2025-03-04 15:37:40 +01:00
</div>
</form>
</div>
</div>
}
/>
2025-03-04 15:37:40 +01:00
</StickToBottom>
2025-03-06 15:58:02 -08:00
</motion.div>
</div>
);
}