mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
121 lines
3.9 KiB
TypeScript
121 lines
3.9 KiB
TypeScript
import { useCallback, useEffect, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import produce from 'immer'
|
|
import { useBoolean } from 'ahooks'
|
|
import { useStore } from '../../store'
|
|
import type { ToolNodeType, ToolVarInput } from './types'
|
|
import useNodeCrud from '@/app/components/workflow/nodes/_base/hooks/use-node-crud'
|
|
import { CollectionType } from '@/app/components/tools/types'
|
|
import type { Collection, Tool } from '@/app/components/tools/types'
|
|
import { fetchBuiltInToolList, fetchCollectionList, fetchCustomToolList, updateBuiltInToolCredential } from '@/service/tools'
|
|
import { addDefaultValue, toolParametersToFormSchemas } from '@/app/components/tools/utils/to-form-schema'
|
|
import Toast from '@/app/components/base/toast'
|
|
|
|
const useConfig = (id: string, payload: ToolNodeType) => {
|
|
const { t } = useTranslation()
|
|
const toolsMap = useStore(s => s.toolsMap)
|
|
const setToolsMap = useStore(s => s.setToolsMap)
|
|
|
|
const { inputs, setInputs } = useNodeCrud<ToolNodeType>(id, payload)
|
|
const { provider_id, provider_name, provider_type, tool_name, tool_parameters } = inputs
|
|
const isBuiltIn = provider_type === CollectionType.builtIn
|
|
const [currCollection, setCurrCollection] = useState<Collection | null | undefined>(null)
|
|
const fetchCurrCollection = useCallback(async () => {
|
|
if (!provider_id)
|
|
return
|
|
const res = await fetchCollectionList()
|
|
const currCollection = res.find(item => item.id === provider_id)
|
|
setCurrCollection(currCollection)
|
|
}, [provider_id])
|
|
|
|
useEffect(() => {
|
|
if (!provider_id || !isBuiltIn)
|
|
return
|
|
|
|
fetchCurrCollection()
|
|
}, [provider_id])
|
|
|
|
// Auth
|
|
const needAuth = !!currCollection?.allow_delete
|
|
const isAuthed = !!currCollection?.is_team_authorization
|
|
const isShowAuthBtn = isBuiltIn && needAuth && !isAuthed
|
|
const [showSetAuth, {
|
|
setTrue: showSetAuthModal,
|
|
setFalse: hideSetAuthModal,
|
|
}] = useBoolean(false)
|
|
|
|
const handleSaveAuth = useCallback(async (value: any) => {
|
|
await updateBuiltInToolCredential(currCollection?.name as string, value)
|
|
|
|
Toast.notify({
|
|
type: 'success',
|
|
message: t('common.api.actionSuccess'),
|
|
})
|
|
await fetchCurrCollection()
|
|
hideSetAuthModal()
|
|
}, [currCollection])
|
|
|
|
const [currTool, setCurrTool] = useState<Tool | null>(null)
|
|
const formSchemas = currTool ? toolParametersToFormSchemas(currTool.parameters) : []
|
|
// use setting
|
|
const toolSettingSchema = formSchemas.filter((item: any) => item.form !== 'llm')
|
|
const toolSettingValue = (() => {
|
|
return addDefaultValue(tool_parameters, toolSettingSchema)
|
|
})()
|
|
const setToolSettingValue = useCallback((value: Record<string, any>) => {
|
|
setInputs({
|
|
...inputs,
|
|
tool_parameters: value,
|
|
})
|
|
}, [inputs, setInputs])
|
|
|
|
// setting when call
|
|
const toolInputVarSchema = formSchemas.filter((item: any) => item.form === 'llm')
|
|
const setInputVar = useCallback((value: ToolVarInput[]) => {
|
|
setInputs({
|
|
...inputs,
|
|
tool_inputs: value,
|
|
})
|
|
}, [inputs, setInputs])
|
|
|
|
const isLoading = currTool && (isBuiltIn ? !currCollection : false)
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
let list: Tool[] = []
|
|
if (toolsMap[provider_id]?.length) {
|
|
list = toolsMap[provider_id]
|
|
}
|
|
else {
|
|
list = isBuiltIn ? await fetchBuiltInToolList(provider_name || provider_id) : await fetchCustomToolList(provider_name)
|
|
|
|
setToolsMap(produce(toolsMap, (draft) => {
|
|
draft[provider_id] = list
|
|
}))
|
|
}
|
|
const currTool = list.find(tool => tool.name === tool_name)
|
|
if (currTool)
|
|
setCurrTool(currTool)
|
|
})()
|
|
}, [provider_name])
|
|
|
|
return {
|
|
inputs,
|
|
currTool,
|
|
toolSettingSchema,
|
|
toolSettingValue,
|
|
setToolSettingValue,
|
|
toolInputVarSchema,
|
|
setInputVar,
|
|
currCollection,
|
|
isShowAuthBtn,
|
|
showSetAuth,
|
|
showSetAuthModal,
|
|
hideSetAuthModal,
|
|
handleSaveAuth,
|
|
isLoading,
|
|
}
|
|
}
|
|
|
|
export default useConfig
|