mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-31 18:45:33 +08:00

Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import { type FC, useEffect, useRef, useState } from 'react'
|
|
import React from 'react'
|
|
import type { KnowledgeRetrievalNodeType } from './types'
|
|
import { Folder } from '@/app/components/base/icons/src/vender/solid/files'
|
|
import type { NodeProps } from '@/app/components/workflow/types'
|
|
import { fetchDatasets } from '@/service/datasets'
|
|
import type { DataSet } from '@/models/datasets'
|
|
|
|
const Node: FC<NodeProps<KnowledgeRetrievalNodeType>> = ({
|
|
data,
|
|
}) => {
|
|
const [selectedDatasets, setSelectedDatasets] = useState<DataSet[]>([])
|
|
const updateTime = useRef(0)
|
|
useEffect(() => {
|
|
(async () => {
|
|
updateTime.current = updateTime.current + 1
|
|
const currUpdateTime = updateTime.current
|
|
|
|
if (data.dataset_ids?.length > 0) {
|
|
const { data: dataSetsWithDetail } = await fetchDatasets({ url: '/datasets', params: { page: 1, ids: data.dataset_ids } })
|
|
// avoid old data overwrite new data
|
|
if (currUpdateTime < updateTime.current)
|
|
return
|
|
setSelectedDatasets(dataSetsWithDetail)
|
|
}
|
|
else {
|
|
setSelectedDatasets([])
|
|
}
|
|
})()
|
|
}, [data.dataset_ids])
|
|
|
|
if (!selectedDatasets.length)
|
|
return null
|
|
|
|
return (
|
|
<div className='mb-1 px-3 py-1'>
|
|
<div className='space-y-0.5'>
|
|
{selectedDatasets.map(({ id, name }) => (
|
|
<div key={id} className='flex h-[26px] items-center rounded-md bg-workflow-block-parma-bg px-1 text-xs font-normal text-gray-700'>
|
|
<div className='mr-1 shrink-0 rounded-md border-[0.5px] border-[#E0EAFF] bg-[#F5F8FF] p-1'>
|
|
<Folder className='h-3 w-3 text-[#444CE7]' />
|
|
</div>
|
|
<div className='system-xs-regular w-0 grow truncate text-text-secondary'>
|
|
{name}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Node)
|