ai-bot/app/admin/(default)/dashboard/article/page.tsx

82 lines
3.0 KiB
TypeScript
Raw Normal View History

2025-02-07 19:02:22 +08:00
"use client"
2025-03-03 18:37:04 +08:00
import { Button, Card, Image, Popconfirm, Space, Table } from "antd";
2025-02-07 19:02:22 +08:00
import '@ant-design/v5-patch-for-react-19';
2025-02-10 19:20:12 +08:00
import { useRouter } from "next/navigation";
import { useAntdTable } from "ahooks";
2025-03-03 18:37:04 +08:00
import { deleteArticle, getArticleList } from "@/app/_lib/data/article";
import { PICTURE_PREFIX } from "@/app/_lib/utils";
2025-02-07 19:02:22 +08:00
export default function Page() {
2025-02-07 19:02:22 +08:00
const router = useRouter()
2025-03-03 18:37:04 +08:00
const { tableProps, refresh } = useAntdTable(({ current, pageSize }) => {
return getArticleList({ page: current, pageSize })
})
return (
2025-02-10 19:20:12 +08:00
<Card title="文章管理" extra={
<Space>
<Button onClick={() => refresh()}></Button>
<Button type="primary" onClick={() => {
router.push("/admin/dashboard/article/detail")
}} >
</Button>
</Space>
}>
2025-02-07 19:02:22 +08:00
<Table
2025-02-10 19:20:12 +08:00
{...tableProps}
rowKey="_id"
2025-02-07 19:02:22 +08:00
columns={[
{
title: '标题',
dataIndex: 'title',
},
{
2025-02-10 19:20:12 +08:00
title: '副标题',
dataIndex: 'description',
2025-02-07 19:02:22 +08:00
},
2025-02-10 19:20:12 +08:00
2025-02-07 19:02:22 +08:00
{
2025-02-10 19:20:12 +08:00
title: "封面",
2025-03-03 18:37:04 +08:00
dataIndex: "cover",
2025-02-10 19:20:12 +08:00
render: (_, item) => (
<>
2025-03-03 18:37:04 +08:00
<Image src={item.cover.startsWith('http') ? item.cover : PICTURE_PREFIX + item.cover} width={70} alt="" ></Image>
2025-02-10 19:20:12 +08:00
</>
)
2025-02-07 19:02:22 +08:00
},
2025-03-03 18:37:04 +08:00
{
title: '网址',
dataIndex: 'link',
width: 100
},
2025-02-07 19:02:22 +08:00
{
title: '操作',
render: (_, row) => (
<Space>
2025-02-10 19:20:12 +08:00
<Button type="primary" onClick={() => {
router.push(`/admin/dashboard/article/detail/${row._id}`)
}} ></Button>
2025-03-03 18:37:04 +08:00
<Popconfirm
title="确认删除?"
okText="Yes"
cancelText="No"
onConfirm={() => {
deleteArticle(row._id).then(() => {
refresh()
})
}}
>
<Button type="primary" danger
></Button>
</Popconfirm>
2025-02-07 19:02:22 +08:00
</Space>
)
}
]}
2025-03-03 18:37:04 +08:00
></Table >
</Card >
)
}