mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +00:00 
			
		
		
		
	 49feff082f
			
		
	
	
		49feff082f
		
			
		
	
	
	
	
		
			
			Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
		
			
				
	
	
		
			241 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			241 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 'use client'
 | |
| 
 | |
| import { useContext } from 'use-context-selector'
 | |
| import { useRouter } from 'next/navigation'
 | |
| import { useCallback, useEffect, useState } from 'react'
 | |
| import { useTranslation } from 'react-i18next'
 | |
| import { RiMoreFill } from '@remixicon/react'
 | |
| import cn from '@/utils/classnames'
 | |
| import Confirm from '@/app/components/base/confirm'
 | |
| import { ToastContext } from '@/app/components/base/toast'
 | |
| import { checkIsUsedInApp, deleteDataset } from '@/service/datasets'
 | |
| import type { DataSet } from '@/models/datasets'
 | |
| import Tooltip from '@/app/components/base/tooltip'
 | |
| import { Folder } from '@/app/components/base/icons/src/vender/solid/files'
 | |
| import type { HtmlContentProps } from '@/app/components/base/popover'
 | |
| import CustomPopover from '@/app/components/base/popover'
 | |
| import Divider from '@/app/components/base/divider'
 | |
| import RenameDatasetModal from '@/app/components/datasets/rename-modal'
 | |
| import type { Tag } from '@/app/components/base/tag-management/constant'
 | |
| import TagSelector from '@/app/components/base/tag-management/selector'
 | |
| import CornerLabel from '@/app/components/base/corner-label'
 | |
| import { useAppContext } from '@/context/app-context'
 | |
| 
 | |
| export type DatasetCardProps = {
 | |
|   dataset: DataSet
 | |
|   onSuccess?: () => void
 | |
| }
 | |
| 
 | |
