mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
25 lines
632 B
TypeScript
25 lines
632 B
TypeScript
import { produce } from 'immer'
|
|
import { useCallback } from 'react'
|
|
import { useStoreApi } from 'reactflow'
|
|
|
|
export const useEdgesInteractionsWithoutSync = () => {
|
|
const store = useStoreApi()
|
|
|
|
const handleEdgeCancelRunningStatus = useCallback(() => {
|
|
const { edges, setEdges } = store.getState()
|
|
|
|
const newEdges = produce(edges, (draft) => {
|
|
draft.forEach((edge) => {
|
|
edge.data._sourceRunningStatus = undefined
|
|
edge.data._targetRunningStatus = undefined
|
|
edge.data._waitingRun = false
|
|
})
|
|
})
|
|
setEdges(newEdges)
|
|
}, [store])
|
|
|
|
return {
|
|
handleEdgeCancelRunningStatus,
|
|
}
|
|
}
|