import { memo, useCallback, useEffect, useRef, useState } from "react"; import { Button, Tooltip } from "antd"; import { ChevronDown } from "lucide-react"; import { motion, useSpring, useTransform } from "motion/react"; import { canvasThemes } from "@/lib/canvas-theme"; import { summarizeCanvasAgentOps } from "@/lib/canvas/canvas-agent-ops"; import { useAgentStore, type AgentChatItem, type AgentPendingApproval, type AgentPendingToolCall, type AgentTokenUsage } from "@/stores/use-agent-store"; import { AgentApprovalCard, AgentChatMessage, AgentPendingToolCard, AgentToolCard, AgentWorkingMessage } from "./agent-chat-message"; import { agentMessageToChatMessage, currentPlanMessage, isPlanMessage, latestPlanMessage, toolCallDetail, toolName, workingActivity } from "./agent-event-formatters"; const SCROLL_BOTTOM_THRESHOLD = 48; export function AgentChatTimeline({ theme, pendingTool, pendingApprovals, sending, waiting, onRejectTool, onApproveTool, onApprovalDecision, }: { theme: (typeof canvasThemes)[keyof typeof canvasThemes]; pendingTool: AgentPendingToolCall | null; pendingApprovals: AgentPendingApproval[]; sending: boolean; waiting: boolean; onRejectTool: () => void; onApproveTool: () => void; onApprovalDecision: (approval: AgentPendingApproval, decision: "accept" | "acceptForSession" | "decline") => void; }) { const messages = useAgentStore((state) => state.messages); const listRef = useRef(null); const followMessagesRef = useRef(true); const [showScrollToBottom, setShowScrollToBottom] = useState(false); const streaming = messages.some((message) => message.streamId); const working = workingActivity(messages.at(-1)); const updateScrollState = useCallback(() => { const list = listRef.current; if (!list) return; const atBottom = list.scrollHeight - list.scrollTop - list.clientHeight <= SCROLL_BOTTOM_THRESHOLD; followMessagesRef.current = atBottom; setShowScrollToBottom(!atBottom); }, []); const scrollToBottom = useCallback((behavior: ScrollBehavior = "smooth") => { const list = listRef.current; if (!list) return; followMessagesRef.current = true; list.scrollTo({ top: list.scrollHeight, behavior }); setShowScrollToBottom(false); }, []); useEffect(() => { const frame = requestAnimationFrame(() => (followMessagesRef.current ? scrollToBottom("auto") : updateScrollState())); return () => cancelAnimationFrame(frame); }, [messages, pendingApprovals, pendingTool, scrollToBottom, updateScrollState, waiting]); return (
{messages.map((item) => ( isPlanMessage(item) ? null : ))} {pendingTool ? ( ) : null} {pendingApprovals.map((approval) => onApprovalDecision(approval, decision)} />)} {(sending || waiting) && !streaming && !pendingTool && !pendingApprovals.length ? : null}
{showScrollToBottom ? (
); } export function AgentTaskProgress({ theme, busy }: { theme: (typeof canvasThemes)[keyof typeof canvasThemes]; busy: boolean }) { const plan = useAgentStore((state) => busy ? currentPlanMessage(state.messages) : latestPlanMessage(state.messages)); if (!plan) return null; return (
); } const AgentChatMessageRow = memo(function AgentChatMessageRow({ item, theme }: { item: AgentChatItem; theme: (typeof canvasThemes)[keyof typeof canvasThemes] }) { return (
); }); export function AgentUsageBar({ usage, theme }: { usage: AgentTokenUsage; theme: (typeof canvasThemes)[keyof typeof canvasThemes] }) { return (
最新调用
); } function UsageNumber({ label, value, color }: { label: string; value: number; color: string }) { const spring = useSpring(value, { stiffness: 110, damping: 24, mass: 0.7 }); const text = useTransform(spring, (current) => Math.round(current).toLocaleString()); useEffect(() => spring.set(value), [spring, value]); return ( {label} {text} ); }