mirror of
https://github.com/langgenius/dify.git
synced 2026-06-17 23:21:12 +08:00
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>
77 lines
2.6 KiB
TypeScript
77 lines
2.6 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import type { InstallStatus, Plugin, VersionProps } from '../../../types'
|
|
import { Button } from '@langgenius/dify-ui/button'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Badge, { BadgeState } from '@/app/components/base/badge/index'
|
|
import Card from '@/app/components/plugins/card'
|
|
import { MARKETPLACE_API_PREFIX } from '@/config'
|
|
import useGetIcon from '../../base/use-get-icon'
|
|
import Version from '../../base/version'
|
|
|
|
type Props = Readonly<{
|
|
list: Plugin[]
|
|
installStatus: InstallStatus[]
|
|
versionInfo?: VersionProps[]
|
|
onCancel: () => void
|
|
isHideButton?: boolean
|
|
}>
|
|
|
|
const Installed: FC<Props> = ({
|
|
list,
|
|
installStatus,
|
|
versionInfo,
|
|
onCancel,
|
|
isHideButton,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const { getIconUrl } = useGetIcon()
|
|
return (
|
|
<>
|
|
<div className="flex flex-col items-start justify-center gap-4 self-stretch px-6 py-3">
|
|
<p className="system-md-regular text-text-secondary">
|
|
{t('installModal.installedSuccessfullyCountDesc', { ns: 'plugin', num: list.length })}
|
|
</p>
|
|
<div className="flex flex-wrap content-start items-start gap-1 space-y-1 self-stretch rounded-2xl bg-background-section-burn p-2">
|
|
{list.map((plugin, index) => {
|
|
const pluginVersionInfo = versionInfo?.[index]
|
|
return (
|
|
<Card
|
|
key={plugin.plugin_id}
|
|
className="w-full"
|
|
payload={{
|
|
...plugin,
|
|
icon: installStatus[index]!.isFromMarketPlace ? `${MARKETPLACE_API_PREFIX}/plugins/${plugin.org}/${plugin.name}/icon` : getIconUrl(plugin.icon),
|
|
}}
|
|
installed={installStatus[index]!.success}
|
|
installFailed={!installStatus[index]!.success}
|
|
titleLeft={plugin.version
|
|
? pluginVersionInfo
|
|
? <Version {...pluginVersionInfo} />
|
|
: <Badge className="mx-1" size="s" state={BadgeState.Default}>{plugin.version}</Badge>
|
|
: null}
|
|
compact
|
|
/>
|
|
)
|
|
})}
|
|
</div>
|
|
</div>
|
|
{/* Action Buttons */}
|
|
{!isHideButton && (
|
|
<div className="flex items-center justify-end gap-2 self-stretch p-6 pt-5">
|
|
<Button
|
|
variant="primary"
|
|
className="min-w-[72px]"
|
|
onClick={onCancel}
|
|
>
|
|
{t('operation.close', { ns: 'common' })}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Installed)
|