123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- import {
- memo,
- useEffect,
- useRef,
- useState,
- } from 'react'
- import cn from 'classnames'
- import { useTranslation } from 'react-i18next'
- import OutputPanel from '../run/output-panel'
- import ResultPanel from '../run/result-panel'
- import TracingPanel from '../run/tracing-panel'
- import {
- useWorkflowRun,
- } from '../hooks'
- import { useStore } from '../store'
- import {
- WorkflowRunningStatus,
- } from '../types'
- import InputsPanel from './inputs-panel'
- import Loading from '@/app/components/base/loading'
- import { XClose } from '@/app/components/base/icons/src/vender/line/general'
- const WorkflowPreview = () => {
- const { t } = useTranslation()
- const { handleRunSetting } = useWorkflowRun()
- const showInputsPanel = useStore(s => s.showInputsPanel)
- const workflowRunningData = useStore(s => s.workflowRunningData)
- const [currentTab, setCurrentTab] = useState<string>(showInputsPanel ? 'INPUT' : 'TRACING')
- const switchTab = async (tab: string) => {
- setCurrentTab(tab)
- }
- const [height, setHieght] = useState(0)
- const ref = useRef<HTMLDivElement>(null)
- const adjustResultHeight = () => {
- if (ref.current)
- setHieght(ref.current?.clientHeight - 16 - 16 - 2 - 1)
- }
- useEffect(() => {
- adjustResultHeight()
- }, [])
- return (
- <div className={`
- flex flex-col w-[420px] h-full rounded-l-2xl border-[0.5px] border-gray-200 shadow-xl bg-white
- `}>
- <div className='flex items-center justify-between p-4 pb-1 text-base font-semibold text-gray-900'>
- {`Test Run${!workflowRunningData?.result.sequence_number ? '' : `#${workflowRunningData?.result.sequence_number}`}`}
- {showInputsPanel && workflowRunningData?.result?.status !== WorkflowRunningStatus.Running && (
- <div className='p-1 cursor-pointer' onClick={() => handleRunSetting(true)}>
- <XClose className='w-4 h-4 text-gray-500' />
- </div>
- )}
- </div>
- <div className='grow relative flex flex-col'>
- <div className='shrink-0 flex items-center px-4 border-b-[0.5px] border-[rgba(0,0,0,0.05)]'>
- {showInputsPanel && (
- <div
- className={cn(
- 'mr-6 py-3 border-b-2 border-transparent text-[13px] font-semibold leading-[18px] text-gray-400 cursor-pointer',
- currentTab === 'INPUT' && '!border-[rgb(21,94,239)] text-gray-700',
- )}
- onClick={() => switchTab('INPUT')}
- >{t('runLog.input')}</div>
- )}
- <div
- className={cn(
- 'mr-6 py-3 border-b-2 border-transparent text-[13px] font-semibold leading-[18px] text-gray-400 cursor-pointer',
- currentTab === 'RESULT' && '!border-[rgb(21,94,239)] text-gray-700',
- !workflowRunningData && 'opacity-30 !cursor-not-allowed',
- )}
- onClick={() => {
- if (!workflowRunningData)
- return
- switchTab('RESULT')
- }}
- >{t('runLog.result')}</div>
- <div
- className={cn(
- 'mr-6 py-3 border-b-2 border-transparent text-[13px] font-semibold leading-[18px] text-gray-400 cursor-pointer',
- currentTab === 'DETAIL' && '!border-[rgb(21,94,239)] text-gray-700',
- !workflowRunningData && 'opacity-30 !cursor-not-allowed',
- )}
- onClick={() => {
- if (!workflowRunningData)
- return
- switchTab('DETAIL')
- }}
- >{t('runLog.detail')}</div>
- <div
- className={cn(
- 'mr-6 py-3 border-b-2 border-transparent text-[13px] font-semibold leading-[18px] text-gray-400 cursor-pointer',
- currentTab === 'TRACING' && '!border-[rgb(21,94,239)] text-gray-700',
- !workflowRunningData && 'opacity-30 !cursor-not-allowed',
- )}
- onClick={() => {
- if (!workflowRunningData)
- return
- switchTab('TRACING')
- }}
- >{t('runLog.tracing')}</div>
- </div>
- <div ref={ref} className={cn(
- 'grow bg-white h-0 overflow-y-auto rounded-b-2xl',
- (currentTab === 'RESULT' || currentTab === 'TRACING') && '!bg-gray-50',
- )}>
- {currentTab === 'INPUT' && (
- <InputsPanel onRun={() => switchTab('RESULT')} />
- )}
- {currentTab === 'RESULT' && (
- <OutputPanel
- isRunning={workflowRunningData?.result?.status === WorkflowRunningStatus.Running || !workflowRunningData?.result}
- outputs={workflowRunningData?.result?.outputs}
- error={workflowRunningData?.result?.error}
- height={height}
- />
- )}
- {currentTab === 'DETAIL' && (
- <ResultPanel
- inputs={workflowRunningData?.result?.inputs}
- outputs={workflowRunningData?.result?.outputs}
- status={workflowRunningData?.result?.status || ''}
- error={workflowRunningData?.result?.error}
- elapsed_time={workflowRunningData?.result?.elapsed_time}
- total_tokens={workflowRunningData?.result?.total_tokens}
- created_at={workflowRunningData?.result?.created_at}
- created_by={(workflowRunningData?.result?.created_by as any)?.name}
- steps={workflowRunningData?.result?.total_steps}
- />
- )}
- {currentTab === 'DETAIL' && !workflowRunningData?.result && (
- <div className='flex h-full items-center justify-center bg-white'>
- <Loading />
- </div>
- )}
- {currentTab === 'TRACING' && (
- <TracingPanel
- list={workflowRunningData?.tracing || []}
- />
- )}
- {currentTab === 'TRACING' && !workflowRunningData?.tracing?.length && (
- <div className='flex h-full items-center justify-center bg-gray-50'>
- <Loading />
- </div>
- )}
- </div>
- </div>
- </div>
- )
- }
- export default memo(WorkflowPreview)
|