mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-30 01:55:17 +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>
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { useCallback } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import cn from '@/utils/classnames'
|
|
import type { CrawlResultItem as CrawlResultItemType } from '@/models/datasets'
|
|
import Checkbox from '@/app/components/base/checkbox'
|
|
import Button from '@/app/components/base/button'
|
|
|
|
type Props = {
|
|
payload: CrawlResultItemType
|
|
isChecked: boolean
|
|
isPreview: boolean
|
|
onCheckChange: (checked: boolean) => void
|
|
onPreview: () => void
|
|
}
|
|
|
|
const CrawledResultItem: FC<Props> = ({
|
|
isPreview,
|
|
payload,
|
|
isChecked,
|
|
onCheckChange,
|
|
onPreview,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
|
|
const handleCheckChange = useCallback(() => {
|
|
onCheckChange(!isChecked)
|
|
}, [isChecked, onCheckChange])
|
|
return (
|
|
<div className={cn(isPreview ? 'bg-state-base-active' : 'group hover:bg-state-base-hover', 'cursor-pointer rounded-lg p-2')}>
|
|
<div className='relative flex'>
|
|
<div className='flex h-5 items-center'>
|
|
<Checkbox className='mr-2 shrink-0' checked={isChecked} onCheck={handleCheckChange} />
|
|
</div>
|
|
<div className='flex min-w-0 grow flex-col'>
|
|
<div
|
|
className='truncate text-sm font-medium text-text-secondary'
|
|
title={payload.title}
|
|
>
|
|
{payload.title}
|
|
</div>
|
|
<div
|
|
className='mt-0.5 truncate text-xs text-text-tertiary'
|
|
title={payload.source_url}
|
|
>
|
|
{payload.source_url}
|
|
</div>
|
|
</div>
|
|
<Button
|
|
onClick={onPreview}
|
|
className='right-0 top-0 hidden h-6 px-1.5 text-xs font-medium uppercase group-hover:absolute group-hover:block'
|
|
>
|
|
{t('datasetCreation.stepOne.website.preview')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(CrawledResultItem)
|