wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import {
  memo,
} from 'react'
import { Markdown } from '@/app/components/base/markdown'
import CodeEditor from '@/app/components/workflow/nodes/_base/components/editor/code-editor'
import { CodeLanguage } from '@/app/components/workflow/nodes/code/types'
import type { WorkflowProcess } from '@/app/components/base/chat/types'
import { FileList } from '@/app/components/base/file-uploader'
 
const ResultTab = ({
  data,
  content,
  currentTab,
}: {
  data?: WorkflowProcess
  content: any
  currentTab: string
}) => {
  return (
    <>
      {currentTab === 'RESULT' && (
        <div className='space-y-3 p-4'>
          {data?.resultText && <Markdown content={data?.resultText || ''} />}
          {!!data?.files?.length && (
            <div className='flex flex-col gap-2'>
              {data?.files.map((item: any) => (
                <div key={item.varName} className='system-xs-regular flex flex-col gap-1'>
                  <div className='py-1 text-text-tertiary '>{item.varName}</div>
                  <FileList
                    files={item.list}
                    showDeleteAction={false}
                    showDownloadAction
                    canPreview
                  />
                </div>
              ))}
            </div>
          )}
        </div>
      )}
      {currentTab === 'DETAIL' && content && (
        <div className='p-4'>
          <CodeEditor
            readOnly
            title={<div>JSON OUTPUT</div>}
            language={CodeLanguage.json}
            value={content}
            isJSONStringifyBeauty
          />
        </div>
      )}
    </>
  )
}
 
export default memo(ResultTab)