dify/web/app/components/plugins/install-plugin/base/installed.tsx

55 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-10-22 17:21:25 +08:00
'use client'
import type { FC } from 'react'
import React from 'react'
2024-10-24 11:10:44 +08:00
import type { PluginDeclaration } from '../../types'
import Card from '../../card'
2024-10-22 17:21:25 +08:00
import Button from '@/app/components/base/button'
2024-10-24 11:10:44 +08:00
import { pluginManifestToCardPluginProps } from '../utils'
2024-10-22 18:11:47 +08:00
import { useTranslation } from 'react-i18next'
2024-10-24 17:14:17 +08:00
import Badge, { BadgeState } from '@/app/components/base/badge/index'
2024-10-22 17:21:25 +08:00
type Props = {
2024-10-24 17:14:17 +08:00
payload?: PluginDeclaration | null
2024-10-23 17:52:39 +08:00
isFailed: boolean
2024-10-24 17:14:17 +08:00
errMsg?: string | null
2024-10-22 17:21:25 +08:00
onCancel: () => void
}
const Installed: FC<Props> = ({
payload,
2024-10-23 17:52:39 +08:00
isFailed,
2024-10-24 17:14:17 +08:00
errMsg,
2024-10-22 18:11:47 +08:00
onCancel,
2024-10-22 17:21:25 +08:00
}) => {
2024-10-22 18:11:47 +08:00
const { t } = useTranslation()
2024-10-22 17:21:25 +08:00
return (
<>
<div className='flex flex-col px-6 py-3 justify-center items-start gap-4 self-stretch'>
2024-10-24 17:14:17 +08:00
<p className='text-text-secondary system-md-regular'>{(isFailed && errMsg) ? errMsg : t(`plugin.installModal.${isFailed ? 'installFailedDesc' : 'installedSuccessfullyDesc'}`)}</p>
{payload && (
<div className='flex p-2 items-start content-start gap-1 self-stretch flex-wrap rounded-2xl bg-background-section-burn'>
<Card
className='w-full'
payload={pluginManifestToCardPluginProps(payload)}
installed={!isFailed}
installFailed={isFailed}
titleLeft={<Badge className='mx-1' size="s" state={BadgeState.Default}>{payload.version}</Badge>}
/>
</div>
)}
2024-10-22 17:21:25 +08:00
</div>
{/* Action Buttons */}
<div className='flex p-6 pt-5 justify-end items-center gap-2 self-stretch'>
<Button
variant='primary'
className='min-w-[72px]'
onClick={onCancel}
>
2024-10-22 18:11:47 +08:00
{t('common.operation.close')}
2024-10-22 17:21:25 +08:00
</Button>
</div>
</>
)
}
export default React.memo(Installed)