| const DatasetCard = ({
 | |
|   dataset,
 | |
|   onSuccess,
 | |
| }: DatasetCardProps) => {
 | |
|   const { t } = useTranslation()
 | |
|   const { notify } = useContext(ToastContext)
 | |
|   const { push } = useRouter()
 | |
|   const EXTERNAL_PROVIDER = 'external' as const
 | |
| 
 | |
|   const { isCurrentWorkspaceDatasetOperator } = useAppContext()
 | |
|   const [tags, setTags] = useState<Tag[]>(dataset.tags)
 | |
| 
 | |
|   const [showRenameModal, setShowRenameModal] = useState(false)
 | |
|   const [showConfirmDelete, setShowConfirmDelete] = useState(false)
 | |
|   const [confirmMessage, setConfirmMessage] = useState<string>('')
 | |
|   const isExternalProvider = (provider: string): boolean => provider === EXTERNAL_PROVIDER
 | |
|   const detectIsUsedByApp = useCallback(async () => {
 | |
|     try {
 | |
|       const { is_using: isUsedByApp } = await checkIsUsedInApp(dataset.id)
 | |
|       setConfirmMessage(isUsedByApp ? t('dataset.datasetUsedByApp')! : t('dataset.deleteDatasetConfirmContent')!)
 | |
|     }
 | |
|     catch (e: any) {
 | |
|       const res = await e.json()
 | |
|       notify({ type: 'error', message: res?.message || 'Unknown error' })
 | |
|     }
 | |
| 
 | |
|     setShowConfirmDelete(true)
 | |
|   }, [dataset.id, notify, t])
 | |
|   const onConfirmDelete = useCallback(async () => {
 | |
|     try {
 | |
|       await deleteDataset(dataset.id)
 | |
|       notify({ type: 'success', message: t('dataset.datasetDeleted') })
 | |
|       if (onSuccess)
 | |
|         onSuccess()
 | |
|     }
 | |
|     catch (e: any) {
 | |
|     }
 | |
|     setShowConfirmDelete(false)
 | |
|   }, [dataset.id, notify, onSuccess, t])
 | |
| 
 | |
|   const Operations = (props: HtmlContentProps & { showDelete: boolean }) => {
 | |
|     const onMouseLeave = async () => {
 | |
|       props.onClose?.()
 | |
|     }
 | |
|     const onClickRename = async (e: React.MouseEvent<HTMLDivElement>) => {
 | |
|       e.stopPropagation()
 | |
|       props.onClick?.()
 | |
|       e.preventDefault()
 | |
|       setShowRenameModal(true)
 | |
|     }
 | |
|     const onClickDelete = async (e: React.MouseEvent<HTMLDivElement>) => {
 | |
|       e.stopPropagation()
 | |
|       props.onClick?.()
 | |
|       e.preventDefault()
 | |
|       detectIsUsedByApp()
 | |
|     }
 | |
|     return (
 | |
|       <div className="relative w-full py-1" onMouseLeave={onMouseLeave}>
 | |
|         <div className='h-8 py-[6px] px-3 mx-1 flex items-center gap-2 hover:bg-gray-100 rounded-lg cursor-pointer' onClick={onClickRename}>
 | |
|           <span className='text-gray-700 text-sm'>{t('common.operation.settings')}</span>
 | |
|         </div>
 | |
|         {props.showDelete && (
 | |
|           <>
 | |
|             <Divider className="!my-1" />
 | |
|             <div
 | |
|               className='group h-8 py-[6px] px-3 mx-1 flex items-center gap-2 hover:bg-red-50 rounded-lg cursor-pointer'
 | |
|               onClick={onClickDelete}
 | |
|             >
 | |
|               <span className={cn('text-gray-700 text-sm', 'group-hover:text-red-500')}>
 | |
|                 {t('common.operation.delete')}
 | |
|               </span>
 | |
|             </div>
 | |
|           </>
 | |
|         )}
 | |
|       </div>
 | |
|     )
 | |
|   }
 | |
| 
 | |
|   useEffect(() => {
 | |
|     setTags(dataset.tags)
 | |
|   }, [dataset])
 | |
| 
 | |
|   return (
 | |
|     <>
 | |
|       <div
 | |
|         className='group relative col-span-1 bg-components-card-bg border-[0.5px] border-solid border-components-card-border rounded-xl shadow-sm min-h-[160px] flex flex-col transition-all duration-200 ease-in-out cursor-pointer hover:shadow-lg'
 | |
|         data-disable-nprogress={true}
 | |
|         onClick={(e) => {
 | |
|           e.preventDefault()
 | |
|           isExternalProvider(dataset.provider)
 | |
|             ? push(`/datasets/${dataset.id}/hitTesting`)
 | |
|             : push(`/datasets/${dataset.id}/documents`)
 | |
|         }}
 | |
|       >
 | |
|         {isExternalProvider(dataset.provider) && <CornerLabel label='External' className='absolute right-0' labelClassName='rounded-tr-xl' />}
 | |
|         <div className='flex pt-[14px] px-[14px] pb-3 h-[66px] items-center gap-3 grow-0 shrink-0'>
 | |
|           <div className={cn(
 | |
|             'shrink-0 flex items-center justify-center p-2.5 bg-[#F5F8FF] rounded-md border-[0.5px] border-[#E0EAFF]',
 | |
|             !dataset.embedding_available && 'opacity-50 hover:opacity-100',
 | |
|           )}>
 | |
|             <Folder className='w-5 h-5 text-[#444CE7]' />
 | |
|           </div>
 | |
|           <div className='grow w-0 py-[1px]'>
 | |
|             <div className='flex items-center text-sm leading-5 font-semibold text-text-secondary'>
 | |
|               <div className={cn('truncate', !dataset.embedding_available && 'opacity-50 hover:opacity-100 text-text-tertiary')} title={dataset.name}>{dataset.name}</div>
 | |
|               {!dataset.embedding_available && (
 | |
|                 <Tooltip
 | |
|                   popupContent={t('dataset.unavailableTip')}
 | |
|                 >
 | |
|                   <span className='shrink-0 inline-flex w-max ml-1 px-1 border border-gray-200 rounded-md text-gray-500 text-xs font-normal leading-[18px]'>{t('dataset.unavailable')}</span>
 | |
|                 </Tooltip>
 | |
|               )}
 | |
|             </div>
 | |
|             <div className='flex items-center mt-[1px] text-xs leading-[18px] text-text-tertiary'>
 | |
|               <div
 | |
|                 className={cn('truncate', (!dataset.embedding_available || !dataset.document_count) && 'opacity-50')}
 | |
|                 title={dataset.provider === 'external' ? `${dataset.app_count}${t('dataset.appCount')}` : `${dataset.document_count}${t('dataset.documentCount')} · ${Math.round(dataset.word_count / 1000)}${t('dataset.wordCount')} · ${dataset.app_count}${t('dataset.appCount')}`}
 | |
|               >
 | |
|                 {dataset.provider === 'external'
 | |
|                   ? <>
 | |
|                     <span>{dataset.app_count}{t('dataset.appCount')}</span>
 | |
|                   </>
 | |
|                   : <>
 | |
|                     <span>{dataset.document_count}{t('dataset.documentCount')}</span>
 | |
|                     <span className='shrink-0 mx-0.5 w-1 text-gray-400'>·</span>
 | |
|                     <span>{Math.round(dataset.word_count / 1000)}{t('dataset.wordCount')}</span>
 | |
|                     <span className='shrink-0 mx-0.5 w-1 text-gray-400'>·</span>
 | |
|                     <span>{dataset.app_count}{t('dataset.appCount')}</span>
 | |
|                   </>
 | |
|                 }
 | |
|               </div>
 | |
|             </div>
 | |
|           </div>
 | |
|         </div>
 | |
|         <div
 | |
|           className={cn(
 | |
|             'grow mb-2 px-[14px] max-h-[72px] text-xs leading-normal text-text-tertiary group-hover:line-clamp-2 group-hover:max-h-[36px]',
 | |
|             tags.length ? 'line-clamp-2' : 'line-clamp-4',
 | |
|             !dataset.embedding_available && 'opacity-50 hover:opacity-100',
 | |
|           )}
 | |
|           title={dataset.description}>
 | |
|           {dataset.description}
 | |
|         </div>
 | |
|         <div className={cn(
 | |
|           'items-center shrink-0 mt-1 pt-1 pl-[14px] pr-[6px] pb-[6px] h-[42px]',
 | |
|           tags.length ? 'flex' : '!hidden group-hover:!flex',
 | |
|         )}>
 | |
|           <div className={cn('grow flex items-center gap-1 w-0', !dataset.embedding_available && 'opacity-50 hover:opacity-100')} onClick={(e) => {
 | |
|             e.stopPropagation()
 | |
|             e.preventDefault()
 | |
|           }}>
 | |
|             <div className={cn(
 | |
|               'group-hover:!block group-hover:!mr-0 mr-[41px] grow w-full',
 | |
|               tags.length ? '!block' : '!hidden',
 | |
|             )}>
 | |
|               <TagSelector
 | |
|                 position='bl'
 | |
|                 type='knowledge'
 | |
|                 targetID={dataset.id}
 | |
|                 value={tags.map(tag => tag.id)}
 | |
|                 selectedTags={tags}
 | |
|                 onCacheUpdate={setTags}
 | |
|                 onChange={onSuccess}
 | |
|               />
 | |
|             </div>
 | |
|           </div>
 | |
|           <div className='!hidden group-hover:!flex shrink-0 mx-1 w-[1px] h-[14px] bg-gray-200' />
 | |
|           <div className='!hidden group-hover:!flex shrink-0'>
 | |
|             <CustomPopover
 | |
|               htmlContent={<Operations showDelete={!isCurrentWorkspaceDatasetOperator} />}
 | |
|               position="br"
 | |
|               trigger="click"
 | |
|               btnElement={
 | |
|                 <div
 | |
|                   className='flex items-center justify-center w-8 h-8 cursor-pointer rounded-md'
 | |
|                 >
 | |
|                   <RiMoreFill className='w-4 h-4 text-gray-700' />
 | |
|                 </div>
 | |
|               }
 | |
|               btnClassName={open =>
 | |
|                 cn(
 | |
|                   open ? '!bg-black/5 !shadow-none' : '!bg-transparent',
 | |
|                   'h-8 w-8 !p-2 rounded-md border-none hover:!bg-black/5',
 | |
|                 )
 | |
|               }
 | |
|               className={'!w-[128px] h-fit !z-20'}
 | |
|             />
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|       {showRenameModal && (
 | |
|         <RenameDatasetModal
 | |
|           show={showRenameModal}
 | |
|           dataset={dataset}
 | |
|           onClose={() => setShowRenameModal(false)}
 | |
|           onSuccess={onSuccess}
 | |
|         />
 | |
|       )}
 | |
|       {showConfirmDelete && (
 | |
|         <Confirm
 | |
|           title={t('dataset.deleteDatasetConfirmTitle')}
 | |
|           content={confirmMessage}
 | |
|           isShow={showConfirmDelete}
 | |
|           onConfirm={onConfirmDelete}
 | |
|           onCancel={() => setShowConfirmDelete(false)}
 | |
|         />
 | |
|       )}
 | |
|     </>
 | |
|   )
 | |
| }
 | |
| 
 | |
| export default DatasetCard
 |