2026-05-17 23:46:57 +00:00
|
|
|
import { useRef } from "react";
|
2026-03-01 19:33:03 -08:00
|
|
|
import { Button } from "~/components/ui/button";
|
|
|
|
|
import { Card } from "~/components/ui/card";
|
2026-05-17 23:46:57 +00:00
|
|
|
import { useFocusTrap } from "~/hooks/useFocusTrap";
|
2026-03-01 19:33:03 -08:00
|
|
|
|
|
|
|
|
interface AuthRecoveryOverlayProps {
|
|
|
|
|
isAuthDegraded: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-17 23:46:57 +00:00
|
|
|
export function AuthRecoveryOverlay({ isAuthDegraded }: AuthRecoveryOverlayProps) {
|
2026-05-17 16:11:44 +00:00
|
|
|
const dialogRef = useRef<HTMLDivElement>(null);
|
|
|
|
|
|
2026-05-17 23:46:57 +00:00
|
|
|
useFocusTrap(dialogRef, isAuthDegraded);
|
2026-05-17 16:11:44 +00:00
|
|
|
|
2026-05-17 23:46:57 +00:00
|
|
|
if (!isAuthDegraded) return null;
|
2026-03-01 19:33:03 -08:00
|
|
|
|
|
|
|
|
return (
|
2026-05-17 16:11:44 +00:00
|
|
|
<div
|
|
|
|
|
ref={dialogRef}
|
|
|
|
|
role="dialog"
|
|
|
|
|
aria-modal="true"
|
|
|
|
|
aria-labelledby="auth-recovery-title"
|
|
|
|
|
className="fixed inset-0 bg-black/60 backdrop-blur-sm flex items-center justify-center z-[100]"
|
|
|
|
|
>
|
2026-03-01 19:33:03 -08:00
|
|
|
<Card className="w-full max-w-md mx-4 p-8 text-center">
|
|
|
|
|
<div className="flex flex-col items-center gap-6">
|
|
|
|
|
<div className="w-16 h-16 rounded-full bg-destructive/15 flex items-center justify-center">
|
|
|
|
|
<svg
|
2026-05-17 23:46:57 +00:00
|
|
|
aria-hidden="true"
|
2026-03-01 19:33:03 -08:00
|
|
|
className="w-8 h-8 text-destructive"
|
|
|
|
|
fill="none"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
strokeWidth={2}
|
|
|
|
|
d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
2026-05-17 16:11:44 +00:00
|
|
|
<h2 id="auth-recovery-title" className="text-2xl font-bold mb-2">Session Expired</h2>
|
2026-03-01 19:33:03 -08:00
|
|
|
<p className="text-muted-foreground">
|
2026-05-17 23:46:57 +00:00
|
|
|
Your session has expired. Reload the page to reconnect to the draft.
|
2026-03-01 19:33:03 -08:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-05-17 23:46:57 +00:00
|
|
|
<Button onClick={() => window.location.reload()} className="w-full" variant="default">
|
2026-03-01 19:33:03 -08:00
|
|
|
Reload Page
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|