mirror of
https://github.com/langgenius/dify.git
synced 2025-11-22 07:56:37 +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>
93 lines
3.9 KiB
TypeScript
93 lines
3.9 KiB
TypeScript
import type { FC } from 'react'
|
|
import React, { useEffect } from 'react'
|
|
import type { NodeProps } from '@/app/components/workflow/types'
|
|
import { FormTypeEnum } from '@/app/components/header/account-setting/model-provider-page/declarations'
|
|
import { InstallPluginButton } from '@/app/components/workflow/nodes/_base/components/install-plugin-button'
|
|
import { useNodePluginInstallation } from '@/app/components/workflow/hooks/use-node-plugin-installation'
|
|
import { useNodeDataUpdate } from '@/app/components/workflow/hooks/use-node-data-update'
|
|
import type { ToolNodeType } from './types'
|
|
|
|
const Node: FC<NodeProps<ToolNodeType>> = ({
|
|
id,
|
|
data,
|
|
}) => {
|
|
const { tool_configurations, paramSchemas } = data
|
|
const toolConfigs = Object.keys(tool_configurations || {})
|
|
const {
|
|
isChecking,
|
|
isMissing,
|
|
uniqueIdentifier,
|
|
canInstall,
|
|
onInstallSuccess,
|
|
shouldDim,
|
|
} = useNodePluginInstallation(data)
|
|
const showInstallButton = !isChecking && isMissing && canInstall && uniqueIdentifier
|
|
const { handleNodeDataUpdate } = useNodeDataUpdate()
|
|
const shouldLock = !isChecking && isMissing && canInstall && Boolean(uniqueIdentifier)
|
|
|
|
useEffect(() => {
|
|
if (data._pluginInstallLocked === shouldLock && data._dimmed === shouldDim)
|
|
return
|
|
handleNodeDataUpdate({
|
|
id,
|
|
data: {
|
|
_pluginInstallLocked: shouldLock,
|
|
_dimmed: shouldDim,
|
|
},
|
|
})
|
|
}, [data._pluginInstallLocked, data._dimmed, handleNodeDataUpdate, id, shouldDim, shouldLock])
|
|
|
|
const hasConfigs = toolConfigs.length > 0
|
|
|
|
if (!showInstallButton && !hasConfigs)
|
|
return null
|
|
|
|
return (
|
|
<div className='relative mb-1 px-3 py-1'>
|
|
{showInstallButton && (
|
|
<div className='pointer-events-auto absolute right-3 top-[-32px] z-40'>
|
|
<InstallPluginButton
|
|
size='small'
|
|
className='!font-medium !text-text-accent'
|
|
extraIdentifiers={[
|
|
data.plugin_id,
|
|
data.provider_id,
|
|
data.provider_name,
|
|
].filter(Boolean) as string[]}
|
|
uniqueIdentifier={uniqueIdentifier!}
|
|
onSuccess={onInstallSuccess}
|
|
/>
|
|
</div>
|
|
)}
|
|
{hasConfigs && (
|
|
<div className='space-y-0.5' aria-disabled={shouldDim}>
|
|
{toolConfigs.map((key, index) => (
|
|
<div key={index} className='flex h-6 items-center justify-between space-x-1 rounded-md bg-workflow-block-parma-bg px-1 text-xs font-normal text-text-secondary'>
|
|
<div title={key} className='max-w-[100px] shrink-0 truncate text-xs font-medium uppercase text-text-tertiary'>
|
|
{key}
|
|
</div>
|
|
{typeof tool_configurations[key].value === 'string' && (
|
|
<div title={tool_configurations[key].value} className='w-0 shrink-0 grow truncate text-right text-xs font-normal text-text-secondary'>
|
|
{paramSchemas?.find(i => i.name === key)?.type === FormTypeEnum.secretInput ? '********' : tool_configurations[key].value}
|
|
</div>
|
|
)}
|
|
{typeof tool_configurations[key].value === 'number' && (
|
|
<div title={Number.isNaN(tool_configurations[key].value) ? '' : tool_configurations[key].value} className='w-0 shrink-0 grow truncate text-right text-xs font-normal text-text-secondary'>
|
|
{Number.isNaN(tool_configurations[key].value) ? '' : tool_configurations[key].value}
|
|
</div>
|
|
)}
|
|
{typeof tool_configurations[key] !== 'string' && tool_configurations[key]?.type === FormTypeEnum.modelSelector && (
|
|
<div title={tool_configurations[key].model} className='w-0 shrink-0 grow truncate text-right text-xs font-normal text-text-secondary'>
|
|
{tool_configurations[key].model}
|
|
</div>
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Node)
|