This commit is contained in:
freedakgmail
2025-11-23 03:07:39 +08:00
parent 626d7dddde
commit e92884ae53
679 changed files with 208175 additions and 1183474 deletions
+195
View File
@@ -0,0 +1,195 @@
"use client"
import { useState } from "react"
import { useRouter } from "next/navigation"
import { useSession } from "next-auth/react"
import { SiteHeader } from "@/components/site-header"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { Textarea } from "@/components/ui/textarea"
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"
import { Alert, AlertDescription } from "@/components/ui/alert"
import { ArrowLeft, TreePine } from "lucide-react"
import Link from "next/link"
export default function NewTreePage() {
const router = useRouter()
const { data: session } = useSession()
const [name, setName] = useState("")
const [description, setDescription] = useState("")
const [error, setError] = useState("")
const [loading, setLoading] = useState(false)
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault()
if (!name.trim()) {
setError("请输入家族树名称")
return
}
setError("")
setLoading(true)
try {
const response = await fetch("/api/trees", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
name: name.trim(),
description: description.trim() || undefined,
}),
})
const data = await response.json()
if (!response.ok) {
throw new Error(data.error || "创建失败")
}
// 创建成功,强制刷新页面以更新家族树列表
window.location.href = `/?treeId=${data.tree.id}`
} catch (err: any) {
setError(err.message || "创建失败,请稍后重试")
} finally {
setLoading(false)
}
}
if (!session) {
return (
<div className="min-h-screen bg-background flex flex-col">
<SiteHeader />
<div className="flex-1 flex items-center justify-center">
<Card className="w-full max-w-md mx-4">
<CardHeader>
<CardTitle></CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardFooter>
<Button asChild className="w-full">
<Link href="/auth/signin"></Link>
</Button>
</CardFooter>
</Card>
</div>
</div>
)
}
return (
<div className="min-h-screen bg-background flex flex-col">
<SiteHeader />
<main className="container mx-auto py-8 px-4 md:px-6 flex-1">
<div className="max-w-2xl mx-auto">
<div className="mb-6">
<Button
variant="ghost"
size="sm"
asChild
className="mb-4"
>
<Link href="/">
<ArrowLeft className="h-4 w-4 mr-2" />
</Link>
</Button>
<h1 className="text-3xl font-serif font-bold mb-2"></h1>
<p className="text-muted-foreground">
</p>
</div>
<Card>
<form onSubmit={handleSubmit}>
<CardHeader>
<div className="flex items-center gap-3">
<div className="flex h-12 w-12 items-center justify-center rounded-lg bg-primary text-primary-foreground">
<TreePine className="h-6 w-6" />
</div>
<div>
<CardTitle></CardTitle>
<CardDescription>
</CardDescription>
</div>
</div>
</CardHeader>
<CardContent className="space-y-6">
{error && (
<Alert variant="destructive">
<AlertDescription>{error}</AlertDescription>
</Alert>
)}
<div className="space-y-2">
<Label htmlFor="name">
<span className="text-destructive">*</span>
</Label>
<Input
id="name"
placeholder="例如:王氏家族、李氏宗谱"
value={name}
onChange={(e) => setName(e.target.value)}
maxLength={50}
required
/>
<p className="text-xs text-muted-foreground">
使+/
</p>
</div>
<div className="space-y-2">
<Label htmlFor="description"></Label>
<Textarea
id="description"
placeholder="简要描述您的家族历史、祖籍地等信息"
value={description}
onChange={(e) => setDescription(e.target.value)}
rows={4}
maxLength={500}
/>
<p className="text-xs text-muted-foreground">
{description.length}/500
</p>
</div>
<div className="rounded-lg border bg-muted/50 p-4">
<h3 className="font-medium mb-2">💡 </h3>
<ul className="text-sm text-muted-foreground space-y-1">
<li> </li>
<li> </li>
<li> </li>
</ul>
</div>
</CardContent>
<CardFooter className="flex gap-3">
<Button
type="button"
variant="outline"
onClick={() => router.back()}
disabled={loading}
className="flex-1"
>
</Button>
<Button
type="submit"
disabled={loading || !name.trim()}
className="flex-1"
>
{loading ? "创建中..." : "创建家族树"}
</Button>
</CardFooter>
</form>
</Card>
</div>
</main>
</div>
)
}