mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import React from 'react'
 | |
| import Button from '@/app/components/base/button'
 | |
| import { useTranslation } from 'react-i18next'
 | |
| import { RiSearchEyeLine } from '@remixicon/react'
 | |
| 
 | |
| type HeaderProps = {
 | |
|   onReset: () => void
 | |
|   resetDisabled: boolean
 | |
|   onPreview?: () => void
 | |
| }
 | |
| 
 | |
| const Header = ({
 | |
|   onReset,
 | |
|   resetDisabled,
 | |
|   onPreview,
 | |
| }: HeaderProps) => {
 | |
|   const { t } = useTranslation()
 | |
| 
 | |
|   return (
 | |
|     <div className='flex items-center gap-x-1 px-4 py-2'>
 | |
|       <div className='system-sm-semibold-uppercase grow text-text-secondary'>
 | |
|         {t('datasetPipeline.addDocuments.stepTwo.chunkSettings')}
 | |
|       </div>
 | |
|       <Button variant='ghost' disabled={resetDisabled} onClick={onReset}>
 | |
|         {t('common.operation.reset')}
 | |
|       </Button>
 | |
|       <Button
 | |
|         variant='secondary-accent'
 | |
|         onClick={onPreview}
 | |
|         className='gap-x-0.5'
 | |
|       >
 | |
|         <RiSearchEyeLine className='size-4' />
 | |
|         <span className='px-0.5'>{t('datasetPipeline.addDocuments.stepTwo.previewChunks')}</span>
 | |
|       </Button>
 | |
|     </div>
 | |
|   )
 | |
| }
 | |
| 
 | |
| export default React.memo(Header)
 | 
