Files
zerobyte/app/client/modules/settings/components/backup-codes-dialog.tsx
Nico 4fec2777ce test(e2e): fail in unexpected console.error (#696)
* test(e2e): fail in unexpected console.error

* fix(datetime): graceful fallback during SSR when navigator is undefined
2026-03-22 11:31:48 +01:00

117 lines
3.1 KiB
TypeScript

import { useState } from "react";
import { toast } from "sonner";
import { RefreshCw } from "lucide-react";
import { Button } from "~/client/components/ui/button";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "~/client/components/ui/dialog";
import { Input } from "~/client/components/ui/input";
import { Label } from "~/client/components/ui/label";
import { authClient } from "~/client/lib/auth-client";
import { logger } from "~/client/lib/logger";
type BackupCodesDialogProps = {
open: boolean;
onOpenChange: (open: boolean) => void;
};
export const BackupCodesDialog = ({ open, onOpenChange }: BackupCodesDialogProps) => {
const [password, setPassword] = useState("");
const [backupCodes, setBackupCodes] = useState<string[]>([]);
const [isGenerating, setIsGenerating] = useState(false);
const handleGenerate = async (e: React.FormEvent) => {
e.preventDefault();
if (!password) {
toast.error("Password is required");
return;
}
const { data, error } = await authClient.twoFactor.generateBackupCodes({
password,
fetchOptions: {
onRequest: () => {
setIsGenerating(true);
},
onResponse: () => {
setIsGenerating(false);
},
},
});
if (error) {
logger.error(error);
toast.error("Failed to generate backup codes", { description: error.message });
return;
}
setBackupCodes(data.backupCodes);
setPassword("");
toast.success("New backup codes generated successfully");
};
const handleClose = () => {
onOpenChange(false);
setTimeout(() => {
setBackupCodes([]);
setPassword("");
}, 200);
};
return (
<Dialog open={open} onOpenChange={handleClose}>
<DialogContent>
<DialogHeader>
<DialogTitle>Backup Codes</DialogTitle>
<DialogDescription>
Use these codes to access your account if you lose access to your authenticator app. Each code can only be
used once.
</DialogDescription>
</DialogHeader>
<div className="space-y-4 py-4">
{backupCodes.length > 0 ? (
<>
<div className="p-3 bg-muted rounded-md space-y-1 max-h-48 overflow-y-auto">
{backupCodes.map((code) => (
<div key={code} className="text-sm font-mono py-1">
<span className="select-all block w-full">{code}</span>
</div>
))}
</div>
</>
) : (
<form onSubmit={handleGenerate} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="backup-codes-password">Your password</Label>
<Input
id="backup-codes-password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder="Enter your password"
required
/>
</div>
<Button type="submit" loading={isGenerating} className="w-full">
<RefreshCw className="h-4 w-4 mr-2" />
Generate new codes
</Button>
</form>
)}
</div>
<DialogFooter>
<Button type="button" onClick={handleClose}>
Close
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
};