'use client' import type { FC } from 'react' import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react' import { useContext } from 'use-context-selector' import { useTranslation } from 'react-i18next' import OutputPanel from './output-panel' import ResultPanel from './result-panel' import TracingPanel from './tracing-panel' import cn from '@/utils/classnames' import { ToastContext } from '@/app/components/base/toast' import Loading from '@/app/components/base/loading' import { fetchRunDetail, fetchTracingList } from '@/service/log' import type { NodeTracing } from '@/types/workflow' import type { WorkflowRunDetailResponse } from '@/models/log' export type RunProps = { hideResult?: boolean activeTab?: 'RESULT' | 'DETAIL' | 'TRACING' getResultCallback?: (result: WorkflowRunDetailResponse) => void runDetailUrl: string tracingListUrl: string } const RunPanel: FC = ({ hideResult, activeTab = 'RESULT', getResultCallback, runDetailUrl, tracingListUrl, }) => { const { t } = useTranslation() const { notify } = useContext(ToastContext) const [currentTab, setCurrentTab] = useState(activeTab) const [loading, setLoading] = useState(true) const [runDetail, setRunDetail] = useState() const [list, setList] = useState([]) const executor = useMemo(() => { if (runDetail?.created_by_role === 'account') return runDetail.created_by_account?.name || '' if (runDetail?.created_by_role === 'end_user') return runDetail.created_by_end_user?.session_id || '' return 'N/A' }, [runDetail]) const getResult = useCallback(async () => { try { const res = await fetchRunDetail(runDetailUrl) setRunDetail(res) if (getResultCallback) getResultCallback(res) } catch (err) { notify({ type: 'error', message: `${err}`, }) } }, [notify, getResultCallback, runDetailUrl]) const getTracingList = useCallback(async () => { try { const { data: nodeList } = await fetchTracingList({ url: tracingListUrl, }) setList(nodeList) } catch (err) { notify({ type: 'error', message: `${err}`, }) } }, [notify, tracingListUrl]) const getData = useCallback(async () => { setLoading(true) await getResult() await getTracingList() setLoading(false) }, [getResult, getTracingList]) const switchTab = async (tab: string) => { setCurrentTab(tab) if (tab === 'RESULT') runDetailUrl && await getResult() tracingListUrl && await getTracingList() } useEffect(() => { // fetch data if (runDetailUrl && tracingListUrl) getData() }, [runDetailUrl, tracingListUrl]) const [height, setHeight] = useState(0) const ref = useRef(null) const adjustResultHeight = () => { if (ref.current) setHeight(ref.current?.clientHeight - 16 - 16 - 2 - 1) } useEffect(() => { adjustResultHeight() }, [loading]) return (
{/* tab */}
{!hideResult && (
switchTab('RESULT')} >{t('runLog.result')}
)}
switchTab('DETAIL')} >{t('runLog.detail')}
switchTab('TRACING')} >{t('runLog.tracing')}
{/* panel detail */}
{loading && (
)} {!loading && currentTab === 'RESULT' && runDetail && ( )} {!loading && currentTab === 'DETAIL' && runDetail && ( )} {!loading && currentTab === 'TRACING' && ( )}
) } export default RunPanel