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

83 lines
3.0 KiB
TypeScript

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