186 lines
6.4 KiB
TypeScript
186 lines
6.4 KiB
TypeScript
"use client"
|
|
|
|
import { useState, useEffect } from "react"
|
|
import Link from "next/link"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
|
|
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "@/components/ui/dropdown-menu"
|
|
import { Plus, Search, MoreHorizontal, Edit, Eye, Trash, ChevronLeft, ChevronRight } from "lucide-react"
|
|
import { toast } from "sonner"
|
|
|
|
interface Project {
|
|
id: number
|
|
name: string
|
|
status: number
|
|
tenantId: number
|
|
companyId: number
|
|
memo: string | null
|
|
userCount: number
|
|
createTime: string
|
|
}
|
|
|
|
export default function ProjectsPage() {
|
|
const [searchTerm, setSearchTerm] = useState("")
|
|
const [projects, setProjects] = useState<Project[]>([])
|
|
const [isLoading, setIsLoading] = useState(true)
|
|
const [currentPage, setCurrentPage] = useState(1)
|
|
const [totalPages, setTotalPages] = useState(1)
|
|
const [pageSize] = useState(10)
|
|
|
|
// 获取项目列表
|
|
useEffect(() => {
|
|
const fetchProjects = async () => {
|
|
setIsLoading(true)
|
|
try {
|
|
const response = await fetch(`http://yishi.com/company/list?page=${currentPage}&limit=${pageSize}`)
|
|
const data = await response.json()
|
|
|
|
if (data.code === 200) {
|
|
setProjects(data.data.list)
|
|
setTotalPages(Math.ceil(data.data.total / pageSize))
|
|
} else {
|
|
toast.error(data.msg || "获取项目列表失败")
|
|
}
|
|
} catch (error) {
|
|
toast.error("获取项目列表失败")
|
|
} finally {
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
|
|
fetchProjects()
|
|
}, [currentPage, pageSize])
|
|
|
|
// 切换页码
|
|
const handlePageChange = (page: number) => {
|
|
if (page >= 1 && page <= totalPages) {
|
|
setCurrentPage(page)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="flex justify-between">
|
|
<h1 className="text-2xl font-bold">项目列表</h1>
|
|
<Button asChild>
|
|
<Link href="/dashboard/projects/new">
|
|
<Plus className="mr-2 h-4 w-4" /> 新建项目
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-2">
|
|
<div className="relative flex-1">
|
|
<Search className="absolute left-2.5 top-2.5 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
type="search"
|
|
placeholder="搜索项目名称..."
|
|
className="pl-8"
|
|
value={searchTerm}
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="rounded-md border">
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow>
|
|
<TableHead>项目名称</TableHead>
|
|
<TableHead>状态</TableHead>
|
|
<TableHead className="text-center">用户数量</TableHead>
|
|
<TableHead className="text-center">创建时间</TableHead>
|
|
<TableHead className="text-right">操作</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
{isLoading ? (
|
|
<TableRow>
|
|
<TableCell colSpan={5} className="h-24 text-center">
|
|
加载中...
|
|
</TableCell>
|
|
</TableRow>
|
|
) : projects.length > 0 ? (
|
|
projects.map((project) => (
|
|
<TableRow key={project.id}>
|
|
<TableCell className="font-medium">{project.name}</TableCell>
|
|
<TableCell>{project.status === 1 ? '启用' : '禁用'}</TableCell>
|
|
<TableCell className="text-center">{project.userCount}</TableCell>
|
|
<TableCell className="text-center">{project.createTime}</TableCell>
|
|
<TableCell className="text-right">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="ghost" size="icon">
|
|
<MoreHorizontal className="h-4 w-4" />
|
|
<span className="sr-only">打开菜单</span>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem asChild>
|
|
<Link href={`/dashboard/projects/${project.id}`}>
|
|
<Eye className="mr-2 h-4 w-4" /> 查看详情
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem asChild>
|
|
<Link href={`/dashboard/projects/${project.id}/edit`}>
|
|
<Edit className="mr-2 h-4 w-4" /> 编辑项目
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem className="text-destructive">
|
|
<Trash className="mr-2 h-4 w-4" /> 删除项目
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</TableCell>
|
|
</TableRow>
|
|
))
|
|
) : (
|
|
<TableRow>
|
|
<TableCell colSpan={5} className="h-24 text-center">
|
|
未找到项目
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
|
|
{/* 分页控件 */}
|
|
{!isLoading && projects.length > 0 && (
|
|
<div className="flex items-center justify-center gap-2">
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
onClick={() => handlePageChange(currentPage - 1)}
|
|
disabled={currentPage === 1}
|
|
>
|
|
<ChevronLeft className="h-4 w-4" />
|
|
</Button>
|
|
|
|
{Array.from({ length: totalPages }, (_, i) => i + 1).map((page) => (
|
|
<Button
|
|
key={page}
|
|
variant={page === currentPage ? "default" : "outline"}
|
|
size="icon"
|
|
onClick={() => handlePageChange(page)}
|
|
>
|
|
{page}
|
|
</Button>
|
|
))}
|
|
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
onClick={() => handlePageChange(currentPage + 1)}
|
|
disabled={currentPage === totalPages}
|
|
>
|
|
<ChevronRight className="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|