dify/web/app/components/plugins/reference-setting-modal/auto-update-setting/no-data-placeholder.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

36 lines
1.1 KiB
TypeScript

'use client'
import type { FC } from 'react'
import { cn } from '@langgenius/dify-ui/cn'
import * as React from 'react'
import { useTranslation } from 'react-i18next'
import { SearchMenu } from '@/app/components/base/icons/src/vender/line/general'
import { Group } from '@/app/components/base/icons/src/vender/other'
type Props = Readonly<{
className: string
noPlugins?: boolean
}>
const NoDataPlaceholder: FC<Props> = ({ className, noPlugins }) => {
const { t } = useTranslation()
const icon = noPlugins ? (
<Group className="size-6 text-text-quaternary" />
) : (
<SearchMenu className="size-8 text-text-tertiary" />
)
const text = t(
($) => $[`autoUpdate.noPluginPlaceholder.${noPlugins ? 'noInstalled' : 'noFound'}`],
{ ns: 'plugin' },
)
return (
<div className={cn('flex items-center justify-center', className)}>
<div className="flex flex-col items-center">
{icon}
<div className="mt-2 system-sm-regular text-text-tertiary">{text}</div>
</div>
</div>
)
}
export default React.memo(NoDataPlaceholder)