mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-15 04:43:36 +00:00
153 lines
5.6 KiB
TypeScript
153 lines
5.6 KiB
TypeScript
import React from "react";
|
|
import { Button } from "@/components/button.tsx";
|
|
import { Shield, ExternalLink, Loader2, AlertCircle } from "lucide-react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
interface OPKSSHDialogProps {
|
|
isOpen: boolean;
|
|
authUrl: string;
|
|
requestId: string;
|
|
stage: "chooser" | "waiting" | "authenticating" | "completed" | "error";
|
|
error?: string;
|
|
providers?: Array<{ alias: string; issuer: string }>;
|
|
onCancel: () => void;
|
|
onOpenUrl: () => void;
|
|
onSelectProvider?: (alias: string) => void;
|
|
backgroundColor?: string;
|
|
}
|
|
|
|
export function OPKSSHDialog({
|
|
isOpen,
|
|
authUrl,
|
|
stage,
|
|
error,
|
|
providers,
|
|
onCancel,
|
|
onOpenUrl,
|
|
onSelectProvider,
|
|
backgroundColor,
|
|
}: OPKSSHDialogProps) {
|
|
const { t } = useTranslation();
|
|
|
|
if (!isOpen) return null;
|
|
|
|
return (
|
|
<div className="absolute inset-0 flex items-center justify-center z-500 animate-in fade-in duration-200">
|
|
<div
|
|
className="absolute inset-0 bg-canvas rounded-md"
|
|
style={{ backgroundColor: backgroundColor || undefined }}
|
|
/>
|
|
<div className="bg-card border border-border w-full max-w-md mx-4 relative z-10 animate-in fade-in zoom-in-95 duration-200">
|
|
<div className="p-4 border-b border-border">
|
|
<div className="flex items-center gap-2">
|
|
<Shield className="size-4 text-accent-brand" />
|
|
<h3 className="text-xs font-bold uppercase tracking-widest">
|
|
{t("terminal.opksshAuthRequired")}
|
|
</h3>
|
|
</div>
|
|
{stage === "chooser" && (
|
|
<p className="text-[10px] font-bold uppercase tracking-tight text-muted-foreground mt-1">
|
|
{t("terminal.opksshAuthDescription")}
|
|
</p>
|
|
)}
|
|
</div>
|
|
<div className="p-4 flex flex-col gap-4">
|
|
{stage === "chooser" && (
|
|
<>
|
|
{providers && providers.length > 0 && onSelectProvider ? (
|
|
<div className="flex flex-col gap-2">
|
|
{providers.map((provider) => (
|
|
<Button
|
|
key={provider.alias}
|
|
type="button"
|
|
variant="outline"
|
|
onClick={() => onSelectProvider(provider.alias)}
|
|
className="border-accent-brand/40 text-accent-brand hover:bg-accent-brand/10 rounded-none text-[10px] font-bold uppercase tracking-widest w-full flex items-center gap-2"
|
|
>
|
|
<ExternalLink className="size-3.5" />
|
|
{t("terminal.opksshSignInWith", {
|
|
provider:
|
|
provider.alias.charAt(0).toUpperCase() +
|
|
provider.alias.slice(1),
|
|
})}
|
|
</Button>
|
|
))}
|
|
</div>
|
|
) : authUrl ? (
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
onClick={onOpenUrl}
|
|
className="border-accent-brand/40 text-accent-brand hover:bg-accent-brand/10 rounded-none text-[10px] font-bold uppercase tracking-widest w-full flex items-center gap-2"
|
|
>
|
|
<ExternalLink className="size-3.5" />
|
|
{t("terminal.opksshOpenBrowser")}
|
|
</Button>
|
|
) : null}
|
|
<div className="flex justify-end">
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
onClick={onCancel}
|
|
className="rounded-none text-[10px] font-bold uppercase tracking-widest"
|
|
>
|
|
{t("common.cancel")}
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
{(stage === "waiting" || stage === "authenticating") && (
|
|
<>
|
|
<div className="flex items-center gap-3 py-2">
|
|
<Loader2 className="size-4 animate-spin text-accent-brand shrink-0" />
|
|
<p className="text-xs text-muted-foreground">
|
|
{stage === "waiting"
|
|
? t("terminal.opksshWaitingForAuth")
|
|
: t("terminal.opksshAuthenticating")}
|
|
</p>
|
|
</div>
|
|
<div className="flex justify-end">
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
onClick={onCancel}
|
|
className="rounded-none text-[10px] font-bold uppercase tracking-widest"
|
|
>
|
|
{t("common.cancel")}
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
{stage === "error" && error && (
|
|
<>
|
|
<div className="flex items-start gap-3 p-3 border border-destructive/20 bg-destructive/10">
|
|
<AlertCircle className="size-4 text-destructive shrink-0 mt-0.5" />
|
|
<div className="flex-1 min-w-0">
|
|
<p className="text-[10px] font-bold uppercase tracking-widest text-destructive">
|
|
{t("common.error")}
|
|
</p>
|
|
<p className="text-xs text-destructive/90 mt-1 whitespace-pre-wrap break-words">
|
|
{error}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex justify-end">
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
onClick={onCancel}
|
|
className="rounded-none text-[10px] font-bold uppercase tracking-widest"
|
|
>
|
|
{t("common.close")}
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|