mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
26 lines
716 B
TypeScript
26 lines
716 B
TypeScript
import type { PluginTriggerNodeType } from './types'
|
|
import { useCallback } from 'react'
|
|
import { getTriggerCheckParams } from '@/app/components/workflow/utils/trigger'
|
|
import { useGetLanguage } from '@/context/i18n'
|
|
import { useAllTriggerPlugins } from '@/service/use-triggers'
|
|
|
|
type Params = {
|
|
id: string
|
|
payload: PluginTriggerNodeType
|
|
}
|
|
|
|
const useGetDataForCheckMore = ({ payload }: Params) => {
|
|
const { data: triggerPlugins } = useAllTriggerPlugins()
|
|
const language = useGetLanguage()
|
|
|
|
const getData = useCallback(() => {
|
|
return getTriggerCheckParams(payload, triggerPlugins, language)
|
|
}, [payload, triggerPlugins, language])
|
|
|
|
return {
|
|
getData,
|
|
}
|
|
}
|
|
|
|
export default useGetDataForCheckMore
|