chore: to common install comp

pull/9940/head
Joel 2 years ago
parent 13ccd294cb
commit 7daa365564

@ -1,10 +1,10 @@
'use client' 'use client'
import type { FC } from 'react' import type { FC } from 'react'
import React from 'react' import React from 'react'
import type { PluginDeclaration } from '../../../types' import type { PluginDeclaration } from '../../types'
import Card from '../../../card' import Card from '../../card'
import Button from '@/app/components/base/button' import Button from '@/app/components/base/button'
import { pluginManifestToCardPluginProps } from '../../utils' import { pluginManifestToCardPluginProps } from '../utils'
import { useTranslation } from 'react-i18next' import { useTranslation } from 'react-i18next'
type Props = { type Props = {

@ -6,7 +6,7 @@ import type { PluginDeclaration } from '../../types'
import { InstallStep } from '../../types' import { InstallStep } from '../../types'
import Uploading from './steps/uploading' import Uploading from './steps/uploading'
import Install from './steps/install' import Install from './steps/install'
import Installed from './steps/installed' import Installed from '../base/installed'
import { useTranslation } from 'react-i18next' import { useTranslation } from 'react-i18next'
import { toolNotionManifest } from '../../card/card-mock' import { toolNotionManifest } from '../../card/card-mock'

@ -5,7 +5,7 @@ import Modal from '@/app/components/base/modal'
import type { PluginDeclaration } from '../../types' import type { PluginDeclaration } from '../../types'
import { InstallStep } from '../../types' import { InstallStep } from '../../types'
import Install from './steps/install' import Install from './steps/install'
import Installed from './steps/installed' import Installed from '../base/installed'
import { useTranslation } from 'react-i18next' import { useTranslation } from 'react-i18next'
const i18nPrefix = 'plugin.installModal' const i18nPrefix = 'plugin.installModal'

@ -1,48 +0,0 @@
'use client'
import type { FC } from 'react'
import React from 'react'
import type { PluginDeclaration } from '../../../types'
import Card from '../../../card'
import Button from '@/app/components/base/button'
import { pluginManifestToCardPluginProps } from '../../utils'
import { useTranslation } from 'react-i18next'
type Props = {
payload: PluginDeclaration
isFailed: boolean
onCancel: () => void
}
const Installed: FC<Props> = ({
payload,
isFailed,
onCancel,
}) => {
const { t } = useTranslation()
return (
<>
<div className='flex flex-col px-6 py-3 justify-center items-start gap-4 self-stretch'>
<p className='text-text-secondary system-md-regular'>{t(`plugin.installModal.${isFailed ? 'installFailedDesc' : 'installedSuccessfullyDesc'}`)}</p>
<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}
/>
</div>
</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}
>
{t('common.operation.close')}
</Button>
</div>
</>
)
}
export default React.memo(Installed)
Loading…
Cancel
Save