|
'use client' |
|
import React from 'react' |
|
import { useTranslation } from 'react-i18next' |
|
import { XMarkIcon } from '@heroicons/react/20/solid' |
|
import s from '../file-preview/index.module.css' |
|
import cn from '@/utils/classnames' |
|
import type { CrawlResultItem } from '@/models/datasets' |
|
|
|
type IProps = { |
|
payload: CrawlResultItem |
|
hidePreview: () => void |
|
} |
|
|
|
const WebsitePreview = ({ |
|
payload, |
|
hidePreview, |
|
}: IProps) => { |
|
const { t } = useTranslation() |
|
|
|
return ( |
|
<div className={cn(s.filePreview)}> |
|
<div className={cn(s.previewHeader)}> |
|
<div className={cn(s.title)}> |
|
<span>{t('datasetCreation.stepOne.pagePreview')}</span> |
|
<div className='flex items-center justify-center w-6 h-6 cursor-pointer' onClick={hidePreview}> |
|
<XMarkIcon className='h-4 w-4'></XMarkIcon> |
|
</div> |
|
</div> |
|
<div className='leading-5 text-sm font-medium text-gray-900 break-words'> |
|
{payload.title} |
|
</div> |
|
<div className='truncate leading-[18px] text-xs font-normal text-gray-500' title={payload.source_url}>{payload.source_url}</div> |
|
</div> |
|
<div className={cn(s.previewContent)}> |
|
<div className={cn(s.fileContent)}>{payload.markdown}</div> |
|
</div> |
|
</div> |
|
) |
|
} |
|
|
|
export default WebsitePreview |
|
|