mirror of
https://github.com/langgenius/dify.git
synced 2025-07-19 07:31:09 +00:00
58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import {
|
|
useCallback,
|
|
useRef,
|
|
} from 'react'
|
|
import { BlockEnum } from '../types'
|
|
import type {
|
|
OnSelectBlock,
|
|
ToolWithProvider,
|
|
} from '../types'
|
|
import Tools from './tools'
|
|
import { ViewType } from './view-type-select'
|
|
import cn from '@/utils/classnames'
|
|
import type { ListRef } from '@/app/components/workflow/block-selector/market-place-plugin/list'
|
|
|
|
type AllToolsProps = {
|
|
className?: string
|
|
toolContentClassName?: string
|
|
searchText: string
|
|
onSelect: OnSelectBlock
|
|
dataSources: ToolWithProvider[]
|
|
}
|
|
|
|
const DataSources = ({
|
|
className,
|
|
toolContentClassName,
|
|
searchText,
|
|
onSelect,
|
|
dataSources,
|
|
}: AllToolsProps) => {
|
|
const pluginRef = useRef<ListRef>(null)
|
|
const wrapElemRef = useRef<HTMLDivElement>(null)
|
|
const formatedDataSources = dataSources.map(item => ({ ...item, tools: item.datasources || [] }))
|
|
const handleSelect = useCallback<OnSelectBlock>((_, toolDefaultValue) => {
|
|
onSelect(BlockEnum.DataSource, toolDefaultValue)
|
|
}, [onSelect])
|
|
|
|
return (
|
|
<div className={cn(className)}>
|
|
<div
|
|
ref={wrapElemRef}
|
|
className='max-h-[464px] overflow-y-auto'
|
|
onScroll={pluginRef.current?.handleScroll}
|
|
>
|
|
<Tools
|
|
className={toolContentClassName}
|
|
showWorkflowEmpty={false}
|
|
tools={formatedDataSources}
|
|
onSelect={handleSelect}
|
|
viewType={ViewType.flat}
|
|
hasSearchText={!!searchText}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default DataSources
|