mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
45deaee762
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>
371 lines
10 KiB
TypeScript
371 lines
10 KiB
TypeScript
'use client'
|
|
|
|
import type { FC } from 'react'
|
|
import {
|
|
memo,
|
|
useCallback,
|
|
useEffect,
|
|
useMemo,
|
|
useRef,
|
|
} from 'react'
|
|
import { setAutoFreeze } from 'immer'
|
|
import {
|
|
useEventListener,
|
|
useKeyPress,
|
|
} from 'ahooks'
|
|
import ReactFlow, {
|
|
Background,
|
|
ReactFlowProvider,
|
|
SelectionMode,
|
|
useEdgesState,
|
|
useNodesState,
|
|
useOnViewportChange,
|
|
} from 'reactflow'
|
|
import type {
|
|
Viewport,
|
|
} from 'reactflow'
|
|
import 'reactflow/dist/style.css'
|
|
import './style.css'
|
|
import type {
|
|
Edge,
|
|
Node,
|
|
} from './types'
|
|
import { WorkflowContextProvider } from './context'
|
|
import {
|
|
useEdgesInteractions,
|
|
useNodesInteractions,
|
|
useNodesReadOnly,
|
|
useNodesSyncDraft,
|
|
usePanelInteractions,
|
|
useSelectionInteractions,
|
|
useWorkflow,
|
|
useWorkflowInit,
|
|
useWorkflowReadOnly,
|
|
useWorkflowStartRun,
|
|
useWorkflowUpdate,
|
|
} from './hooks'
|
|
import Header from './header'
|
|
import CustomNode from './nodes'
|
|
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'
|
|
import CandidateNode from './candidate-node'
|
|
import PanelContextmenu from './panel-contextmenu'
|
|
import NodeContextmenu from './node-contextmenu'
|
|
import {
|
|
useStore,
|
|
useWorkflowStore,
|
|
} from './store'
|
|
import {
|
|
getKeyboardKeyCodeBySystem,
|
|
initialEdges,
|
|
initialNodes,
|
|
} from './utils'
|
|
import {
|
|
ITERATION_CHILDREN_Z_INDEX,
|
|
WORKFLOW_DATA_UPDATE,
|
|
} from './constants'
|
|
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'
|
|
import { useEventEmitterContextContext } from '@/context/event-emitter'
|
|
import Confirm from '@/app/components/base/confirm/common'
|
|
|
|
const nodeTypes = {
|
|
custom: CustomNode,
|
|
}
|
|
const edgeTypes = {
|
|
custom: CustomEdge,
|
|
}
|
|
|
|
type WorkflowProps = {
|
|
nodes: Node[]
|
|
edges: Edge[]
|
|
viewport?: Viewport
|
|
}
|
|
const Workflow: FC<WorkflowProps> = memo(({
|
|
nodes: originalNodes,
|
|
edges: originalEdges,
|
|
viewport,
|
|
}) => {
|
|
const workflowContainerRef = useRef<HTMLDivElement>(null)
|
|
const workflowStore = useWorkflowStore()
|
|
const [nodes, setNodes] = useNodesState(originalNodes)
|
|
const [edges, setEdges] = useEdgesState(originalEdges)
|
|
const showFeaturesPanel = useStore(state => state.showFeaturesPanel)
|
|
const controlMode = useStore(s => s.controlMode)
|
|
const nodeAnimation = useStore(s => s.nodeAnimation)
|
|
const showConfirm = useStore(s => s.showConfirm)
|
|
const { setShowConfirm } = workflowStore.getState()
|
|
const {
|
|
handleSyncWorkflowDraft,
|
|
syncWorkflowDraftWhenPageClose,
|
|
} = useNodesSyncDraft()
|
|
const { workflowReadOnly } = useWorkflowReadOnly()
|
|
const { nodesReadOnly } = useNodesReadOnly()
|
|
|
|
const { eventEmitter } = useEventEmitterContextContext()
|
|
|
|
eventEmitter?.useSubscription((v: any) => {
|
|
if (v.type === WORKFLOW_DATA_UPDATE) {
|
|
setNodes(v.payload.nodes)
|
|
setEdges(v.payload.edges)
|
|
}
|
|
})
|
|
|
|
useEffect(() => {
|
|
setAutoFreeze(false)
|
|
|
|
return () => {
|
|
setAutoFreeze(true)
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
handleSyncWorkflowDraft(true, true)
|
|
}
|
|
}, [])
|
|
|
|
const { handleRefreshWorkflowDraft } = useWorkflowUpdate()
|
|
const handleSyncWorkflowDraftWhenPageClose = useCallback(() => {
|
|
if (document.visibilityState === 'hidden')
|
|
syncWorkflowDraftWhenPageClose()
|
|
else if (document.visibilityState === 'visible')
|
|
handleRefreshWorkflowDraft()
|
|
}, [syncWorkflowDraftWhenPageClose, handleRefreshWorkflowDraft])
|
|
|
|
useEffect(() => {
|
|
document.addEventListener('visibilitychange', handleSyncWorkflowDraftWhenPageClose)
|
|
|
|
return () => {
|
|
document.removeEventListener('visibilitychange', handleSyncWorkflowDraftWhenPageClose)
|
|
}
|
|
}, [handleSyncWorkflowDraftWhenPageClose])
|
|
|
|
useEventListener('keydown', (e) => {
|
|
if ((e.key === 'd' || e.key === 'D') && (e.ctrlKey || e.metaKey))
|
|
e.preventDefault()
|
|
})
|
|
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,
|
|
},
|
|
})
|
|
}
|
|
})
|
|
|
|
const {
|
|
handleNodeDragStart,
|
|
handleNodeDrag,
|
|
handleNodeDragStop,
|
|
handleNodeEnter,
|
|
handleNodeLeave,
|
|
handleNodeClick,
|
|
handleNodeConnect,
|
|
handleNodeConnectStart,
|
|
handleNodeConnectEnd,
|
|
handleNodeContextMenu,
|
|
handleNodesCopy,
|
|
handleNodesPaste,
|
|
handleNodesDuplicate,
|
|
handleNodesDelete,
|
|
} = useNodesInteractions()
|
|
const {
|
|
handleEdgeEnter,
|
|
handleEdgeLeave,
|
|
handleEdgeDelete,
|
|
handleEdgesChange,
|
|
} = useEdgesInteractions()
|
|
const {
|
|
handleSelectionStart,
|
|
handleSelectionChange,
|
|
handleSelectionDrag,
|
|
} = useSelectionInteractions()
|
|
const {
|
|
handlePaneContextMenu,
|
|
} = usePanelInteractions()
|
|
const {
|
|
isValidConnection,
|
|
} = useWorkflow()
|
|
const { handleStartWorkflowRun } = useWorkflowStartRun()
|
|
|
|
useOnViewportChange({
|
|
onEnd: () => {
|
|
handleSyncWorkflowDraft()
|
|
},
|
|
})
|
|
|
|
useKeyPress('delete', handleNodesDelete)
|
|
useKeyPress('delete', handleEdgeDelete)
|
|
useKeyPress(`${getKeyboardKeyCodeBySystem('ctrl')}.c`, handleNodesCopy, { exactMatch: true, useCapture: true })
|
|
useKeyPress(`${getKeyboardKeyCodeBySystem('ctrl')}.v`, handleNodesPaste, { exactMatch: true, useCapture: true })
|
|
useKeyPress(`${getKeyboardKeyCodeBySystem('ctrl')}.d`, handleNodesDuplicate, { exactMatch: true, useCapture: true })
|
|
useKeyPress(`${getKeyboardKeyCodeBySystem('alt')}.r`, handleStartWorkflowRun, { exactMatch: true, useCapture: true })
|
|
|
|
return (
|
|
<div
|
|
id='workflow-container'
|
|
className={`
|
|
relative w-full min-w-[960px] h-full bg-[#F0F2F7]
|
|
${workflowReadOnly && 'workflow-panel-animation'}
|
|
${nodeAnimation && 'workflow-node-animation'}
|
|
`}
|
|
ref={workflowContainerRef}
|
|
>
|
|
<CandidateNode />
|
|
<Header />
|
|
<Panel />
|
|
<Operator />
|
|
{
|
|
showFeaturesPanel && <Features />
|
|
}
|
|
<PanelContextmenu />
|
|
<NodeContextmenu />
|
|
<HelpLine />
|
|
{
|
|
!!showConfirm && (
|
|
<Confirm
|
|
isShow
|
|
onCancel={() => setShowConfirm(undefined)}
|
|
onConfirm={showConfirm.onConfirm}
|
|
title={showConfirm.title}
|
|
desc={showConfirm.desc}
|
|
confirmWrapperClassName='!z-[11]'
|
|
/>
|
|
)
|
|
}
|
|
<ReactFlow
|
|
nodeTypes={nodeTypes}
|
|
edgeTypes={edgeTypes}
|
|
nodes={nodes}
|
|
edges={edges}
|
|
onNodeDragStart={handleNodeDragStart}
|
|
onNodeDrag={handleNodeDrag}
|
|
onNodeDragStop={handleNodeDragStop}
|
|
onNodeMouseEnter={handleNodeEnter}
|
|
onNodeMouseLeave={handleNodeLeave}
|
|
onNodeClick={handleNodeClick}
|
|
onNodeContextMenu={handleNodeContextMenu}
|
|
onConnect={handleNodeConnect}
|
|
onConnectStart={handleNodeConnectStart}
|
|
onConnectEnd={handleNodeConnectEnd}
|
|
onEdgeMouseEnter={handleEdgeEnter}
|
|
onEdgeMouseLeave={handleEdgeLeave}
|
|
onEdgesChange={handleEdgesChange}
|
|
onSelectionStart={handleSelectionStart}
|
|
onSelectionChange={handleSelectionChange}
|
|
onSelectionDrag={handleSelectionDrag}
|
|
onPaneContextMenu={handlePaneContextMenu}
|
|
connectionLineComponent={CustomConnectionLine}
|
|
connectionLineContainerStyle={{ zIndex: ITERATION_CHILDREN_Z_INDEX }}
|
|
defaultViewport={viewport}
|
|
multiSelectionKeyCode={null}
|
|
deleteKeyCode={null}
|
|
nodesDraggable={!nodesReadOnly}
|
|
nodesConnectable={!nodesReadOnly}
|
|
nodesFocusable={!nodesReadOnly}
|
|
edgesFocusable={!nodesReadOnly}
|
|
panOnDrag={controlMode === 'hand' && !workflowReadOnly}
|
|
zoomOnPinch={!workflowReadOnly}
|
|
zoomOnScroll={!workflowReadOnly}
|
|
zoomOnDoubleClick={!workflowReadOnly}
|
|
isValidConnection={isValidConnection}
|
|
selectionKeyCode={null}
|
|
selectionMode={SelectionMode.Partial}
|
|
selectionOnDrag={controlMode === 'pointer' && !workflowReadOnly}
|
|
minZoom={0.25}
|
|
>
|
|
<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: {
|
|
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'],
|
|
},
|
|
},
|
|
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>
|
|
<FeaturesProvider features={initialFeatures}>
|
|
<Workflow
|
|
nodes={nodesData}
|
|
edges={edgesData}
|
|
viewport={data?.graph.viewport}
|
|
/>
|
|
</FeaturesProvider>
|
|
</ReactFlowProvider>
|
|
)
|
|
})
|
|
WorkflowWrap.displayName = 'WorkflowWrap'
|
|
|
|
const WorkflowContainer = () => {
|
|
return (
|
|
<WorkflowContextProvider>
|
|
<WorkflowWrap />
|
|
</WorkflowContextProvider>
|
|
)
|
|
}
|
|
|
|
export default memo(WorkflowContainer)
|