'use client' import type { FC } from 'react' import React from 'react' import { RiLoader2Line } from '@remixicon/react' import Card from '../../../card' import type { Dependency, PluginDeclaration } from '../../../types' import Button from '@/app/components/base/button' import { useTranslation } from 'react-i18next' import { uploadFile } from '@/service/plugins' const i18nPrefix = 'plugin.installModal' type Props = { isBundle: boolean file: File onCancel: () => void onPackageUploaded: (result: { uniqueIdentifier: string manifest: PluginDeclaration }) => void onBundleUploaded: (result: Dependency[]) => void onFailed: (errorMsg: string) => void } const Uploading: FC = ({ isBundle, file, onCancel, onPackageUploaded, onBundleUploaded, onFailed, }) => { const { t } = useTranslation() const fileName = file.name const handleUpload = async () => { try { await uploadFile(file, isBundle) } catch (e: any) { if (e.response?.message) { onFailed(e.response?.message) } else { // Why it would into this branch? const res = e.response if (isBundle) { onBundleUploaded(res) return } onPackageUploaded({ uniqueIdentifier: res.unique_identifier, manifest: res.manifest, }) } } } React.useEffect(() => { handleUpload() // eslint-disable-next-line react-hooks/exhaustive-deps }, []) return ( <>
{t(`${i18nPrefix}.uploadingPackage`, { packageName: fileName, })}
{/* Action Buttons */}
) } export default React.memo(Uploading)