mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-19 12:24:46 +08:00
258 lines
8.9 KiB
TypeScript
258 lines
8.9 KiB
TypeScript
"use client";
|
|
|
|
import { FilesIcon, XIcon } from "lucide-react";
|
|
import { useParams, useRouter } from "next/navigation";
|
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
|
|
|
import { ConversationEmptyState } from "@/components/ai-elements/conversation";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
ResizableHandle,
|
|
ResizablePanel,
|
|
ResizablePanelGroup,
|
|
} from "@/components/ui/resizable";
|
|
import { useSidebar } from "@/components/ui/sidebar";
|
|
import {
|
|
ArtifactFileDetail,
|
|
ArtifactFileList,
|
|
useArtifacts,
|
|
} from "@/components/workspace/artifacts";
|
|
import { InputBox } from "@/components/workspace/input-box";
|
|
import { MessageList } from "@/components/workspace/messages";
|
|
import { ThreadContext } from "@/components/workspace/messages/context";
|
|
import { ThreadTitle } from "@/components/workspace/thread-title";
|
|
import { TodoList } from "@/components/workspace/todo-list";
|
|
import { Tooltip } from "@/components/workspace/tooltip";
|
|
import { Welcome } from "@/components/workspace/welcome";
|
|
import { useI18n } from "@/core/i18n/hooks";
|
|
import { useLocalSettings } from "@/core/settings";
|
|
import { type AgentThread } from "@/core/threads";
|
|
import { useSubmitThread, useThreadStream } from "@/core/threads/hooks";
|
|
import { pathOfThread, titleOfThread } from "@/core/threads/utils";
|
|
import { uuid } from "@/core/utils/uuid";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export default function ChatPage() {
|
|
const { t } = useI18n();
|
|
const router = useRouter();
|
|
const [settings, setSettings] = useLocalSettings();
|
|
const { setOpen: setSidebarOpen } = useSidebar();
|
|
const {
|
|
artifacts,
|
|
open: artifactsOpen,
|
|
setOpen: setArtifactsOpen,
|
|
setArtifacts,
|
|
selectedArtifact,
|
|
} = useArtifacts();
|
|
const { thread_id: threadIdFromPath } = useParams<{ thread_id: string }>();
|
|
const isNewThread = useMemo(
|
|
() => threadIdFromPath === "new",
|
|
[threadIdFromPath],
|
|
);
|
|
const [threadId, setThreadId] = useState<string | null>(null);
|
|
useEffect(() => {
|
|
if (threadIdFromPath !== "new") {
|
|
setThreadId(threadIdFromPath);
|
|
} else {
|
|
setThreadId(uuid());
|
|
}
|
|
}, [threadIdFromPath]);
|
|
|
|
const thread = useThreadStream({
|
|
isNewThread,
|
|
threadId,
|
|
});
|
|
const title = useMemo(() => {
|
|
let result = isNewThread
|
|
? ""
|
|
: titleOfThread(thread as unknown as AgentThread);
|
|
if (result === "Untitled") {
|
|
result = "";
|
|
}
|
|
return result;
|
|
}, [thread, isNewThread]);
|
|
|
|
useEffect(() => {
|
|
setArtifacts(thread.values.artifacts);
|
|
}, [setArtifacts, thread.values.artifacts]);
|
|
|
|
const [todoListCollapsed, setTodoListCollapsed] = useState(true);
|
|
|
|
const handleSubmit = useSubmitThread({
|
|
isNewThread,
|
|
threadId,
|
|
thread,
|
|
threadContext: settings.context,
|
|
afterSubmit() {
|
|
router.push(pathOfThread(threadId!));
|
|
},
|
|
});
|
|
const handleStop = useCallback(async () => {
|
|
await thread.stop();
|
|
}, [thread]);
|
|
|
|
if (!threadId) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<ThreadContext.Provider value={{ threadId, thread }}>
|
|
<ResizablePanelGroup orientation="horizontal">
|
|
<ResizablePanel
|
|
className="relative"
|
|
defaultSize={artifactsOpen ? 46 : 100}
|
|
minSize={artifactsOpen ? 30 : 100}
|
|
>
|
|
<div className="relative flex size-full min-h-0 justify-between">
|
|
<header
|
|
className={cn(
|
|
"absolute top-0 right-0 left-0 z-30 flex h-12 shrink-0 items-center px-4",
|
|
isNewThread
|
|
? "bg-background/0 backdrop-blur-none"
|
|
: "bg-background/80 backdrop-blur",
|
|
)}
|
|
>
|
|
<div className="flex w-full items-center text-sm font-medium">
|
|
{title !== "Untitled" && (
|
|
<ThreadTitle threadId={threadId} threadTitle={title} />
|
|
)}
|
|
</div>
|
|
<div>
|
|
{artifacts?.length && !artifactsOpen && (
|
|
<Tooltip content="Show artifacts of this conversation">
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() => {
|
|
setArtifactsOpen(true);
|
|
setSidebarOpen(false);
|
|
}}
|
|
>
|
|
<FilesIcon />
|
|
{t.common.artifacts}
|
|
</Button>
|
|
</Tooltip>
|
|
)}
|
|
</div>
|
|
</header>
|
|
<main className="flex min-h-0 grow flex-col">
|
|
<div className="flex size-full justify-center">
|
|
<MessageList
|
|
className="size-full"
|
|
threadId={threadId}
|
|
thread={thread}
|
|
paddingBottom={todoListCollapsed ? 160 : 280}
|
|
/>
|
|
</div>
|
|
<div className="absolute right-0 bottom-0 left-0 z-30 flex justify-center px-4">
|
|
<div
|
|
className={cn(
|
|
"relative w-full",
|
|
isNewThread && "-translate-y-[calc(50vh-160px)]",
|
|
isNewThread
|
|
? "max-w-(--container-width-sm)"
|
|
: "max-w-(--container-width-md)",
|
|
)}
|
|
>
|
|
<div className="absolute -top-4 right-0 left-0 z-0">
|
|
<div className="absolute right-0 bottom-0 left-0">
|
|
<TodoList
|
|
className="bg-background/5"
|
|
todos={thread.values.todos ?? []}
|
|
collapsed={todoListCollapsed}
|
|
hidden={
|
|
!thread.values.todos ||
|
|
thread.values.todos.length === 0
|
|
}
|
|
onToggle={() =>
|
|
setTodoListCollapsed(!todoListCollapsed)
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<InputBox
|
|
className={cn("bg-background/5 w-full -translate-y-4")}
|
|
isNewThread={isNewThread}
|
|
autoFocus={isNewThread}
|
|
status={thread.isLoading ? "streaming" : "ready"}
|
|
context={settings.context}
|
|
extraHeader={isNewThread && <Welcome />}
|
|
onContextChange={(context) =>
|
|
setSettings("context", context)
|
|
}
|
|
onSubmit={handleSubmit}
|
|
onStop={handleStop}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</ResizablePanel>
|
|
<ResizableHandle
|
|
className={cn(
|
|
"opacity-33 hover:opacity-100",
|
|
!artifactsOpen && "pointer-events-none opacity-0",
|
|
)}
|
|
/>
|
|
<ResizablePanel
|
|
className={cn(
|
|
"transition-all duration-300 ease-in-out",
|
|
!artifactsOpen && "opacity-0",
|
|
)}
|
|
defaultSize={artifactsOpen ? 64 : 0}
|
|
minSize={0}
|
|
maxSize={artifactsOpen ? undefined : 0}
|
|
>
|
|
<div
|
|
className={cn(
|
|
"h-full p-4 transition-transform duration-300 ease-in-out",
|
|
artifactsOpen ? "translate-x-0" : "translate-x-full",
|
|
)}
|
|
>
|
|
{selectedArtifact ? (
|
|
<ArtifactFileDetail
|
|
className="size-full"
|
|
filepath={selectedArtifact}
|
|
threadId={threadId}
|
|
/>
|
|
) : (
|
|
<div className="relative flex size-full justify-center">
|
|
<div className="absolute top-1 right-1 z-30">
|
|
<Button
|
|
size="icon-sm"
|
|
variant="ghost"
|
|
onClick={() => {
|
|
setArtifactsOpen(false);
|
|
}}
|
|
>
|
|
<XIcon />
|
|
</Button>
|
|
</div>
|
|
{thread.values.artifacts?.length === 0 ? (
|
|
<ConversationEmptyState
|
|
icon={<FilesIcon />}
|
|
title="No artifact selected"
|
|
description="Select an artifact to view its details"
|
|
/>
|
|
) : (
|
|
<div className="flex size-full max-w-(--container-width-sm) flex-col justify-center p-4 pt-8">
|
|
<header className="shrink-0">
|
|
<h2 className="text-lg font-medium">Artifacts</h2>
|
|
</header>
|
|
<main className="min-h-0 grow">
|
|
<ArtifactFileList
|
|
className="max-w-(--container-width-sm) p-4 pt-12"
|
|
files={thread.values.artifacts ?? []}
|
|
threadId={threadId}
|
|
/>
|
|
</main>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</ResizablePanel>
|
|
</ResizablePanelGroup>
|
|
</ThreadContext.Provider>
|
|
);
|
|
}
|