- bookmark management with dnd-kit reordering, bulk edit, search, category filter/rename, and meta auto-fetch - migrate /bookmarks → /dashboard/bookmarks under (main) layout - homepage redesign with category grid, /-key search, dock tooltips - theme toggle + use-theme, sonner toasts, alert-dialog/skeleton, visual refresh of auth pages Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
152 lines
4.5 KiB
TypeScript
152 lines
4.5 KiB
TypeScript
"use client";
|
||
|
||
import { useEffect, useState } from "react";
|
||
import { useRouter } from "next/navigation";
|
||
import { Button } from "@/components/ui/button";
|
||
import { Input } from "@/components/ui/input";
|
||
import { Label } from "@/components/ui/label";
|
||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||
|
||
export default function InitPage() {
|
||
const router = useRouter();
|
||
const [loading, setLoading] = useState(true);
|
||
const [initialized, setInitialized] = useState(true);
|
||
const [form, setForm] = useState({
|
||
username: "",
|
||
email: "",
|
||
password: "",
|
||
confirmPassword: "",
|
||
});
|
||
const [error, setError] = useState("");
|
||
|
||
useEffect(() => {
|
||
fetch("/api/proxy/admin/users", {
|
||
headers: { "X-User-Role": "admin" },
|
||
})
|
||
.then((res) => {
|
||
if (res.ok) {
|
||
setInitialized(true);
|
||
} else {
|
||
setInitialized(false);
|
||
}
|
||
})
|
||
.catch(() => setInitialized(false))
|
||
.finally(() => setLoading(false));
|
||
}, []);
|
||
|
||
async function handleSubmit(e: React.FormEvent) {
|
||
e.preventDefault();
|
||
setError("");
|
||
|
||
if (form.password !== form.confirmPassword) {
|
||
setError("两次输入的密码不一致");
|
||
return;
|
||
}
|
||
|
||
const res = await fetch("/api/proxy/auth/init", {
|
||
method: "POST",
|
||
headers: { "Content-Type": "application/json" },
|
||
body: JSON.stringify({
|
||
username: form.username,
|
||
email: form.email,
|
||
password: form.password,
|
||
}),
|
||
});
|
||
|
||
if (!res.ok) {
|
||
const data = await res.json();
|
||
setError(data.error || "初始化失败");
|
||
return;
|
||
}
|
||
|
||
router.push("/login");
|
||
}
|
||
|
||
if (loading) {
|
||
return (
|
||
<div className="flex min-h-screen items-center justify-center bg-gradient-to-br from-background via-background to-muted/40 text-sm text-muted-foreground">
|
||
加载中...
|
||
</div>
|
||
);
|
||
}
|
||
|
||
if (initialized) {
|
||
return (
|
||
<div className="flex min-h-screen items-center justify-center bg-gradient-to-br from-background via-background to-muted/40 p-4">
|
||
<Card className="w-full max-w-md">
|
||
<CardHeader>
|
||
<CardTitle className="text-center">系统已初始化</CardTitle>
|
||
</CardHeader>
|
||
<CardContent>
|
||
<p className="text-center text-sm text-muted-foreground">
|
||
系统中已有用户,无法再次初始化。
|
||
</p>
|
||
</CardContent>
|
||
</Card>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
return (
|
||
<div className="flex min-h-screen items-center justify-center bg-gradient-to-br from-background via-background to-muted/40 p-4">
|
||
<Card className="w-full max-w-md">
|
||
<CardHeader>
|
||
<CardTitle className="text-center">系统初始化</CardTitle>
|
||
</CardHeader>
|
||
<CardContent className="space-y-4">
|
||
<p className="text-sm text-muted-foreground">
|
||
这是系统首次启动,请创建第一个管理员账号。
|
||
</p>
|
||
<form onSubmit={handleSubmit} className="space-y-4">
|
||
<div>
|
||
<Label htmlFor="username">用户名</Label>
|
||
<Input
|
||
id="username"
|
||
value={form.username}
|
||
onChange={(e) => setForm({ ...form, username: e.target.value })}
|
||
required
|
||
/>
|
||
</div>
|
||
<div>
|
||
<Label htmlFor="email">邮箱</Label>
|
||
<Input
|
||
id="email"
|
||
type="email"
|
||
value={form.email}
|
||
onChange={(e) => setForm({ ...form, email: e.target.value })}
|
||
required
|
||
/>
|
||
</div>
|
||
<div>
|
||
<Label htmlFor="password">密码</Label>
|
||
<Input
|
||
id="password"
|
||
type="password"
|
||
value={form.password}
|
||
onChange={(e) => setForm({ ...form, password: e.target.value })}
|
||
required
|
||
/>
|
||
</div>
|
||
<div>
|
||
<Label htmlFor="confirmPassword">确认密码</Label>
|
||
<Input
|
||
id="confirmPassword"
|
||
type="password"
|
||
value={form.confirmPassword}
|
||
onChange={(e) =>
|
||
setForm({ ...form, confirmPassword: e.target.value })
|
||
}
|
||
required
|
||
/>
|
||
</div>
|
||
{error && <p className="text-sm text-destructive">{error}</p>}
|
||
<Button type="submit" className="w-full">
|
||
创建管理员
|
||
</Button>
|
||
</form>
|
||
</CardContent>
|
||
</Card>
|
||
</div>
|
||
);
|
||
}
|