Files
ThriveX-Admin/src/pages/Work/index.tsx

93 lines
3.7 KiB
TypeScript
Raw Normal View History

2024-10-06 20:45:24 +08:00
import { useEffect, useState } from "react";
2025-01-11 23:26:36 +08:00
import { Card, Spin } from "antd";
import { getLinkListAPI } from '@/api/Web';
import { getCommentListAPI } from "@/api/Comment";
import { getWallListAPI } from "@/api/Wall";
2024-09-25 14:25:10 +08:00
2024-10-06 20:45:24 +08:00
import Title from "@/components/Title";
import comment from './image/comment.svg';
import info from './image/message.svg';
import link from './image/link.svg';
2024-09-24 14:34:54 +08:00
2024-10-07 12:06:03 +08:00
import Empty from "@/components/Empty";
2025-01-11 23:26:36 +08:00
import List from "./components/List";
2024-10-15 13:27:54 +08:00
2024-10-06 20:45:24 +08:00
type Menu = "comment" | "link" | "wall";
2025-01-11 23:26:36 +08:00
export default () => {
const [loading, setLoading] = useState(false)
2024-10-18 15:42:17 +08:00
2024-12-10 13:00:38 +08:00
const activeSty = "bg-[#f9f9ff] dark:bg-[#3c5370] text-primary";
2024-10-07 12:06:03 +08:00
const [active, setActive] = useState<Menu>("comment");
2024-10-06 20:45:24 +08:00
const [commentList, setCommentList] = useState<any[]>([]);
const [linkList, setLinkList] = useState<any[]>([]);
const [wallList, setWallList] = useState<any[]>([]);
2024-10-18 15:14:58 +08:00
// 重新获取最新数据
2024-10-06 20:45:24 +08:00
const fetchData = async (type: Menu) => {
2025-01-11 23:26:36 +08:00
try {
if (type === "comment") {
const { data } = await getCommentListAPI({ query: { status: 0 }, pattern: "list" });
setCommentList(data);
} else if (type === "link") {
const { data } = await getLinkListAPI({ query: { status: 0 } });
setLinkList(data);
} else if (type === "wall") {
const { data } = await getWallListAPI({ query: { status: 0 } });
setWallList(data);
}
} catch (error) {
setLoading(false)
2024-10-06 20:45:24 +08:00
}
2025-01-11 23:26:36 +08:00
setLoading(false)
2024-10-06 20:45:24 +08:00
};
2024-09-25 14:25:10 +08:00
useEffect(() => {
2025-01-11 23:26:36 +08:00
setLoading(true)
2024-10-06 20:45:24 +08:00
fetchData(active);
}, [active]);
2024-10-07 12:06:03 +08:00
const renderList = (list: any[], type: Menu) => {
if (list.length === 0) {
return <Empty />;
}
return list.map(item => (
2025-01-11 23:26:36 +08:00
<List key={item.id} item={item} type={type} fetchData={(type) => fetchData(type)} />
2024-10-07 12:06:03 +08:00
));
};
2024-09-24 14:34:54 +08:00
return (
<>
<Title value="工作台" />
2024-10-07 12:06:03 +08:00
2025-01-11 23:26:36 +08:00
<Spin spinning={loading}>
<Card className="mt-2 min-h-[calc(100vh-180px)]">
<div className="flex flex-col md:flex-row w-full">
<div className="w-full min-w-[200px] md:w-2/12 md:min-h-96 mb-5 md:mb-0 pr-4 md:border-b-transparent md:border-r border-[#eee] dark:border-strokedark">
<ul className="space-y-1">
{(["comment", "link", "wall"] as Menu[]).map((menu) => (
<li
key={menu}
className={`flex items-center w-full py-3 px-4 hover:bg-[#f9f9ff] dark:hover:bg-[#3c5370] hover:text-primary ${active === menu ? activeSty : ''} rounded-md text-base cursor-pointer transition-colors`}
onClick={() => setActive(menu)}
>
<img src={menu === "comment" ? comment : menu === "link" ? link : info} alt="" className="w-8 mr-4" />
<span>{menu === "comment" ? "评论" : menu === "link" ? "友联" : "留言"}</span>
</li>
))}
</ul>
</div>
<div className="w-full md:w-10/12 md:pl-6 py-4 space-y-10">
{active === "link" && renderList(linkList, "link")}
{active === "comment" && renderList(commentList, "comment")}
{active === "wall" && renderList(wallList, "wall")}
</div>
2024-09-24 14:34:54 +08:00
</div>
2025-01-11 23:26:36 +08:00
</Card>
</Spin>
2024-09-24 14:34:54 +08:00
</>
2024-10-06 20:45:24 +08:00
);
2025-01-11 23:26:36 +08:00
}