| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 | 
							- import { useCallback, useEffect, useMemo, useState } from 'react'
 - import { useTranslation } from 'react-i18next'
 - import produce from 'immer'
 - import { useBoolean } from 'ahooks'
 - import { useStore } from '../../store'
 - import type { ToolNodeType, ToolVarInputs } from './types'
 - import { useLanguage } from '@/app/components/header/account-setting/model-provider-page/hooks'
 - import useNodeCrud from '@/app/components/workflow/nodes/_base/hooks/use-node-crud'
 - import { CollectionType } from '@/app/components/tools/types'
 - import { updateBuiltInToolCredential } from '@/service/tools'
 - import {
 -   getConfiguredValue,
 -   toolParametersToFormSchemas,
 - } from '@/app/components/tools/utils/to-form-schema'
 - import Toast from '@/app/components/base/toast'
 - import type { InputVar } from '@/app/components/workflow/types'
 - import {
 -   useFetchToolsData,
 -   useNodesReadOnly,
 - } from '@/app/components/workflow/hooks'
 - import { canFindTool } from '@/utils'
 - 
 - const useConfig = (id: string, payload: ToolNodeType) => {
 -   const { nodesReadOnly: readOnly } = useNodesReadOnly()
 -   const { handleFetchAllTools } = useFetchToolsData()
 -   const { t } = useTranslation()
 - 
 -   const language = useLanguage()
 -   const { inputs, setInputs: doSetInputs } = useNodeCrud<ToolNodeType>(id, payload)
 -   /*
 -   * tool_configurations: tool setting, not dynamic setting (form type = form)
 -   * tool_parameters: tool dynamic setting(form type = llm)
 -   * output_schema: tool dynamic output
 -   */
 -   const { provider_id, provider_type, tool_name, tool_configurations, output_schema, tool_parameters } = inputs
 -   const isBuiltIn = provider_type === CollectionType.builtIn
 -   const buildInTools = useStore(s => s.buildInTools)
 -   const customTools = useStore(s => s.customTools)
 -   const workflowTools = useStore(s => s.workflowTools)
 -   const mcpTools = useStore(s => s.mcpTools)
 - 
 -   const currentTools = useMemo(() => {
 -     switch (provider_type) {
 -       case CollectionType.builtIn:
 -         return buildInTools
 -       case CollectionType.custom:
 -         return customTools
 -       case CollectionType.workflow:
 -         return workflowTools
 -       case CollectionType.mcp:
 -         return mcpTools
 -       default:
 -         return []
 -     }
 -   }, [buildInTools, customTools, mcpTools, provider_type, workflowTools])
 -   const currCollection = currentTools.find(item => canFindTool(item.id, 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'),
 -     })
 -     handleFetchAllTools(provider_type)
 -     hideSetAuthModal()
 -   }, [currCollection?.name, hideSetAuthModal, t, handleFetchAllTools, provider_type])
 - 
 -   const currTool = currCollection?.tools.find(tool => tool.name === tool_name)
 -   const formSchemas = useMemo(() => {
 -     return currTool ? toolParametersToFormSchemas(currTool.parameters) : []
 -   }, [currTool])
 -   const toolInputVarSchema = formSchemas.filter((item: any) => item.form === 'llm')
 -   // use setting
 -   const toolSettingSchema = formSchemas.filter((item: any) => item.form !== 'llm')
 -   const hasShouldTransferTypeSettingInput = toolSettingSchema.some(item => item.type === 'boolean' || item.type === 'number-input')
 - 
 -   const setInputs = useCallback((value: ToolNodeType) => {
 -     if (!hasShouldTransferTypeSettingInput) {
 -       doSetInputs(value)
 -       return
 -     }
 -     const newInputs = produce(value, (draft) => {
 -       const newConfig = { ...draft.tool_configurations }
 -       Object.keys(draft.tool_configurations).forEach((key) => {
 -         const schema = formSchemas.find(item => item.variable === key)
 -         const value = newConfig[key]
 -         if (schema?.type === 'boolean') {
 -           if (typeof value === 'string')
 -             newConfig[key] = value === 'true' || value === '1'
 - 
 -           if (typeof value === 'number')
 -             newConfig[key] = value === 1
 -         }
 - 
 -         if (schema?.type === 'number-input') {
 -           if (typeof value === 'string' && value !== '')
 -             newConfig[key] = Number.parseFloat(value)
 -         }
 -       })
 -       draft.tool_configurations = newConfig
 -     })
 -     doSetInputs(newInputs)
 -   }, [doSetInputs, formSchemas, hasShouldTransferTypeSettingInput])
 -   const [notSetDefaultValue, setNotSetDefaultValue] = useState(false)
 -   const toolSettingValue = useMemo(() => {
 -     if (notSetDefaultValue)
 -       return tool_configurations
 -     return getConfiguredValue(tool_configurations, toolSettingSchema)
 -   }, [notSetDefaultValue, toolSettingSchema, tool_configurations])
 -   const setToolSettingValue = useCallback((value: Record<string, any>) => {
 -     setNotSetDefaultValue(true)
 -     setInputs({
 -       ...inputs,
 -       tool_configurations: value,
 -     })
 -   }, [inputs, setInputs])
 - 
 -   const formattingParameters = () => {
 -     const inputsWithDefaultValue = produce(inputs, (draft) => {
 -       if (!draft.tool_configurations || Object.keys(draft.tool_configurations).length === 0)
 -         draft.tool_configurations = getConfiguredValue(tool_configurations, toolSettingSchema)
 -       if (!draft.tool_parameters || Object.keys(draft.tool_parameters).length === 0)
 -         draft.tool_parameters = getConfiguredValue(tool_parameters, toolInputVarSchema)
 -     })
 -     return inputsWithDefaultValue
 -   }
 - 
 -   useEffect(() => {
 -     if (!currTool)
 -       return
 -     const inputsWithDefaultValue = formattingParameters()
 -     setInputs(inputsWithDefaultValue)
 -     // eslint-disable-next-line react-hooks/exhaustive-deps
 -   }, [currTool])
 - 
 -   // setting when call
 -   const setInputVar = useCallback((value: ToolVarInputs) => {
 -     setInputs({
 -       ...inputs,
 -       tool_parameters: value,
 -     })
 -   }, [inputs, setInputs])
 - 
 -   const isLoading = currTool && (isBuiltIn ? !currCollection : false)
 - 
 -   const getMoreDataForCheckValid = () => {
 -     return {
 -       toolInputsSchema: (() => {
 -         const formInputs: InputVar[] = []
 -         toolInputVarSchema.forEach((item: any) => {
 -           formInputs.push({
 -             label: item.label[language] || item.label.en_US,
 -             variable: item.variable,
 -             type: item.type,
 -             required: item.required,
 -           })
 -         })
 -         return formInputs
 -       })(),
 -       notAuthed: isShowAuthBtn,
 -       toolSettingSchema,
 -       language,
 -     }
 -   }
 - 
 -   const outputSchema = useMemo(() => {
 -     const res: any[] = []
 -     if (!output_schema)
 -       return []
 -     Object.keys(output_schema.properties).forEach((outputKey) => {
 -       const output = output_schema.properties[outputKey]
 -       const type = output.type
 -       if (type === 'object') {
 -         res.push({
 -           name: outputKey,
 -           value: output,
 -         })
 -       }
 -       else {
 -         res.push({
 -           name: outputKey,
 -           type: output.type === 'array'
 -             ? `Array[${output.items?.type.slice(0, 1).toLocaleUpperCase()}${output.items?.type.slice(1)}]`
 -             : `${output.type.slice(0, 1).toLocaleUpperCase()}${output.type.slice(1)}`,
 -           description: output.description,
 -         })
 -       }
 -     })
 -     return res
 -   }, [output_schema])
 - 
 -   const hasObjectOutput = useMemo(() => {
 -     if (!output_schema)
 -       return false
 -     const properties = output_schema.properties
 -     return Object.keys(properties).some(key => properties[key].type === 'object')
 -   }, [output_schema])
 - 
 -   return {
 -     readOnly,
 -     inputs,
 -     currTool,
 -     toolSettingSchema,
 -     toolSettingValue,
 -     setToolSettingValue,
 -     toolInputVarSchema,
 -     setInputVar,
 -     currCollection,
 -     isShowAuthBtn,
 -     showSetAuth,
 -     showSetAuthModal,
 -     hideSetAuthModal,
 -     handleSaveAuth,
 -     isLoading,
 -     outputSchema,
 -     hasObjectOutput,
 -     getMoreDataForCheckValid,
 -   }
 - }
 - 
 - export default useConfig
 
 
  |