File size: 9,401 Bytes
a8b3f00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import {
  memo,
  useCallback,
  useEffect,
  // useRef,
  useState,
} from 'react'
import {
  RiClipboardLine,
  RiCloseLine,
} from '@remixicon/react'
import { useTranslation } from 'react-i18next'
import copy from 'copy-to-clipboard'
import { useBoolean } from 'ahooks'
import ResultText from '../run/result-text'
import ResultPanel from '../run/result-panel'
import TracingPanel from '../run/tracing-panel'
import {
  useWorkflowInteractions,
} from '../hooks'
import { useStore } from '../store'
import {
  WorkflowRunningStatus,
} from '../types'
import { SimpleBtn } from '../../app/text-generate/item'
import Toast from '../../base/toast'
import IterationResultPanel from '../run/iteration-result-panel'
import InputsPanel from './inputs-panel'
import cn from '@/utils/classnames'
import Loading from '@/app/components/base/loading'
import type { NodeTracing } from '@/types/workflow'

const WorkflowPreview = () => {
  const { t } = useTranslation()
  const { handleCancelDebugAndPreviewPanel } = useWorkflowInteractions()
  const workflowRunningData = useStore(s => s.workflowRunningData)
  const showInputsPanel = useStore(s => s.showInputsPanel)
  const showDebugAndPreviewPanel = useStore(s => s.showDebugAndPreviewPanel)
  const [currentTab, setCurrentTab] = useState<string>(showInputsPanel ? 'INPUT' : 'TRACING')

  const switchTab = async (tab: string) => {
    setCurrentTab(tab)
  }

  useEffect(() => {
    if (showDebugAndPreviewPanel && showInputsPanel)
      setCurrentTab('INPUT')
  }, [showDebugAndPreviewPanel, showInputsPanel])

  useEffect(() => {
    if ((workflowRunningData?.result.status === WorkflowRunningStatus.Succeeded || workflowRunningData?.result.status === WorkflowRunningStatus.Failed) && !workflowRunningData.resultText)
      switchTab('DETAIL')
  }, [workflowRunningData])

  const [iterationRunResult, setIterationRunResult] = useState<NodeTracing[][]>([])
  const [isShowIterationDetail, {
    setTrue: doShowIterationDetail,
    setFalse: doHideIterationDetail,
  }] = useBoolean(false)

  const handleShowIterationDetail = useCallback((detail: NodeTracing[][]) => {
    setIterationRunResult(detail)
    doShowIterationDetail()
  }, [doShowIterationDetail])

  if (isShowIterationDetail) {
    return (
      <div className={`
      flex flex-col w-[420px] h-full rounded-l-2xl border-[0.5px] border-gray-200 shadow-xl bg-white
    `}>
        <IterationResultPanel
          list={iterationRunResult}
          onHide={doHideIterationDetail}
          onBack={doHideIterationDetail}
        />
      </div>
    )
  }

  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}`}`}
        <div className='p-1 cursor-pointer' onClick={() => handleCancelDebugAndPreviewPanel()}>
          <RiCloseLine className='w-4 h-4 text-gray-500' />
        </div>
      </div>
      <div className='grow relative flex flex-col'>
        {isShowIterationDetail
          ? (
            <IterationResultPanel
              list={iterationRunResult}
              onHide={doHideIterationDetail}
              onBack={doHideIterationDetail}
            />
          )
          : (
            <>
              <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 className={cn(
                'grow bg-components-panel-bg h-0 overflow-y-auto rounded-b-2xl',
                (currentTab === 'RESULT' || currentTab === 'TRACING') && '!bg-background-section-burn',
              )}>
                {currentTab === 'INPUT' && showInputsPanel && (
                  <InputsPanel onRun={() => switchTab('RESULT')} />
                )}
                {currentTab === 'RESULT' && (
                  <>
                    <ResultText
                      isRunning={workflowRunningData?.result?.status === WorkflowRunningStatus.Running || !workflowRunningData?.result}
                      outputs={workflowRunningData?.resultText}
                      allFiles={workflowRunningData?.result?.files as any}
                      error={workflowRunningData?.result?.error}
                      onClick={() => switchTab('DETAIL')}
                    />
                    {(workflowRunningData?.result.status === WorkflowRunningStatus.Succeeded && workflowRunningData?.resultText && typeof workflowRunningData?.resultText === 'string') && (
                      <SimpleBtn
                        className={cn('ml-4 mb-4 inline-flex space-x-1')}
                        onClick={() => {
                          const content = workflowRunningData?.resultText
                          if (typeof content === 'string')
                            copy(content)
                          else
                            copy(JSON.stringify(content))
                          Toast.notify({ type: 'success', message: t('common.actionMsg.copySuccessfully') })
                        }}>
                        <RiClipboardLine className='w-3.5 h-3.5' />
                        <div>{t('common.operation.copy')}</div>
                      </SimpleBtn>
                    )}
                  </>
                )}
                {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-components-panel-bg'>
                    <Loading />
                  </div>
                )}
                {currentTab === 'TRACING' && (
                  <TracingPanel
                    className='bg-background-section-burn'
                    list={workflowRunningData?.tracing || []}
                    onShowIterationDetail={handleShowIterationDetail}
                  />
                )}
                {currentTab === 'TRACING' && !workflowRunningData?.tracing?.length && (
                  <div className='flex h-full items-center justify-center !bg-background-section-burn'>
                    <Loading />
                  </div>
                )}

              </div>
            </>
          )}

      </div>
    </div>
  )
}

export default memo(WorkflowPreview)