mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-28 11:40:25 +00:00
73 lines
1.9 KiB
TypeScript
73 lines
1.9 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog";
|
|
import { error } from "electron-log";
|
|
import { t } from "i18next";
|
|
import React from "react";
|
|
|
|
interface InstallationErrorDialogProps {
|
|
error: string;
|
|
backendError?: string;
|
|
installationState: string;
|
|
latestLog: any;
|
|
retryInstallation: () => void;
|
|
retryBackend?: () => void;
|
|
}
|
|
|
|
const InstallationErrorDialog = ({
|
|
error,
|
|
backendError,
|
|
installationState,
|
|
latestLog,
|
|
retryInstallation,
|
|
retryBackend,
|
|
}:InstallationErrorDialogProps) => {
|
|
if (backendError) {
|
|
return (
|
|
<Dialog open={true}>
|
|
<DialogContent className="bg-white-100%">
|
|
<DialogHeader>
|
|
<DialogTitle>{t("layout.backend-startup-failed")}</DialogTitle>
|
|
</DialogHeader>
|
|
<div className="text-text-label text-xs font-normal leading-tight mb-4">
|
|
<div className="mb-1">
|
|
<span className="text-text-label/60">
|
|
{backendError}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<Button onClick={retryBackend}>{t("layout.retry")}</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Dialog open={installationState == "error"}>
|
|
<DialogContent className="bg-white-100%">
|
|
<DialogHeader>
|
|
<DialogTitle>{t("layout.installation-failed")}</DialogTitle>
|
|
</DialogHeader>
|
|
<div className="text-text-label text-xs font-normal leading-tight mb-4">
|
|
<div className="mb-1">
|
|
<span className="text-text-label/60">
|
|
{error}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<Button onClick={retryInstallation}>{t("layout.retry")}</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default InstallationErrorDialog;
|