mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 01:32:33 +08:00
100 lines
3.1 KiB
TypeScript
100 lines
3.1 KiB
TypeScript
import {
|
|
useMemo,
|
|
useRef,
|
|
useState,
|
|
} from 'react'
|
|
import type {
|
|
OnSelectBlock,
|
|
ToolWithProvider,
|
|
} from '../types'
|
|
import { ToolTypeEnum } from './types'
|
|
import Tools from './tools'
|
|
import { useToolTabs } from './hooks'
|
|
import ViewTypeSelect, { ViewType } from './view-type-select'
|
|
import cn from '@/utils/classnames'
|
|
import { useGetLanguage } from '@/context/i18n'
|
|
import PluginList from '@/app/components/workflow/block-selector/market-place-plugin/list'
|
|
import { extensionDallE, modelGPT4, toolNotion } from '@/app/components/plugins/card/card-mock'
|
|
|
|
type AllToolsProps = {
|
|
searchText: string
|
|
buildInTools: ToolWithProvider[]
|
|
customTools: ToolWithProvider[]
|
|
workflowTools: ToolWithProvider[]
|
|
onSelect: OnSelectBlock
|
|
}
|
|
const AllTools = ({
|
|
searchText,
|
|
onSelect,
|
|
buildInTools,
|
|
workflowTools,
|
|
customTools,
|
|
}: AllToolsProps) => {
|
|
const language = useGetLanguage()
|
|
const tabs = useToolTabs()
|
|
const [activeTab, setActiveTab] = useState(ToolTypeEnum.All)
|
|
const [activeView, setActiveView] = useState<ViewType>(ViewType.list)
|
|
|
|
const tools = useMemo(() => {
|
|
let mergedTools: ToolWithProvider[] = []
|
|
if (activeTab === ToolTypeEnum.All)
|
|
mergedTools = [...buildInTools, ...customTools, ...workflowTools]
|
|
if (activeTab === ToolTypeEnum.BuiltIn)
|
|
mergedTools = buildInTools
|
|
if (activeTab === ToolTypeEnum.Custom)
|
|
mergedTools = customTools
|
|
if (activeTab === ToolTypeEnum.Workflow)
|
|
mergedTools = workflowTools
|
|
|
|
return mergedTools.filter((toolWithProvider) => {
|
|
return toolWithProvider.tools.some((tool) => {
|
|
return tool.label[language].toLowerCase().includes(searchText.toLowerCase())
|
|
})
|
|
})
|
|
}, [activeTab, buildInTools, customTools, workflowTools, searchText, language])
|
|
|
|
const pluginRef = useRef(null)
|
|
const wrapElemRef = useRef<HTMLDivElement>(null)
|
|
|
|
return (
|
|
<div>
|
|
<div className='flex items-center justify-between px-3 bg-background-default-hover border-b-[0.5px] border-black/[0.08] shadow-xs'>
|
|
<div className='flex items-center h-8 space-x-1'>
|
|
{
|
|
tabs.map(tab => (
|
|
<div
|
|
className={cn(
|
|
'flex items-center px-2 h-6 rounded-md hover:bg-gray-100 cursor-pointer',
|
|
'text-xs font-medium text-gray-700',
|
|
activeTab === tab.key && 'bg-gray-200',
|
|
)}
|
|
key={tab.key}
|
|
onClick={() => setActiveTab(tab.key)}
|
|
>
|
|
{tab.name}
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
<ViewTypeSelect viewType={activeView} onChange={setActiveView} />
|
|
</div>
|
|
<div
|
|
ref={wrapElemRef}
|
|
className='max-h-[464px] overflow-y-auto'
|
|
onScroll={(pluginRef.current as any)?.handleScroll}
|
|
>
|
|
<Tools
|
|
showWorkflowEmpty={activeTab === ToolTypeEnum.Workflow}
|
|
tools={tools}
|
|
onSelect={onSelect}
|
|
viewType={activeView}
|
|
/>
|
|
{/* Plugins from marketplace */}
|
|
<PluginList wrapElemRef={wrapElemRef} list={[toolNotion, extensionDallE, modelGPT4] as any} ref={pluginRef} />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AllTools
|