93 lines
3.8 KiB
TypeScript
93 lines
3.8 KiB
TypeScript
|
|
import { getServerSession } from "next-auth/next"
|
|||
|
|
import { redirect } from "next/navigation"
|
|||
|
|
import { prisma } from "@//app/lib/prisma"
|
|||
|
|
import Link from "next/link"
|
|||
|
|
import DeleteNewsButton from "./DeleteNewsButton"
|
|||
|
|
|
|||
|
|
export default async function AdminNewsPage() {
|
|||
|
|
const session = await getServerSession()
|
|||
|
|
|
|||
|
|
if (!session) {
|
|||
|
|
redirect("/admin/login")
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const news = await prisma.news.findMany({
|
|||
|
|
orderBy: { createdAt: "desc" },
|
|||
|
|
})
|
|||
|
|
|
|||
|
|
return (
|
|||
|
|
<div className="min-h-screen bg-gray-50">
|
|||
|
|
<nav className="bg-white border-b border-gray-200">
|
|||
|
|
<div className="max-w-7xl mx-auto px-6 py-4 flex items-center justify-between">
|
|||
|
|
<h1 className="text-xl font-bold text-gray-900">新闻管理</h1>
|
|||
|
|
<div className="flex items-center gap-4">
|
|||
|
|
<Link href="/admin" className="text-sm text-gray-600 hover:text-gray-900">
|
|||
|
|
返回仪表盘
|
|||
|
|
</Link>
|
|||
|
|
<Link href="/admin/news/new" className="bg-blue-600 text-white px-4 py-2 rounded-lg text-sm hover:bg-blue-700">
|
|||
|
|
添加新闻
|
|||
|
|
</Link>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</nav>
|
|||
|
|
|
|||
|
|
<main className="max-w-7xl mx-auto px-6 py-8">
|
|||
|
|
<div className="bg-white rounded-2xl shadow-sm border border-gray-200 overflow-hidden">
|
|||
|
|
<table className="w-full">
|
|||
|
|
<thead className="bg-gray-50 border-b border-gray-200">
|
|||
|
|
<tr>
|
|||
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">标题</th>
|
|||
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">类型</th>
|
|||
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">状态</th>
|
|||
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">日期</th>
|
|||
|
|
<th className="px-6 py-3 text-right text-xs font-medium text-gray-500 uppercase">操作</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody className="divide-y divide-gray-200">
|
|||
|
|
{news.map((item) => (
|
|||
|
|
<tr key={item.id} className="hover:bg-gray-50">
|
|||
|
|
<td className="px-6 py-4">
|
|||
|
|
<div className="font-medium text-gray-900">{item.title}</div>
|
|||
|
|
</td>
|
|||
|
|
<td className="px-6 py-4 text-sm text-gray-600">
|
|||
|
|
{item.type}
|
|||
|
|
</td>
|
|||
|
|
<td className="px-6 py-4">
|
|||
|
|
<span className={`inline-flex px-2 py-1 text-xs font-medium rounded-full ${
|
|||
|
|
item.published
|
|||
|
|
? "bg-green-100 text-green-700"
|
|||
|
|
: "bg-yellow-100 text-yellow-700"
|
|||
|
|
}`}>
|
|||
|
|
{item.published ? "已发布" : "草稿"}
|
|||
|
|
</span>
|
|||
|
|
</td>
|
|||
|
|
<td className="px-6 py-4 text-sm text-gray-600">
|
|||
|
|
{new Date(item.createdAt).toLocaleDateString("zh-CN")}
|
|||
|
|
</td>
|
|||
|
|
<td className="px-6 py-4 text-right">
|
|||
|
|
<div className="flex items-center justify-end gap-2">
|
|||
|
|
<Link
|
|||
|
|
href={`/admin/news/${item.id}/edit`}
|
|||
|
|
className="text-blue-600 hover:text-blue-700 text-sm"
|
|||
|
|
>
|
|||
|
|
编辑
|
|||
|
|
</Link>
|
|||
|
|
<DeleteNewsButton id={item.id} />
|
|||
|
|
</div>
|
|||
|
|
</td>
|
|||
|
|
</tr>
|
|||
|
|
))}
|
|||
|
|
</tbody>
|
|||
|
|
</table>
|
|||
|
|
|
|||
|
|
{news.length === 0 && (
|
|||
|
|
<div className="text-center py-12 text-gray-500">
|
|||
|
|
暂无新闻,<Link href="/admin/news/new" className="text-blue-600">点击添加</Link>
|
|||
|
|
</div>
|
|||
|
|
)}
|
|||
|
|
</div>
|
|||
|
|
</main>
|
|||
|
|
</div>
|
|||
|
|
)
|
|||
|
|
}
|