|
|
|
|
@ -2,6 +2,9 @@
|
|
|
|
|
import type { FC } from 'react'
|
|
|
|
|
import React, { useMemo, useState } from 'react'
|
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
|
import {
|
|
|
|
|
RiArrowRightUpLine,
|
|
|
|
|
} from '@remixicon/react'
|
|
|
|
|
import {
|
|
|
|
|
PortalToFollowElem,
|
|
|
|
|
PortalToFollowElemContent,
|
|
|
|
|
@ -13,6 +16,10 @@ import Button from '@/app/components/base/button'
|
|
|
|
|
import Indicator from '@/app/components/header/indicator'
|
|
|
|
|
import ToolCredentialForm from '@/app/components/plugins/plugin-detail-panel/tool-selector/tool-credentials-form'
|
|
|
|
|
import Toast from '@/app/components/base/toast'
|
|
|
|
|
import Textarea from '@/app/components/base/textarea'
|
|
|
|
|
import Divider from '@/app/components/base/divider'
|
|
|
|
|
import Form from '@/app/components/header/account-setting/model-provider-page/model-modal/Form'
|
|
|
|
|
import { addDefaultValue, toolParametersToFormSchemas } from '@/app/components/tools/utils/to-form-schema'
|
|
|
|
|
|
|
|
|
|
import { useAppContext } from '@/context/app-context'
|
|
|
|
|
import {
|
|
|
|
|
@ -34,6 +41,8 @@ type Props = {
|
|
|
|
|
value?: {
|
|
|
|
|
provider: string
|
|
|
|
|
tool_name: string
|
|
|
|
|
description?: string
|
|
|
|
|
parameters?: Record<string, any>
|
|
|
|
|
}
|
|
|
|
|
disabled?: boolean
|
|
|
|
|
placement?: Placement
|
|
|
|
|
@ -41,15 +50,19 @@ type Props = {
|
|
|
|
|
onSelect: (tool: {
|
|
|
|
|
provider: string
|
|
|
|
|
tool_name: string
|
|
|
|
|
description?: string
|
|
|
|
|
parameters?: Record<string, any>
|
|
|
|
|
}) => void
|
|
|
|
|
supportAddCustomTool?: boolean
|
|
|
|
|
scope?: string
|
|
|
|
|
}
|
|
|
|
|
const ToolSelector: FC<Props> = ({
|
|
|
|
|
value,
|
|
|
|
|
disabled,
|
|
|
|
|
placement = 'bottom',
|
|
|
|
|
placement = 'left',
|
|
|
|
|
offset = 4,
|
|
|
|
|
onSelect,
|
|
|
|
|
scope,
|
|
|
|
|
}) => {
|
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
const [isShow, onShowChange] = useState(false)
|
|
|
|
|
@ -62,23 +75,52 @@ const ToolSelector: FC<Props> = ({
|
|
|
|
|
const { data: customTools } = useAllCustomTools()
|
|
|
|
|
const { data: workflowTools } = useAllWorkflowTools()
|
|
|
|
|
const invalidateAllBuiltinTools = useInvalidateAllBuiltInTools()
|
|
|
|
|
|
|
|
|
|
const currentProvider = useMemo(() => {
|
|
|
|
|
const mergedTools = [...(buildInTools || []), ...(customTools || []), ...(workflowTools || [])]
|
|
|
|
|
return mergedTools.find((toolWithProvider) => {
|
|
|
|
|
return toolWithProvider.id === value?.provider && toolWithProvider.tools.some(tool => tool.name === value?.tool_name)
|
|
|
|
|
})
|
|
|
|
|
}, [value, buildInTools, customTools, workflowTools])
|
|
|
|
|
|
|
|
|
|
const [isShowChooseTool, setIsShowChooseTool] = useState(false)
|
|
|
|
|
const handleSelectTool = (tool: ToolDefaultValue) => {
|
|
|
|
|
const paramValues = addDefaultValue(tool.params, toolParametersToFormSchemas(tool.paramSchemas as any))
|
|
|
|
|
const toolValue = {
|
|
|
|
|
provider: tool.provider_id,
|
|
|
|
|
tool_name: tool.tool_name,
|
|
|
|
|
description: '',
|
|
|
|
|
parameters: paramValues,
|
|
|
|
|
}
|
|
|
|
|
onSelect(toolValue)
|
|
|
|
|
setIsShowChooseTool(false)
|
|
|
|
|
if (tool.provider_type === CollectionType.builtIn && tool.is_team_authorization)
|
|
|
|
|
onShowChange(false)
|
|
|
|
|
// if (tool.provider_type === CollectionType.builtIn && tool.is_team_authorization)
|
|
|
|
|
// onShowChange(false)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleDescriptionChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
|
|
|
onSelect({
|
|
|
|
|
...value,
|
|
|
|
|
description: e.target.value || '',
|
|
|
|
|
} as any)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const currentToolParams = useMemo(() => {
|
|
|
|
|
if (!currentProvider) return []
|
|
|
|
|
return currentProvider.tools.find(tool => tool.name === value?.tool_name)?.parameters || []
|
|
|
|
|
}, [currentProvider, value])
|
|
|
|
|
|
|
|
|
|
const formSchemas = useMemo(() => toolParametersToFormSchemas(currentToolParams), [currentToolParams])
|
|
|
|
|
|
|
|
|
|
const handleFormChange = (v: Record<string, any>) => {
|
|
|
|
|
const toolValue = {
|
|
|
|
|
...value,
|
|
|
|
|
parameters: v,
|
|
|
|
|
}
|
|
|
|
|
onSelect(toolValue as any)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// authorization
|
|
|
|
|
const { isCurrentWorkspaceManager } = useAppContext()
|
|
|
|
|
const [isShowSettingAuth, setShowSettingAuth] = useState(false)
|
|
|
|
|
const handleCredentialSettingUpdate = () => {
|
|
|
|
|
@ -108,32 +150,79 @@ const ToolSelector: FC<Props> = ({
|
|
|
|
|
onClick={handleTriggerClick}
|
|
|
|
|
>
|
|
|
|
|
<ToolTrigger
|
|
|
|
|
isConfigure
|
|
|
|
|
open={isShow}
|
|
|
|
|
value={value}
|
|
|
|
|
provider={currentProvider}
|
|
|
|
|
/>
|
|
|
|
|
</PortalToFollowElemTrigger>
|
|
|
|
|
<PortalToFollowElemContent className='z-[1000]'>
|
|
|
|
|
<div className="relative w-[389px] min-h-20 rounded-xl bg-components-panel-bg-blur border-[0.5px] border-components-panel-border shadow-lg">
|
|
|
|
|
<div className='px-4 py-3 flex flex-col gap-1'>
|
|
|
|
|
<div className='h-6 flex items-center system-sm-semibold text-text-secondary'>{t('tools.toolSelector.label')}</div>
|
|
|
|
|
<ToolPicker
|
|
|
|
|
placement='bottom'
|
|
|
|
|
offset={offset}
|
|
|
|
|
trigger={
|
|
|
|
|
<ToolTrigger
|
|
|
|
|
open={isShowChooseTool}
|
|
|
|
|
value={value}
|
|
|
|
|
provider={currentProvider}
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
isShow={isShowChooseTool}
|
|
|
|
|
onShowChange={setIsShowChooseTool}
|
|
|
|
|
disabled={false}
|
|
|
|
|
supportAddCustomTool
|
|
|
|
|
onSelect={handleSelectTool}
|
|
|
|
|
/>
|
|
|
|
|
<div className="relative w-[361px] min-h-20 max-h-[642px] overflow-y-auto pb-2 rounded-xl backdrop-blur-sm bg-components-panel-bg-blur border-[0.5px] border-components-panel-border shadow-lg">
|
|
|
|
|
<div className='px-4 pt-3.5 pb-1 text-text-primary system-xl-semibold'>{t('plugin.detailPanel.toolSelector.title')}</div>
|
|
|
|
|
{/* base form */}
|
|
|
|
|
<div className='px-4 py-2 flex flex-col gap-3'>
|
|
|
|
|
<div className='flex flex-col gap-1'>
|
|
|
|
|
<div className='h-6 flex items-center system-sm-semibold text-text-secondary'>{t('plugin.detailPanel.toolSelector.toolLabel')}</div>
|
|
|
|
|
<ToolPicker
|
|
|
|
|
placement='bottom'
|
|
|
|
|
offset={offset}
|
|
|
|
|
trigger={
|
|
|
|
|
<ToolTrigger
|
|
|
|
|
open={isShowChooseTool}
|
|
|
|
|
value={value}
|
|
|
|
|
provider={currentProvider}
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|
isShow={isShowChooseTool}
|
|
|
|
|
onShowChange={setIsShowChooseTool}
|
|
|
|
|
disabled={false}
|
|
|
|
|
supportAddCustomTool
|
|
|
|
|
onSelect={handleSelectTool}
|
|
|
|
|
scope={scope}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div className='flex flex-col gap-1'>
|
|
|
|
|
<div className='h-6 flex items-center system-sm-semibold text-text-secondary'>{t('plugin.detailPanel.toolSelector.descriptionLabel')}</div>
|
|
|
|
|
<Textarea
|
|
|
|
|
className='resize-none'
|
|
|
|
|
placeholder={t('plugin.detailPanel.toolSelector.descriptionPlaceholder')}
|
|
|
|
|
value={value?.description || ''}
|
|
|
|
|
onChange={handleDescriptionChange}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{/* authorization */}
|
|
|
|
|
{!isShowSettingAuth && currentProvider && currentProvider.type === CollectionType.builtIn && currentProvider.allow_delete && (
|
|
|
|
|
<div className='px-4 pt-3 flex flex-col'>
|
|
|
|
|
<div className='flex items-center gap-2'>
|
|
|
|
|
<div className='text-text-tertiary system-xs-medium-uppercase'>{t('plugin.detailPanel.toolSelector.auth')}</div>
|
|
|
|
|
<Divider bgStyle='gradient' className='grow' />
|
|
|
|
|
</div>
|
|
|
|
|
<div className='py-2'>
|
|
|
|
|
{!currentProvider.is_team_authorization && (
|
|
|
|
|
<Button
|
|
|
|
|
variant='primary'
|
|
|
|
|
className={cn('shrink-0 w-full')}
|
|
|
|
|
onClick={() => setShowSettingAuth(true)}
|
|
|
|
|
disabled={!isCurrentWorkspaceManager}
|
|
|
|
|
>
|
|
|
|
|
{t('tools.auth.unauthorized')}
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
|
|
|
|
{currentProvider.is_team_authorization && (
|
|
|
|
|
<Button
|
|
|
|
|
variant='secondary'
|
|
|
|
|
className={cn('shrink-0 w-full')}
|
|
|
|
|
onClick={() => setShowSettingAuth(true)}
|
|
|
|
|
disabled={!isCurrentWorkspaceManager}
|
|
|
|
|
>
|
|
|
|
|
<Indicator className='mr-2' color={'green'} />
|
|
|
|
|
{t('tools.auth.authorized')}
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{/* authorization panel */}
|
|
|
|
|
{isShowSettingAuth && currentProvider && (
|
|
|
|
|
<div className='px-4 pb-4 border-t border-divider-subtle'>
|
|
|
|
|
@ -147,31 +236,34 @@ const ToolSelector: FC<Props> = ({
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{!isShowSettingAuth && currentProvider && currentProvider.type === CollectionType.builtIn && currentProvider.is_team_authorization && currentProvider.allow_delete && (
|
|
|
|
|
<div className='px-4 py-3 flex items-center border-t border-divider-subtle'>
|
|
|
|
|
<div className='grow mr-3 h-6 flex items-center system-sm-semibold text-text-secondary'>{t('tools.toolSelector.auth')}</div>
|
|
|
|
|
{isCurrentWorkspaceManager && (
|
|
|
|
|
<Button
|
|
|
|
|
variant='secondary'
|
|
|
|
|
size='small'
|
|
|
|
|
onClick={() => {}}
|
|
|
|
|
>
|
|
|
|
|
<Indicator className='mr-2' color={'green'} />
|
|
|
|
|
{t('tools.auth.authorized')}
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
{!isShowSettingAuth && currentProvider && currentProvider.type === CollectionType.builtIn && !currentProvider.is_team_authorization && currentProvider.allow_delete && (
|
|
|
|
|
<div className='px-4 py-3 flex items-center border-t border-divider-subtle'>
|
|
|
|
|
<Button
|
|
|
|
|
variant='primary'
|
|
|
|
|
className={cn('shrink-0 w-full')}
|
|
|
|
|
onClick={() => setShowSettingAuth(true)}
|
|
|
|
|
disabled={!isCurrentWorkspaceManager}
|
|
|
|
|
>
|
|
|
|
|
{t('tools.auth.unauthorized')}
|
|
|
|
|
</Button>
|
|
|
|
|
{/* tool settings */}
|
|
|
|
|
{currentToolParams.length > 0 && currentProvider?.is_team_authorization && (
|
|
|
|
|
<div className='px-4 pt-3'>
|
|
|
|
|
<div className='flex items-center gap-2'>
|
|
|
|
|
<div className='text-text-tertiary system-xs-medium-uppercase'>{t('plugin.detailPanel.toolSelector.settings')}</div>
|
|
|
|
|
<Divider bgStyle='gradient' className='grow' />
|
|
|
|
|
</div>
|
|
|
|
|
<div className='py-2'>
|
|
|
|
|
<Form
|
|
|
|
|
value={value?.parameters || {}}
|
|
|
|
|
onChange={handleFormChange}
|
|
|
|
|
formSchemas={formSchemas as any}
|
|
|
|
|
isEditMode={true}
|
|
|
|
|
showOnVariableMap={{}}
|
|
|
|
|
validating={false}
|
|
|
|
|
inputClassName='bg-components-input-bg-normal hover:bg-components-input-bg-hover'
|
|
|
|
|
fieldMoreInfo={item => item.url
|
|
|
|
|
? (<a
|
|
|
|
|
href={item.url}
|
|
|
|
|
target='_blank' rel='noopener noreferrer'
|
|
|
|
|
className='inline-flex items-center text-xs text-text-accent'
|
|
|
|
|
>
|
|
|
|
|
{t('tools.howToGet')}
|
|
|
|
|
<RiArrowRightUpLine className='ml-1 w-3 h-3' />
|
|
|
|
|
</a>)
|
|
|
|
|
: null}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
|