2024-04-08 18:51:46 +08:00
|
|
|
'use client'
|
|
|
|
|
|
|
|
import type { FC } from 'react'
|
|
|
|
import {
|
|
|
|
memo,
|
|
|
|
useCallback,
|
|
|
|
useEffect,
|
|
|
|
useMemo,
|
2024-05-09 17:18:51 +08:00
|
|
|
useRef,
|
2024-07-22 15:29:39 +08:00
|
|
|
useState,
|
2024-04-08 18:51:46 +08:00
|
|
|
} from 'react'
|
|
|
|
import { setAutoFreeze } from 'immer'
|
|
|
|
import {
|
2024-05-09 17:18:51 +08:00
|
|
|
useEventListener,
|
2024-04-08 18:51:46 +08:00
|
|
|
} from 'ahooks'
|
|
|
|
import ReactFlow, {
|
|
|
|
Background,
|
|
|
|
ReactFlowProvider,
|
2024-05-09 17:18:51 +08:00
|
|
|
SelectionMode,
|
2024-04-23 17:02:23 +08:00
|
|
|
useEdgesState,
|
|
|
|
useNodesState,
|
2024-04-08 18:51:46 +08:00
|
|
|
useOnViewportChange,
|
2024-06-25 15:46:12 +08:00
|
|
|
useReactFlow,
|
2024-07-10 18:20:13 +08:00
|
|
|
useStoreApi,
|
2024-04-08 18:51:46 +08:00
|
|
|
} from 'reactflow'
|
2024-05-09 17:18:51 +08:00
|
|
|
import type {
|
|
|
|
Viewport,
|
|
|
|
} from 'reactflow'
|
2024-04-08 18:51:46 +08:00
|
|
|
import 'reactflow/dist/style.css'
|
|
|
|
import './style.css'
|
|
|
|
import type {
|
|
|
|
Edge,
|
2024-07-22 15:29:39 +08:00
|
|
|
EnvironmentVariable,
|
2024-04-08 18:51:46 +08:00
|
|
|
Node,
|
|
|
|
} from './types'
|
2024-08-19 18:11:11 +08:00
|
|
|
import {
|
|
|
|
ControlMode,
|
2024-10-21 10:32:37 +08:00
|
|
|
SupportUploadFileTypes,
|
2024-08-19 18:11:11 +08:00
|
|
|
} from './types'
|
2024-04-08 18:51:46 +08:00
|
|
|
import { WorkflowContextProvider } from './context'
|
|
|
|
import {
|
2024-06-25 15:46:12 +08:00
|
|
|
useDSL,
|
2024-04-08 18:51:46 +08:00
|
|
|
useEdgesInteractions,
|
|
|
|
useNodesInteractions,
|
|
|
|
useNodesReadOnly,
|
|
|
|
useNodesSyncDraft,
|
2024-05-09 17:18:51 +08:00
|
|
|
usePanelInteractions,
|
|
|
|
useSelectionInteractions,
|
2024-08-19 18:11:11 +08:00
|
|
|
useShortcuts,
|
2024-04-08 18:51:46 +08:00
|
|
|
useWorkflow,
|
|
|
|
useWorkflowInit,
|
|
|
|
useWorkflowReadOnly,
|
2024-05-10 14:48:20 +08:00
|
|
|
useWorkflowUpdate,
|
2024-04-08 18:51:46 +08:00
|
|
|
} from './hooks'
|
|
|
|
import Header from './header'
|
|
|
|
import CustomNode from './nodes'
|
2024-06-14 17:08:11 +08:00
|
|
|
import CustomNoteNode from './note-node'
|
|
|
|
import { CUSTOM_NOTE_NODE } from './note-node/constants'
|
2024-09-10 15:23:16 +08:00
|
|
|
import CustomIterationStartNode from './nodes/iteration-start'
|
|
|
|
import { CUSTOM_ITERATION_START_NODE } from './nodes/iteration-start/constants'
|
2024-04-08 18:51:46 +08:00
|
|
|
import Operator from './operator'
|
|
|
|
import CustomEdge from './custom-edge'
|
|
|
|
import CustomConnectionLine from './custom-connection-line'
|
|
|
|
import Panel from './panel'
|
|
|
|
import Features from './features'
|
|
|
|
import HelpLine from './help-line'
|
2024-05-09 17:18:51 +08:00
|
|
|
import CandidateNode from './candidate-node'
|
|
|
|
import PanelContextmenu from './panel-contextmenu'
|
|
|
|
import NodeContextmenu from './node-contextmenu'
|
2024-06-12 16:35:19 +08:00
|
|
|
import SyncingDataModal from './syncing-data-modal'
|
2024-06-25 15:46:12 +08:00
|
|
|
import UpdateDSLModal from './update-dsl-modal'
|
2024-07-22 15:29:39 +08:00
|
|
|
import DSLExportConfirmModal from './dsl-export-confirm-modal'
|
2024-09-10 15:23:16 +08:00
|
|
|
import LimitTips from './limit-tips'
|
2024-05-09 17:18:51 +08:00
|
|
|
import {
|
|
|
|
useStore,
|
|
|
|
useWorkflowStore,
|
|
|
|
} from './store'
|
2024-04-08 18:51:46 +08:00
|
|
|
import {
|
|
|
|
initialEdges,
|
|
|
|
initialNodes,
|
|
|
|
} from './utils'
|
2024-05-27 21:57:08 +08:00
|
|
|
import {
|
2024-06-14 17:08:11 +08:00
|
|
|
CUSTOM_NODE,
|
2024-07-22 15:29:39 +08:00
|
|
|
DSL_EXPORT_CHECK,
|
2024-05-27 21:57:08 +08:00
|
|
|
ITERATION_CHILDREN_Z_INDEX,
|
|
|
|
WORKFLOW_DATA_UPDATE,
|
|
|
|
} from './constants'
|
2024-08-19 18:11:11 +08:00
|
|
|
import { WorkflowHistoryProvider } from './workflow-history-store'
|
2024-04-08 18:51:46 +08:00
|
|
|
import Loading from '@/app/components/base/loading'
|
|
|
|
import { FeaturesProvider } from '@/app/components/base/features'
|
|
|
|
import type { Features as FeaturesData } from '@/app/components/base/features/types'
|
2024-06-25 15:46:12 +08:00
|
|
|
import { useFeaturesStore } from '@/app/components/base/features/hooks'
|
2024-04-23 17:02:23 +08:00
|
|
|
import { useEventEmitterContextContext } from '@/context/event-emitter'
|
2024-08-06 14:31:13 +08:00
|
|
|
import Confirm from '@/app/components/base/confirm'
|
2024-10-21 10:32:37 +08:00
|
|
|
import { FILE_EXTS } from '@/app/components/base/prompt-editor/constants'
|
2024-04-08 18:51:46 +08:00
|
|
|
|
|
|
|
const nodeTypes = {
|
2024-06-14 17:08:11 +08:00
|
|
|
[CUSTOM_NODE]: CustomNode,
|
|
|
|
[CUSTOM_NOTE_NODE]: CustomNoteNode,
|
2024-09-10 15:23:16 +08:00
|
|
|
[CUSTOM_ITERATION_START_NODE]: CustomIterationStartNode,
|
2024-04-08 18:51:46 +08:00
|
|
|
}
|
|
|
|
const edgeTypes = {
|
2024-06-14 17:08:11 +08:00
|
|
|
[CUSTOM_NODE]: CustomEdge,
|
2024-04-08 18:51:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type WorkflowProps = {
|
|
|
|
nodes: Node[]
|
|
|
|
edges: Edge[]
|
|
|
|
viewport?: Viewport
|
|
|
|
}
|
|
|
|
const Workflow: FC<WorkflowProps> = memo(({
|
2024-04-23 17:02:23 +08:00
|
|
|
nodes: originalNodes,
|
|
|
|
edges: originalEdges,
|
2024-04-08 18:51:46 +08:00
|
|
|
viewport,
|
|
|
|
}) => {
|
2024-05-09 17:18:51 +08:00
|
|
|
const workflowContainerRef = useRef<HTMLDivElement>(null)
|
|
|
|
const workflowStore = useWorkflowStore()
|
2024-06-25 15:46:12 +08:00
|
|
|
const reactflow = useReactFlow()
|
|
|
|
const featuresStore = useFeaturesStore()
|
2024-04-23 17:02:23 +08:00
|
|
|
const [nodes, setNodes] = useNodesState(originalNodes)
|
|
|
|
const [edges, setEdges] = useEdgesState(originalEdges)
|
2024-04-08 18:51:46 +08:00
|
|
|
const showFeaturesPanel = useStore(state => state.showFeaturesPanel)
|
2024-05-09 17:18:51 +08:00
|
|
|
const controlMode = useStore(s => s.controlMode)
|
2024-04-08 18:51:46 +08:00
|
|
|
const nodeAnimation = useStore(s => s.nodeAnimation)
|
2024-05-27 21:57:08 +08:00
|
|
|
const showConfirm = useStore(s => s.showConfirm)
|
2024-06-25 15:46:12 +08:00
|
|
|
const showImportDSLModal = useStore(s => s.showImportDSLModal)
|
2024-07-22 15:29:39 +08:00
|
|
|
|
2024-06-12 16:35:19 +08:00
|
|
|
const {
|
|
|
|
setShowConfirm,
|
|
|
|
setControlPromptEditorRerenderKey,
|
2024-06-25 15:46:12 +08:00
|
|
|
setShowImportDSLModal,
|
|
|
|
setSyncWorkflowDraftHash,
|
2024-06-12 16:35:19 +08:00
|
|
|
} = workflowStore.getState()
|
2024-04-08 18:51:46 +08:00
|
|
|
const {
|
|
|
|
handleSyncWorkflowDraft,
|
|
|
|
syncWorkflowDraftWhenPageClose,
|
|
|
|
} = useNodesSyncDraft()
|
|
|
|
const { workflowReadOnly } = useWorkflowReadOnly()
|
|
|
|
const { nodesReadOnly } = useNodesReadOnly()
|
|
|
|
|
2024-07-22 15:29:39 +08:00
|
|
|
const [secretEnvList, setSecretEnvList] = useState<EnvironmentVariable[]>([])
|
|
|
|
|
2024-04-23 17:02:23 +08:00
|
|
|
const { eventEmitter } = useEventEmitterContextContext()
|
|
|
|
|
|
|
|
eventEmitter?.useSubscription((v: any) => {
|
|
|
|
if (v.type === WORKFLOW_DATA_UPDATE) {
|
|
|
|
setNodes(v.payload.nodes)
|
|
|
|
setEdges(v.payload.edges)
|
2024-06-25 15:46:12 +08:00
|
|
|
|
|
|
|
if (v.payload.viewport)
|
|
|
|
reactflow.setViewport(v.payload.viewport)
|
|
|
|
|
|
|
|
if (v.payload.features && featuresStore) {
|
|
|
|
const { setFeatures } = featuresStore.getState()
|
|
|
|
|
|
|
|
setFeatures(v.payload.features)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v.payload.hash)
|
|
|
|
setSyncWorkflowDraftHash(v.payload.hash)
|
|
|
|
|
2024-06-12 16:35:19 +08:00
|
|
|
setTimeout(() => setControlPromptEditorRerenderKey(Date.now()))
|
2024-04-23 17:02:23 +08:00
|
|
|
}
|
2024-07-22 15:29:39 +08:00
|
|
|
if (v.type === DSL_EXPORT_CHECK)
|
|
|
|
setSecretEnvList(v.payload.data as EnvironmentVariable[])
|
2024-04-23 17:02:23 +08:00
|
|
|
})
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
useEffect(() => {
|
|
|
|
setAutoFreeze(false)
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
setAutoFreeze(true)
|
|
|
|
}
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
return () => {
|
2024-05-10 14:48:20 +08:00
|
|
|
handleSyncWorkflowDraft(true, true)
|
2024-04-08 18:51:46 +08:00
|
|
|
}
|
2024-10-21 10:32:37 +08:00
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
2024-04-08 18:51:46 +08:00
|
|
|
}, [])
|
|
|
|
|
2024-05-10 14:48:20 +08:00
|
|
|
const { handleRefreshWorkflowDraft } = useWorkflowUpdate()
|
2024-04-08 18:51:46 +08:00
|
|
|
const handleSyncWorkflowDraftWhenPageClose = useCallback(() => {
|
|
|
|
if (document.visibilityState === 'hidden')
|
|
|
|
syncWorkflowDraftWhenPageClose()
|
2024-05-10 14:48:20 +08:00
|
|
|
else if (document.visibilityState === 'visible')
|
2024-06-12 16:35:19 +08:00
|
|
|
setTimeout(() => handleRefreshWorkflowDraft(), 500)
|
2024-05-10 14:48:20 +08:00
|
|
|
}, [syncWorkflowDraftWhenPageClose, handleRefreshWorkflowDraft])
|
2024-04-08 18:51:46 +08:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
document.addEventListener('visibilitychange', handleSyncWorkflowDraftWhenPageClose)
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
document.removeEventListener('visibilitychange', handleSyncWorkflowDraftWhenPageClose)
|
|
|
|
}
|
|
|
|
}, [handleSyncWorkflowDraftWhenPageClose])
|
|
|
|
|
2024-05-09 17:18:51 +08:00
|
|
|
useEventListener('keydown', (e) => {
|
|
|
|
if ((e.key === 'd' || e.key === 'D') && (e.ctrlKey || e.metaKey))
|
|
|
|
e.preventDefault()
|
2024-06-26 14:37:12 +08:00
|
|
|
if ((e.key === 'z' || e.key === 'Z') && (e.ctrlKey || e.metaKey))
|
|
|
|
e.preventDefault()
|
2024-08-01 12:57:30 +08:00
|
|
|
if ((e.key === 'y' || e.key === 'Y') && (e.ctrlKey || e.metaKey))
|
|
|
|
e.preventDefault()
|
|
|
|
if ((e.key === 's' || e.key === 'S') && (e.ctrlKey || e.metaKey))
|
|
|
|
e.preventDefault()
|
2024-05-09 17:18:51 +08:00
|
|
|
})
|
|
|
|
useEventListener('mousemove', (e) => {
|
|
|
|
const containerClientRect = workflowContainerRef.current?.getBoundingClientRect()
|
|
|
|
|
|
|
|
if (containerClientRect) {
|
|
|
|
workflowStore.setState({
|
|
|
|
mousePosition: {
|
|
|
|
pageX: e.clientX,
|
|
|
|
pageY: e.clientY,
|
|
|
|
elementX: e.clientX - containerClientRect.left,
|
|
|
|
elementY: e.clientY - containerClientRect.top,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
const {
|
|
|
|
handleNodeDragStart,
|
|
|
|
handleNodeDrag,
|
|
|
|
handleNodeDragStop,
|
|
|
|
handleNodeEnter,
|
|
|
|
handleNodeLeave,
|
|
|
|
handleNodeClick,
|
|
|
|
handleNodeConnect,
|
|
|
|
handleNodeConnectStart,
|
|
|
|
handleNodeConnectEnd,
|
2024-05-09 17:18:51 +08:00
|
|
|
handleNodeContextMenu,
|
2024-06-26 14:37:12 +08:00
|
|
|
handleHistoryBack,
|
|
|
|
handleHistoryForward,
|
2024-04-08 18:51:46 +08:00
|
|
|
} = useNodesInteractions()
|
|
|
|
const {
|
|
|
|
handleEdgeEnter,
|
|
|
|
handleEdgeLeave,
|
|
|
|
handleEdgesChange,
|
|
|
|
} = useEdgesInteractions()
|
2024-05-09 17:18:51 +08:00
|
|
|
const {
|
|
|
|
handleSelectionStart,
|
|
|
|
handleSelectionChange,
|
|
|
|
handleSelectionDrag,
|
|
|
|
} = useSelectionInteractions()
|
|
|
|
const {
|
|
|
|
handlePaneContextMenu,
|
2024-06-25 15:46:12 +08:00
|
|
|
handlePaneContextmenuCancel,
|
2024-05-09 17:18:51 +08:00
|
|
|
} = usePanelInteractions()
|
2024-04-13 09:48:39 +08:00
|
|
|
const {
|
|
|
|
isValidConnection,
|
|
|
|
} = useWorkflow()
|
2024-06-25 15:46:12 +08:00
|
|
|
const {
|
2024-07-24 15:02:30 +08:00
|
|
|
exportCheck,
|
2024-06-25 15:46:12 +08:00
|
|
|
handleExportDSL,
|
|
|
|
} = useDSL()
|
2024-04-08 18:51:46 +08:00
|
|
|
|
|
|
|
useOnViewportChange({
|
|
|
|
onEnd: () => {
|
|
|
|
handleSyncWorkflowDraft()
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2024-08-19 18:11:11 +08:00
|
|
|
useShortcuts()
|
2024-04-08 18:51:46 +08:00
|
|
|
|
2024-07-10 18:20:13 +08:00
|
|
|
const store = useStoreApi()
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
|
|
store.getState().onError = (code, message) => {
|
|
|
|
if (code === '002')
|
|
|
|
return
|
|
|
|
console.warn(message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-08 18:51:46 +08:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
id='workflow-container'
|
|
|
|
className={`
|
|
|
|
relative w-full min-w-[960px] h-full bg-[#F0F2F7]
|
|
|
|
${workflowReadOnly && 'workflow-panel-animation'}
|
|
|
|
${nodeAnimation && 'workflow-node-animation'}
|
|
|
|
`}
|
2024-05-09 17:18:51 +08:00
|
|
|
ref={workflowContainerRef}
|
2024-04-08 18:51:46 +08:00
|
|
|
>
|
2024-06-12 16:35:19 +08:00
|
|
|
<SyncingDataModal />
|
2024-05-09 17:18:51 +08:00
|
|
|
<CandidateNode />
|
2024-08-01 12:57:30 +08:00
|
|
|
<Header />
|
2024-04-08 18:51:46 +08:00
|
|
|
<Panel />
|
2024-06-26 14:37:12 +08:00
|
|
|
<Operator handleRedo={handleHistoryForward} handleUndo={handleHistoryBack} />
|
2024-04-08 18:51:46 +08:00
|
|
|
{
|
|
|
|
showFeaturesPanel && <Features />
|
|
|
|
}
|
2024-05-09 17:18:51 +08:00
|
|
|
<PanelContextmenu />
|
|
|
|
<NodeContextmenu />
|
2024-04-08 18:51:46 +08:00
|
|
|
<HelpLine />
|
2024-05-27 21:57:08 +08:00
|
|
|
{
|
|
|
|
!!showConfirm && (
|
|
|
|
<Confirm
|
|
|
|
isShow
|
|
|
|
onCancel={() => setShowConfirm(undefined)}
|
|
|
|
onConfirm={showConfirm.onConfirm}
|
|
|
|
title={showConfirm.title}
|
2024-08-06 14:31:13 +08:00
|
|
|
content={showConfirm.desc}
|
2024-05-27 21:57:08 +08:00
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2024-06-25 15:46:12 +08:00
|
|
|
{
|
|
|
|
showImportDSLModal && (
|
|
|
|
<UpdateDSLModal
|
|
|
|
onCancel={() => setShowImportDSLModal(false)}
|
2024-07-24 15:02:30 +08:00
|
|
|
onBackup={exportCheck}
|
2024-06-25 15:46:12 +08:00
|
|
|
onImport={handlePaneContextmenuCancel}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2024-07-22 15:29:39 +08:00
|
|
|
{
|
|
|
|
secretEnvList.length > 0 && (
|
|
|
|
<DSLExportConfirmModal
|
|
|
|
envList={secretEnvList}
|
|
|
|
onConfirm={handleExportDSL}
|
|
|
|
onClose={() => setSecretEnvList([])}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
2024-09-10 15:23:16 +08:00
|
|
|
<LimitTips />
|
2024-04-08 18:51:46 +08:00
|
|
|
<ReactFlow
|
|
|
|
nodeTypes={nodeTypes}
|
|
|
|
edgeTypes={edgeTypes}
|
|
|
|
nodes={nodes}
|
|
|
|
edges={edges}
|
|
|
|
onNodeDragStart={handleNodeDragStart}
|
|
|
|
onNodeDrag={handleNodeDrag}
|
|
|
|
onNodeDragStop={handleNodeDragStop}
|
|
|
|
onNodeMouseEnter={handleNodeEnter}
|
|
|
|
onNodeMouseLeave={handleNodeLeave}
|
|
|
|
onNodeClick={handleNodeClick}
|
2024-05-09 17:18:51 +08:00
|
|
|
onNodeContextMenu={handleNodeContextMenu}
|
2024-04-08 18:51:46 +08:00
|
|
|
onConnect={handleNodeConnect}
|
|
|
|
onConnectStart={handleNodeConnectStart}
|
|
|
|
onConnectEnd={handleNodeConnectEnd}
|
|
|
|
onEdgeMouseEnter={handleEdgeEnter}
|
|
|
|
onEdgeMouseLeave={handleEdgeLeave}
|
|
|
|
onEdgesChange={handleEdgesChange}
|
2024-05-09 17:18:51 +08:00
|
|
|
onSelectionStart={handleSelectionStart}
|
|
|
|
onSelectionChange={handleSelectionChange}
|
|
|
|
onSelectionDrag={handleSelectionDrag}
|
|
|
|
onPaneContextMenu={handlePaneContextMenu}
|
2024-04-08 18:51:46 +08:00
|
|
|
connectionLineComponent={CustomConnectionLine}
|
2024-05-27 21:57:08 +08:00
|
|
|
connectionLineContainerStyle={{ zIndex: ITERATION_CHILDREN_Z_INDEX }}
|
2024-04-08 18:51:46 +08:00
|
|
|
defaultViewport={viewport}
|
|
|
|
multiSelectionKeyCode={null}
|
|
|
|
deleteKeyCode={null}
|
|
|
|
nodesDraggable={!nodesReadOnly}
|
|
|
|
nodesConnectable={!nodesReadOnly}
|
|
|
|
nodesFocusable={!nodesReadOnly}
|
|
|
|
edgesFocusable={!nodesReadOnly}
|
2024-08-19 18:11:11 +08:00
|
|
|
panOnDrag={controlMode === ControlMode.Hand && !workflowReadOnly}
|
2024-04-08 18:51:46 +08:00
|
|
|
zoomOnPinch={!workflowReadOnly}
|
|
|
|
zoomOnScroll={!workflowReadOnly}
|
|
|
|
zoomOnDoubleClick={!workflowReadOnly}
|
|
|
|
isValidConnection={isValidConnection}
|
2024-05-09 17:18:51 +08:00
|
|
|
selectionKeyCode={null}
|
|
|
|
selectionMode={SelectionMode.Partial}
|
2024-08-19 18:11:11 +08:00
|
|
|
selectionOnDrag={controlMode === ControlMode.Pointer && !workflowReadOnly}
|
2024-05-09 17:18:51 +08:00
|
|
|
minZoom={0.25}
|
2024-04-08 18:51:46 +08:00
|
|
|
>
|
|
|
|
<Background
|
|
|
|
gap={[14, 14]}
|
|
|
|
size={2}
|
|
|
|
color='#E4E5E7'
|
|
|
|
/>
|
|
|
|
</ReactFlow>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
})
|
|
|
|
Workflow.displayName = 'Workflow'
|
|
|
|
|
|
|
|
const WorkflowWrap = memo(() => {
|
|
|
|
const {
|
|
|
|
data,
|
|
|
|
isLoading,
|
|
|
|
} = useWorkflowInit()
|
|
|
|
|
|
|
|
const nodesData = useMemo(() => {
|
|
|
|
if (data)
|
|
|
|
return initialNodes(data.graph.nodes, data.graph.edges)
|
|
|
|
|
|
|
|
return []
|
|
|
|
}, [data])
|
|
|
|
const edgesData = useMemo(() => {
|
|
|
|
if (data)
|
|
|
|
return initialEdges(data.graph.edges, data.graph.nodes)
|
|
|
|
|
|
|
|
return []
|
|
|
|
}, [data])
|
|
|
|
|
|
|
|
if (!data || isLoading) {
|
|
|
|
return (
|
|
|
|
<div className='flex justify-center items-center relative w-full h-full bg-[#F0F2F7]'>
|
|
|
|
<Loading />
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const features = data.features || {}
|
|
|
|
const initialFeatures: FeaturesData = {
|
|
|
|
file: {
|
|
|
|
image: {
|
2024-10-10 11:15:52 +08:00
|
|
|
enabled: !!features.file_upload?.image?.enabled,
|
|
|
|
number_limits: features.file_upload?.image?.number_limits || 3,
|
|
|
|
transfer_methods: features.file_upload?.image?.transfer_methods || ['local_file', 'remote_url'],
|
2024-04-08 18:51:46 +08:00
|
|
|
},
|
2024-10-21 10:32:37 +08:00
|
|
|
enabled: !!(features.file_upload?.enabled || features.file_upload?.image?.enabled),
|
|
|
|
allowed_file_types: features.file_upload?.allowed_file_types || [SupportUploadFileTypes.image],
|
|
|
|
allowed_file_extensions: features.file_upload?.allowed_file_extensions || FILE_EXTS[SupportUploadFileTypes.image].map(ext => `.${ext}`),
|
|
|
|
allowed_file_upload_methods: features.file_upload?.allowed_file_upload_methods || features.file_upload?.image?.transfer_methods || ['local_file', 'remote_url'],
|
|
|
|
number_limits: features.file_upload?.number_limits || features.file_upload?.image?.number_limits || 3,
|
2024-04-08 18:51:46 +08:00
|
|
|
},
|
|
|
|
opening: {
|
|
|
|
enabled: !!features.opening_statement,
|
|
|
|
opening_statement: features.opening_statement,
|
|
|
|
suggested_questions: features.suggested_questions,
|
|
|
|
},
|
|
|
|
suggested: features.suggested_questions_after_answer || { enabled: false },
|
|
|
|
speech2text: features.speech_to_text || { enabled: false },
|
|
|
|
text2speech: features.text_to_speech || { enabled: false },
|
|
|
|
citation: features.retriever_resource || { enabled: false },
|
|
|
|
moderation: features.sensitive_word_avoidance || { enabled: false },
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ReactFlowProvider>
|
2024-06-26 14:37:12 +08:00
|
|
|
<WorkflowHistoryProvider
|
|
|
|
nodes={nodesData}
|
|
|
|
edges={edgesData} >
|
|
|
|
<FeaturesProvider features={initialFeatures}>
|
|
|
|
<Workflow
|
|
|
|
nodes={nodesData}
|
|
|
|
edges={edgesData}
|
|
|
|
viewport={data?.graph.viewport}
|
|
|
|
/>
|
|
|
|
</FeaturesProvider>
|
|
|
|
</WorkflowHistoryProvider>
|
2024-04-08 18:51:46 +08:00
|
|
|
</ReactFlowProvider>
|
|
|
|
)
|
|
|
|
})
|
|
|
|
WorkflowWrap.displayName = 'WorkflowWrap'
|
|
|
|
|
|
|
|
const WorkflowContainer = () => {
|
|
|
|
return (
|
|
|
|
<WorkflowContextProvider>
|
|
|
|
<WorkflowWrap />
|
|
|
|
</WorkflowContextProvider>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default memo(WorkflowContainer)
|