'use client' import { useTranslation } from 'react-i18next' import type { FC } from 'react' import { useCallback, useEffect, useState } from 'react' import { RiAlertFill, RiArrowRightSLine, RiCheckboxCircleFill, RiErrorWarningLine, RiLoader2Line, } from '@remixicon/react' import BlockIcon from '../block-icon' import { BlockEnum } from '../types' import { RetryLogTrigger } from './retry-log' import { IterationLogTrigger } from './iteration-log' import { LoopLogTrigger } from './loop-log' import { AgentLogTrigger } from './agent-log' import cn from '@/utils/classnames' import StatusContainer from '@/app/components/workflow/run/status-container' import CodeEditor from '@/app/components/workflow/nodes/_base/components/editor/code-editor' import { CodeLanguage } from '@/app/components/workflow/nodes/code/types' import type { AgentLogItemWithChildren, IterationDurationMap, LoopDurationMap, NodeTracing, } from '@/types/workflow' import ErrorHandleTip from '@/app/components/workflow/nodes/_base/components/error-handle/error-handle-tip' import { hasRetryNode } from '@/app/components/workflow/utils' type Props = { className?: string nodeInfo: NodeTracing inMessage?: boolean hideInfo?: boolean hideProcessDetail?: boolean onShowIterationDetail?: (detail: NodeTracing[][], iterDurationMap: IterationDurationMap) => void onShowLoopDetail?: (detail: NodeTracing[][], loopDurationMap: LoopDurationMap) => void onShowRetryDetail?: (detail: NodeTracing[]) => void onShowAgentOrToolLog?: (detail?: AgentLogItemWithChildren) => void notShowIterationNav?: boolean notShowLoopNav?: boolean } const NodePanel: FC = ({ className, nodeInfo, inMessage = false, hideInfo = false, hideProcessDetail, onShowIterationDetail, onShowLoopDetail, onShowRetryDetail, onShowAgentOrToolLog, notShowIterationNav, notShowLoopNav, }) => { const [collapseState, doSetCollapseState] = useState(true) const setCollapseState = useCallback((state: boolean) => { if (hideProcessDetail) return doSetCollapseState(state) }, [hideProcessDetail]) const { t } = useTranslation() const getTime = (time: number) => { if (time < 1) return `${(time * 1000).toFixed(3)} ms` if (time > 60) return `${Number.parseInt(Math.round(time / 60).toString())} m ${(time % 60).toFixed(3)} s` return `${time.toFixed(3)} s` } const getTokenCount = (tokens: number) => { if (tokens < 1000) return tokens if (tokens >= 1000 && tokens < 1000000) return `${Number.parseFloat((tokens / 1000).toFixed(3))}K` if (tokens >= 1000000) return `${Number.parseFloat((tokens / 1000000).toFixed(3))}M` } useEffect(() => { setCollapseState(!nodeInfo.expand) }, [nodeInfo.expand, setCollapseState]) const isIterationNode = nodeInfo.node_type === BlockEnum.Iteration && !!nodeInfo.details?.length const isLoopNode = nodeInfo.node_type === BlockEnum.Loop && !!nodeInfo.details?.length const isRetryNode = hasRetryNode(nodeInfo.node_type) && !!nodeInfo.retryDetail?.length const isAgentNode = nodeInfo.node_type === BlockEnum.Agent && !!nodeInfo.agentLog?.length const isToolNode = nodeInfo.node_type === BlockEnum.Tool && !!nodeInfo.agentLog?.length return (
setCollapseState(!collapseState)} > {!hideProcessDetail && ( )}
{nodeInfo.title}
{nodeInfo.status !== 'running' && !hideInfo && (
{nodeInfo.execution_metadata?.total_tokens ? `${getTokenCount(nodeInfo.execution_metadata?.total_tokens || 0)} tokens ยท ` : ''}{`${getTime(nodeInfo.elapsed_time || 0)}`}
)} {nodeInfo.status === 'succeeded' && ( )} {nodeInfo.status === 'failed' && ( )} {nodeInfo.status === 'stopped' && ( )} {nodeInfo.status === 'exception' && ( )} {nodeInfo.status === 'running' && (
Running
)}
{!collapseState && !hideProcessDetail && (
{/* The nav to the iteration detail */} {isIterationNode && !notShowIterationNav && onShowIterationDetail && ( )} {/* The nav to the Loop detail */} {isLoopNode && !notShowLoopNav && onShowLoopDetail && ( )} {isRetryNode && onShowRetryDetail && ( )} { (isAgentNode || isToolNode) && onShowAgentOrToolLog && ( ) }
{(nodeInfo.status === 'stopped') && ( {t('workflow.tracing.stopBy', { user: nodeInfo.created_by ? nodeInfo.created_by.name : 'N/A' })} )} {(nodeInfo.status === 'exception') && ( {nodeInfo.error} {t('workflow.common.learnMore')} )} {nodeInfo.status === 'failed' && ( {nodeInfo.error} )} {nodeInfo.status === 'retry' && ( {nodeInfo.error} )}
{nodeInfo.inputs && (
{t('workflow.common.input').toLocaleUpperCase()}
} language={CodeLanguage.json} value={nodeInfo.inputs} isJSONStringifyBeauty />
)} {nodeInfo.process_data && (
{t('workflow.common.processData').toLocaleUpperCase()}
} language={CodeLanguage.json} value={nodeInfo.process_data} isJSONStringifyBeauty />
)} {nodeInfo.outputs && (
{t('workflow.common.output').toLocaleUpperCase()}
} language={CodeLanguage.json} value={nodeInfo.outputs} isJSONStringifyBeauty tip={} />
)} )} ) } export default NodePanel