mirror of
https://github.com/langgenius/dify.git
synced 2025-07-16 13:50:18 +00:00
128 lines
4.1 KiB
TypeScript
128 lines
4.1 KiB
TypeScript
import {
|
|
memo,
|
|
useCallback,
|
|
useMemo,
|
|
} from 'react'
|
|
import { useStoreApi } from 'reactflow'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { groupBy } from 'lodash-es'
|
|
import BlockIcon from '../block-icon'
|
|
import { BlockEnum } from '../types'
|
|
import type { NodeDefault } from '../types'
|
|
import { BLOCK_CLASSIFICATIONS } from './constants'
|
|
import type { ToolDefaultValue } from './types'
|
|
import Tooltip from '@/app/components/base/tooltip'
|
|
import Badge from '@/app/components/base/badge'
|
|
|
|
type BlocksProps = {
|
|
searchText: string
|
|
onSelect: (type: BlockEnum, tool?: ToolDefaultValue) => void
|
|
availableBlocksTypes?: BlockEnum[]
|
|
blocks: NodeDefault[]
|
|
}
|
|
const Blocks = ({
|
|
searchText,
|
|
onSelect,
|
|
availableBlocksTypes = [],
|
|
blocks,
|
|
}: BlocksProps) => {
|
|
const { t } = useTranslation()
|
|
const store = useStoreApi()
|
|
|
|
const groups = useMemo(() => {
|
|
return BLOCK_CLASSIFICATIONS.reduce((acc, classification) => {
|
|
const list = groupBy(blocks, 'metaData.classification')[classification].filter((block) => {
|
|
return block.metaData.title.toLowerCase().includes(searchText.toLowerCase()) && availableBlocksTypes.includes(block.metaData.type)
|
|
})
|
|
|
|
return {
|
|
...acc,
|
|
[classification]: list,
|
|
}
|
|
}, {} as Record<string, typeof blocks>)
|
|
}, [blocks, searchText, availableBlocksTypes])
|
|
const isEmpty = Object.values(groups).every(list => !list.length)
|
|
|
|
const renderGroup = useCallback((classification: string) => {
|
|
const list = groups[classification].sort((a, b) => a.metaData.sort - b.metaData.sort)
|
|
const { getNodes } = store.getState()
|
|
const nodes = getNodes()
|
|
const hasKnowledgeBaseNode = nodes.some(node => node.data.type === BlockEnum.KnowledgeBase)
|
|
const filteredList = list.filter((block) => {
|
|
if (hasKnowledgeBaseNode)
|
|
return block.metaData.type !== BlockEnum.KnowledgeBase
|
|
return true
|
|
})
|
|
|
|
return (
|
|
<div
|
|
key={classification}
|
|
className='mb-1 last-of-type:mb-0'
|
|
>
|
|
{
|
|
classification !== '-' && !!filteredList.length && (
|
|
<div className='flex h-[22px] items-start px-3 text-xs font-medium text-text-tertiary'>
|
|
{t(`workflow.tabs.${classification}`)}
|
|
</div>
|
|
)
|
|
}
|
|
{
|
|
filteredList.map(block => (
|
|
<Tooltip
|
|
key={block.metaData.type}
|
|
position='right'
|
|
popupClassName='w-[200px]'
|
|
popupContent={(
|
|
<div>
|
|
<BlockIcon
|
|
size='md'
|
|
className='mb-2'
|
|
type={block.metaData.type}
|
|
/>
|
|
<div className='system-md-medium mb-1 text-text-primary'>{block.metaData.title}</div>
|
|
<div className='system-xs-regular text-text-tertiary'>{block.metaData.description}</div>
|
|
</div>
|
|
)}
|
|
>
|
|
<div
|
|
key={block.metaData.type}
|
|
className='flex h-8 w-full cursor-pointer items-center rounded-lg px-3 hover:bg-state-base-hover'
|
|
onClick={() => onSelect(block.metaData.type)}
|
|
>
|
|
<BlockIcon
|
|
className='mr-2 shrink-0'
|
|
type={block.metaData.type}
|
|
/>
|
|
<div className='grow text-sm text-text-secondary'>{block.metaData.title}</div>
|
|
{
|
|
block.metaData.type === BlockEnum.LoopEnd && (
|
|
<Badge
|
|
text={t('workflow.nodes.loop.loopNode')}
|
|
className='ml-2 shrink-0'
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
</Tooltip>
|
|
))
|
|
}
|
|
</div>
|
|
)
|
|
}, [groups, onSelect, t, store])
|
|
|
|
return (
|
|
<div className='max-h-[480px] overflow-y-auto p-1'>
|
|
{
|
|
isEmpty && (
|
|
<div className='flex h-[22px] items-center px-3 text-xs font-medium text-text-tertiary'>{t('workflow.tabs.noResult')}</div>
|
|
)
|
|
}
|
|
{
|
|
!isEmpty && BLOCK_CLASSIFICATIONS.map(renderGroup)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(Blocks)
|