Files
cunkebao_v3/SuperAdmin/app/dashboard/projects/new/page.tsx
2025-04-15 16:27:06 +08:00

152 lines
5.7 KiB
TypeScript

"use client"
import type React from "react"
import { useState } from "react"
import { useRouter } from "next/navigation"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Textarea } from "@/components/ui/textarea"
import { Label } from "@/components/ui/label"
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
import { ArrowLeft, Plus, Trash } from "lucide-react"
import Link from "next/link"
export default function NewProjectPage() {
const router = useRouter()
const [isSubmitting, setIsSubmitting] = useState(false)
const [devices, setDevices] = useState([{ id: "1", name: "" }])
const [status, setStatus] = useState("1") // 默认启用
const handleAddDevice = () => {
setDevices([...devices, { id: Date.now().toString(), name: "" }])
}
const handleRemoveDevice = (id: string) => {
setDevices(devices.filter((device) => device.id !== id))
}
const handleDeviceChange = (id: string, value: string) => {
setDevices(devices.map((device) => (device.id === id ? { ...device, name: value } : device)))
}
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault()
setIsSubmitting(true)
// Simulate API call
setTimeout(() => {
setIsSubmitting(false)
router.push("/dashboard/projects")
}, 1500)
}
return (
<div className="space-y-6">
<div className="flex items-center gap-2">
<Button variant="outline" size="icon" asChild>
<Link href="/dashboard/projects">
<ArrowLeft className="h-4 w-4" />
</Link>
</Button>
<h1 className="text-2xl font-bold"></h1>
</div>
<form onSubmit={handleSubmit}>
<Card>
<CardHeader>
<CardTitle></CardTitle>
<CardDescription></CardDescription>
</CardHeader>
<CardContent className="space-y-6">
<div className="space-y-2">
<Label htmlFor="projectName"></Label>
<Input id="projectName" placeholder="请输入项目名称" required />
</div>
<div className="grid gap-6 md:grid-cols-2">
<div className="space-y-2">
<Label htmlFor="account"></Label>
<Input id="account" placeholder="请输入账号" required />
</div>
<div className="space-y-2">
<Label htmlFor="status"></Label>
<Select value={status} onValueChange={setStatus}>
<SelectTrigger>
<SelectValue placeholder="请选择状态" />
</SelectTrigger>
<SelectContent>
<SelectItem value="1"></SelectItem>
<SelectItem value="0"></SelectItem>
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="password"></Label>
<Input id="password" type="password" placeholder="请设置初始密码" required />
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword"></Label>
<Input id="confirmPassword" type="password" placeholder="请再次输入密码" required />
</div>
</div>
<div className="grid gap-6 md:grid-cols-2">
<div className="space-y-2">
<Label htmlFor="realName"></Label>
<Input id="realName" placeholder="请输入真实姓名" required />
</div>
<div className="space-y-2">
<Label htmlFor="nickname"></Label>
<Input id="nickname" placeholder="请输入昵称" required />
</div>
</div>
<div className="space-y-2">
<Label></Label>
<div className="space-y-3">
{devices.map((device, index) => (
<div key={device.id} className="flex items-center gap-2">
<Input
placeholder={`设备 ${index + 1} 名称`}
value={device.name}
onChange={(e) => handleDeviceChange(device.id, e.target.value)}
/>
{devices.length > 1 && (
<Button type="button" variant="outline" size="icon" onClick={() => handleRemoveDevice(device.id)}>
<Trash className="h-4 w-4" />
</Button>
)}
</div>
))}
<Button type="button" variant="outline" onClick={handleAddDevice} className="flex items-center gap-1">
<Plus className="h-4 w-4" />
</Button>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="description"></Label>
<Textarea id="description" placeholder="请输入项目介绍(选填)" rows={4} />
</div>
</CardContent>
<CardFooter className="flex justify-end gap-2">
<Button variant="outline" asChild>
<Link href="/dashboard/projects"></Link>
</Button>
<Button type="submit" disabled={isSubmitting}>
{isSubmitting ? "创建中..." : "创建项目"}
</Button>
</CardFooter>
</Card>
</form>
</div>
)
}