mirror of
https://github.com/langgenius/dify.git
synced 2025-11-17 03:44:13 +00:00
Signed-off-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: Stream <Stream_2@qq.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do> Co-authored-by: Harry <xh001x@hotmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: yessenia <yessenia.contact@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: WTW0313 <twwu@dify.ai> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { useCallback } from 'react'
|
|
import { produce } from 'immer'
|
|
import { useStoreApi } from 'reactflow'
|
|
import { useStore as useAppStore } from '@/app/components/app/store'
|
|
import { BlockEnum } from '@/app/components/workflow/types'
|
|
import { fetchWebhookUrl } from '@/service/apps'
|
|
|
|
export const useAutoGenerateWebhookUrl = () => {
|
|
const reactFlowStore = useStoreApi()
|
|
|
|
return useCallback(async (nodeId: string) => {
|
|
const appId = useAppStore.getState().appDetail?.id
|
|
if (!appId)
|
|
return
|
|
|
|
const { getNodes } = reactFlowStore.getState()
|
|
const node = getNodes().find(n => n.id === nodeId)
|
|
if (!node || node.data.type !== BlockEnum.TriggerWebhook)
|
|
return
|
|
|
|
if (node.data.webhook_url && node.data.webhook_url.length > 0)
|
|
return
|
|
|
|
try {
|
|
const response = await fetchWebhookUrl({ appId, nodeId })
|
|
const { getNodes: getLatestNodes, setNodes } = reactFlowStore.getState()
|
|
let hasUpdated = false
|
|
const updatedNodes = produce(getLatestNodes(), (draft) => {
|
|
const targetNode = draft.find(n => n.id === nodeId)
|
|
if (!targetNode || targetNode.data.type !== BlockEnum.TriggerWebhook)
|
|
return
|
|
|
|
targetNode.data = {
|
|
...targetNode.data,
|
|
webhook_url: response.webhook_url,
|
|
webhook_debug_url: response.webhook_debug_url,
|
|
}
|
|
hasUpdated = true
|
|
})
|
|
|
|
if (hasUpdated)
|
|
setNodes(updatedNodes)
|
|
}
|
|
catch (error: unknown) {
|
|
console.error('Failed to auto-generate webhook URL:', error)
|
|
}
|
|
}, [reactFlowStore])
|
|
}
|