dify/web/app/components/datasets/extra-info/statistics.tsx
Jingyi 9b74df21d0
feat(web): refine onboarding UI (#37433)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: Joel <iamjoel007@gmail.com>
Co-authored-by: hjlarry <hjlarry@163.com>
Co-authored-by: fatelei <fatelei@gmail.com>
Co-authored-by: Asuka Minato <i@asukaminato.eu.org>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com>
Co-authored-by: gigglewang <gigglewang@dify.ai>
Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai>
Co-authored-by: chariri <w@chariri.moe>
Co-authored-by: Evan <2869018789@qq.com>
Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com>
2026-06-15 08:47:15 +00:00

76 lines
2.7 KiB
TypeScript

import type { RelatedAppResponse } from '@/models/datasets'
import { Popover, PopoverContent, PopoverTrigger } from '@langgenius/dify-ui/popover'
import { RiInformation2Line } from '@remixicon/react'
import * as React from 'react'
import { useTranslation } from 'react-i18next'
import LinkedAppsPanel from '@/app/components/base/linked-apps-panel'
import NoLinkedAppsPanel from '../no-linked-apps-panel'
type StatisticsProps = {
expand: boolean
documentCount?: number
relatedApps?: RelatedAppResponse
}
const Statistics = ({
expand,
documentCount,
relatedApps,
}: StatisticsProps) => {
const { t } = useTranslation()
const relatedAppsTotal = relatedApps?.total
const hasRelatedApps = relatedApps?.data && relatedApps.data.length > 0
return (
<div className="flex items-start gap-x-0.5 px-1 pt-2">
<div className="flex min-w-0 flex-col rounded-lg px-2 pt-1 pb-1.5">
<div className="system-md-semibold-uppercase text-text-secondary">
{documentCount ?? '--'}
</div>
<div className="truncate system-2xs-medium-uppercase text-text-tertiary">
{t('datasetMenus.documents', { ns: 'common' })}
</div>
</div>
<div className="flex h-[42px] w-[15px] shrink-0 items-center justify-center">
<div className="h-7 w-px rotate-[15deg] bg-divider-subtle" />
</div>
<div className="flex min-w-0 flex-col rounded-lg px-2 pt-1 pb-1.5">
<div className="system-md-semibold-uppercase text-text-secondary">
{relatedAppsTotal ?? '--'}
</div>
<Popover>
<PopoverTrigger
openOnHover
aria-label={t('datasetMenus.relatedApp', { ns: 'common' })}
render={(
<button
type="button"
className="flex max-w-full cursor-pointer items-center gap-x-0.5 rounded-sm system-2xs-medium-uppercase text-text-tertiary outline-hidden hover:text-text-secondary focus-visible:ring-1 focus-visible:ring-components-input-border-hover"
>
<span className="truncate">{t('datasetMenus.relatedApp', { ns: 'common' })}</span>
<RiInformation2Line className="size-3 shrink-0" />
</button>
)}
/>
<PopoverContent
placement="top-start"
popupClassName="border-0 bg-transparent p-0 shadow-none"
>
{hasRelatedApps
? (
<LinkedAppsPanel
relatedApps={relatedApps.data}
isMobile={!expand}
/>
)
: <NoLinkedAppsPanel />}
</PopoverContent>
</Popover>
</div>
</div>
)
}
export default React.memo(Statistics)