mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-15 15:28:18 +08:00

Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Patryk Garstecki <patryk20120@yahoo.pl> Co-authored-by: Sebastian.W <thiner@gmail.com> Co-authored-by: 呆萌闷油瓶 <253605712@qq.com> Co-authored-by: takatost <takatost@users.noreply.github.com> Co-authored-by: rechardwang <wh_goodjob@163.com> Co-authored-by: Nite Knite <nkCoding@gmail.com> Co-authored-by: Chenhe Gu <guchenhe@gmail.com> Co-authored-by: Joshua <138381132+joshua20231026@users.noreply.github.com> Co-authored-by: Weaxs <459312872@qq.com> Co-authored-by: Ikko Eltociear Ashimine <eltociear@gmail.com> Co-authored-by: leejoo0 <81673835+leejoo0@users.noreply.github.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: sino <sino2322@gmail.com> Co-authored-by: Vikey Chen <vikeytk@gmail.com> Co-authored-by: wanghl <Wang-HL@users.noreply.github.com> Co-authored-by: Haolin Wang-汪皓临 <haolin.wang@atlaslovestravel.com> Co-authored-by: Zixuan Cheng <61724187+Theysua@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: Bowen Liang <bowenliang@apache.org> Co-authored-by: Bowen Liang <liangbowen@gf.com.cn> Co-authored-by: fanghongtai <42790567+fanghongtai@users.noreply.github.com> Co-authored-by: wxfanghongtai <wxfanghongtai@gf.com.cn> Co-authored-by: Matri <qjp@bithuman.io> Co-authored-by: Benjamin <benjaminx@gmail.com>
93 lines
3.0 KiB
TypeScript
93 lines
3.0 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { useCallback } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import cn from 'classnames'
|
|
import { ArrowNarrowLeft } from '../../base/icons/src/vender/line/arrows'
|
|
import NodePanel from './node'
|
|
import type { NodeTracing } from '@/types/workflow'
|
|
import { XClose } from '@/app/components/base/icons/src/vender/line/general'
|
|
const i18nPrefix = 'workflow.singleRun'
|
|
|
|
type Props = {
|
|
list: NodeTracing[][]
|
|
onHide: () => void
|
|
onBack: () => void
|
|
noWrap?: boolean
|
|
}
|
|
|
|
const IterationResultPanel: FC<Props> = ({
|
|
list,
|
|
onHide,
|
|
onBack,
|
|
noWrap,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
|
|
const main = (
|
|
<>
|
|
<div className={cn(!noWrap && 'shrink-0 ', 'pl-4 pr-3 pt-3')}>
|
|
<div className='shrink-0 flex justify-between items-center h-8'>
|
|
<div className='text-base font-semibold text-gray-900 truncate'>
|
|
{t(`${i18nPrefix}.testRunIteration`)}
|
|
</div>
|
|
<div className='ml-2 shrink-0 p-1 cursor-pointer' onClick={onHide}>
|
|
<XClose className='w-4 h-4 text-gray-500 ' />
|
|
</div>
|
|
</div>
|
|
<div className='flex items-center py-2 space-x-1 text-primary-600 cursor-pointer' onClick={onBack}>
|
|
<ArrowNarrowLeft className='w-4 h-4' />
|
|
<div className='leading-[18px] text-[13px] font-medium'>{t(`${i18nPrefix}.back`)}</div>
|
|
</div>
|
|
</div>
|
|
{/* List */}
|
|
<div className={cn(!noWrap ? 'h-0 grow' : 'max-h-full', 'overflow-y-auto px-4 pb-4 bg-gray-50')}>
|
|
{list.map((iteration, index) => (
|
|
<div key={index} className={cn('my-4', index === 0 && 'mt-2')}>
|
|
<div className='flex items-center'>
|
|
<div className='shrink-0 leading-[18px] text-xs font-semibold text-gray-500 uppercase'>{t(`${i18nPrefix}.iteration`)} {index + 1}</div>
|
|
<div
|
|
className='ml-3 grow w-0 h-px'
|
|
style={{ background: 'linear-gradient(to right, #F3F4F6, rgba(243, 244, 246, 0))' }}
|
|
></div>
|
|
</div>
|
|
<div className='mt-0.5 space-y-1'>
|
|
{iteration.map(node => (
|
|
<NodePanel
|
|
key={node.id}
|
|
className='!px-0 !py-0'
|
|
nodeInfo={node}
|
|
notShowIterationNav
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</>
|
|
)
|
|
const handleNotBubble = useCallback((e: React.MouseEvent) => {
|
|
// if not do this, it will trigger the message log modal disappear(useClickAway)
|
|
e.stopPropagation()
|
|
e.nativeEvent.stopImmediatePropagation()
|
|
}, [])
|
|
|
|
if (noWrap)
|
|
return main
|
|
|
|
return (
|
|
<div
|
|
className='absolute inset-0 z-10 rounded-2xl pt-10'
|
|
style={{
|
|
backgroundColor: 'rgba(16, 24, 40, 0.20)',
|
|
}}
|
|
onClick={handleNotBubble}
|
|
>
|
|
<div className='h-full rounded-2xl bg-white flex flex-col'>
|
|
{main}
|
|
</div>
|
|
</div >
|
|
)
|
|
}
|
|
export default React.memo(IterationResultPanel)
|