Files
Minikura/apps/web/app/bootstrap/page.tsx

162 lines
4.7 KiB
TypeScript
Raw Normal View History

2026-02-13 15:52:13 +07:00
"use client";
import { Loader2 } from "lucide-react";
import { useRouter } from "next/navigation";
import { useEffect, useState } from "react";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { api } from "@/lib/api";
export default function BootstrapPage() {
const router = useRouter();
const [loading, setLoading] = useState(false);
const [checkingStatus, setCheckingStatus] = useState(true);
const [error, setError] = useState("");
useEffect(() => {
const checkStatus = async () => {
try {
const { data } = await api.bootstrap.status.get();
if (data && !data.needsSetup) {
router.replace("/login");
}
} catch (err) {
console.error("Failed to check bootstrap status:", err);
} finally {
setCheckingStatus(false);
}
};
checkStatus();
}, [router]);
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
setLoading(true);
setError("");
const formData = new FormData(e.currentTarget);
const email = formData.get("email") as string;
const password = formData.get("password") as string;
const confirmPassword = formData.get("confirmPassword") as string;
const name = formData.get("name") as string;
if (password !== confirmPassword) {
setError("Passwords do not match");
setLoading(false);
return;
}
try {
const { data, error: apiError } = await api.bootstrap.setup.post({
email,
password,
name,
});
if (apiError) {
const errorMessage =
"value" in apiError &&
typeof apiError.value === "object" &&
apiError.value &&
"message" in apiError.value
? String(apiError.value.message)
: "Failed to create admin user";
setError(errorMessage);
} else if (data?.success) {
router.push("/login");
} else {
setError("Failed to create admin user");
}
} catch (err) {
setError("Failed to connect to server");
} finally {
setLoading(false);
}
};
if (checkingStatus) {
return (
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-slate-50 to-slate-100">
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
</div>
);
}
return (
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-slate-50 to-slate-100 p-4">
<Card className="w-full max-w-md">
<CardHeader className="space-y-1">
<CardTitle className="text-2xl font-bold text-center">
Welcome to Minikura
</CardTitle>
<CardDescription className="text-center">
Create your admin account to get started
</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="name">Full Name</Label>
<Input
id="name"
name="name"
placeholder="John Doe"
required
autoFocus
/>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
name="email"
type="email"
placeholder="admin@example.com"
required
/>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<Input
id="password"
name="password"
type="password"
placeholder="••••••••"
minLength={8}
required
/>
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirm Password</Label>
<Input
id="confirmPassword"
name="confirmPassword"
type="password"
placeholder="••••••••"
minLength={8}
required
/>
</div>
{error && (
<div className="text-sm text-red-600 text-center">{error}</div>
)}
<Button type="submit" className="w-full" disabled={loading}>
{loading ? "Creating..." : "Create Admin Account"}
</Button>
</form>
</CardContent>
</Card>
</div>
);
}