dify/web/app/components/plugins/plugin-detail-panel/tool-selector/index.tsx

184 lines
6.6 KiB
TypeScript
Raw Normal View History

2024-11-13 16:43:43 +08:00
'use client'
import type { FC } from 'react'
import React, { useMemo, useState } from 'react'
import { useTranslation } from 'react-i18next'
import {
PortalToFollowElem,
PortalToFollowElemContent,
PortalToFollowElemTrigger,
} from '@/app/components/base/portal-to-follow-elem'
2024-11-14 13:02:12 +08:00
import ToolTrigger from '@/app/components/plugins/plugin-detail-panel/tool-selector/tool-trigger'
2024-11-13 16:43:43 +08:00
import ToolPicker from '@/app/components/workflow/block-selector/tool-picker'
2024-11-13 23:28:55 +08:00
import Button from '@/app/components/base/button'
import Indicator from '@/app/components/header/indicator'
2024-11-14 13:02:12 +08:00
import ToolCredentialForm from '@/app/components/plugins/plugin-detail-panel/tool-selector/tool-credentials-form'
2024-11-14 00:01:47 +08:00
import Toast from '@/app/components/base/toast'
2024-11-13 16:43:43 +08:00
2024-11-13 23:28:55 +08:00
import { useAppContext } from '@/context/app-context'
2024-11-14 00:01:47 +08:00
import {
useAllBuiltInTools,
useAllCustomTools,
useAllWorkflowTools,
2024-11-14 00:04:06 +08:00
useInvalidateAllBuiltInTools,
2024-11-14 00:01:47 +08:00
useUpdateProviderCredentials,
} from '@/service/use-tools'
2024-11-13 23:28:55 +08:00
import { CollectionType } from '@/app/components/tools/types'
2024-11-13 16:43:43 +08:00
import type { ToolDefaultValue } from '@/app/components/workflow/block-selector/types'
import type {
OffsetOptions,
Placement,
} from '@floating-ui/react'
2024-11-13 23:28:55 +08:00
import cn from '@/utils/classnames'
2024-11-13 16:43:43 +08:00
type Props = {
value?: {
provider: string
tool_name: string
}
2024-11-14 00:01:47 +08:00
disabled?: boolean
2024-11-13 16:43:43 +08:00
placement?: Placement
offset?: OffsetOptions
onSelect: (tool: {
provider: string
tool_name: string
}) => void
supportAddCustomTool?: boolean
}
const ToolSelector: FC<Props> = ({
value,
disabled,
placement = 'bottom',
2024-11-13 23:28:55 +08:00
offset = 4,
2024-11-13 16:43:43 +08:00
onSelect,
}) => {
const { t } = useTranslation()
const [isShow, onShowChange] = useState(false)
const handleTriggerClick = () => {
if (disabled) return
onShowChange(true)
}
2024-11-13 23:28:55 +08:00
2024-11-13 16:43:43 +08:00
const { data: buildInTools } = useAllBuiltInTools()
const { data: customTools } = useAllCustomTools()
const { data: workflowTools } = useAllWorkflowTools()
2024-11-14 00:04:06 +08:00
const invalidateAllBuiltinTools = useInvalidateAllBuiltInTools()
2024-11-13 16:43:43 +08:00
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 toolValue = {
provider: tool.provider_id,
tool_name: tool.tool_name,
}
onSelect(toolValue)
2024-11-13 23:28:55 +08:00
setIsShowChooseTool(false)
if (tool.provider_type === CollectionType.builtIn && tool.is_team_authorization)
onShowChange(false)
2024-11-13 16:43:43 +08:00
}
2024-11-13 23:28:55 +08:00
const { isCurrentWorkspaceManager } = useAppContext()
2024-11-14 00:01:47 +08:00
const [isShowSettingAuth, setShowSettingAuth] = useState(false)
const handleCredentialSettingUpdate = () => {
2024-11-14 00:04:06 +08:00
invalidateAllBuiltinTools()
2024-11-14 00:01:47 +08:00
Toast.notify({
type: 'success',
message: t('common.api.actionSuccess'),
})
setShowSettingAuth(false)
onShowChange(false)
}
2024-11-13 23:28:55 +08:00
2024-11-14 00:01:47 +08:00
const { mutate: updatePermission } = useUpdateProviderCredentials({
onSuccess: handleCredentialSettingUpdate,
})
2024-11-13 16:43:43 +08:00
return (
<>
<PortalToFollowElem
placement={placement}
offset={offset}
open={isShow}
onOpenChange={onShowChange}
>
<PortalToFollowElemTrigger
className='w-full'
onClick={handleTriggerClick}
>
2024-11-13 23:28:55 +08:00
<ToolTrigger
open={isShow}
value={value}
provider={currentProvider}
/>
2024-11-13 16:43:43 +08:00
</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'>
2024-11-13 23:28:55 +08:00
<div className='h-6 flex items-center system-sm-semibold text-text-secondary'>{t('tools.toolSelector.label')}</div>
2024-11-13 16:43:43 +08:00
<ToolPicker
placement='bottom'
2024-11-13 23:28:55 +08:00
offset={offset}
trigger={
<ToolTrigger
open={isShowChooseTool}
value={value}
provider={currentProvider}
/>
}
2024-11-13 16:43:43 +08:00
isShow={isShowChooseTool}
onShowChange={setIsShowChooseTool}
disabled={false}
supportAddCustomTool
onSelect={handleSelectTool}
/>
</div>
2024-11-13 23:28:55 +08:00
{/* authorization panel */}
2024-11-14 00:01:47 +08:00
{isShowSettingAuth && currentProvider && (
<div className='px-4 pb-4 border-t border-divider-subtle'>
<ToolCredentialForm
collection={currentProvider}
onCancel={() => setShowSettingAuth(false)}
onSaved={async value => updatePermission({
providerName: currentProvider.name,
credentials: value,
})}
/>
</div>
2024-11-13 23:28:55 +08:00
)}
2024-11-14 00:01:47 +08:00
{!isShowSettingAuth && currentProvider && currentProvider.type === CollectionType.builtIn && currentProvider.is_team_authorization && currentProvider.allow_delete && (
2024-11-13 23:28:55 +08:00
<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>
)}
2024-11-14 00:01:47 +08:00
{!isShowSettingAuth && currentProvider && currentProvider.type === CollectionType.builtIn && !currentProvider.is_team_authorization && currentProvider.allow_delete && (
2024-11-13 23:28:55 +08:00
<div className='px-4 py-3 flex items-center border-t border-divider-subtle'>
<Button
variant='primary'
className={cn('shrink-0 w-full')}
2024-11-14 00:01:47 +08:00
onClick={() => setShowSettingAuth(true)}
2024-11-13 23:28:55 +08:00
disabled={!isCurrentWorkspaceManager}
>
{t('tools.auth.unauthorized')}
</Button>
</div>
)}
2024-11-13 16:43:43 +08:00
</div>
</PortalToFollowElemContent>
</PortalToFollowElem>
</>
)
}
export default React.memo(ToolSelector)