2023-03-09 17:56:38 +08:00

109 lines
2.5 KiB
TypeScript

import React, { useEffect } from "react";
import {
MailOutlined,
SettingOutlined,
AppstoreOutlined,
} from "@ant-design/icons";
import { Menu } from "antd";
//导出路由跳转hooks函数
import { useNavigate, Link, useLocation } from "react-router-dom";
import styles from "./index.module.less";
import logo from "../../assets/logo.png";
function getItem(label: any, key: any, icon: any, children: any, type: any) {
return {
key,
icon,
children,
label,
type,
};
}
const items = [
getItem("首页概览", "/", <SettingOutlined />, null, null),
getItem("分类管理", "/resource-category", <MailOutlined />, null, null),
getItem(
"资源管理",
"3",
<MailOutlined />,
[
getItem("视频", "/videos", null, null, null),
getItem("图片", "/images", null, null, null),
],
null
),
getItem("课程中心", "/course", <AppstoreOutlined />, null, null),
getItem(
"学员管理",
"4",
<AppstoreOutlined />,
[
getItem("学员", "/member", null, null, null),
getItem("部门", "/department", null, null, null),
],
null
),
getItem(
"系统设置",
"5",
<SettingOutlined />,
[
getItem("管理人员", "/system/administrator", null, null, null),
getItem("角色配置", "/system/adminroles", null, null, null),
],
null
),
];
const children2Parent: any = {
"/videos": ["3"],
"/images": ["3"],
"/member": ["4"],
"/department": ["4"],
"/system/administrator": ["5"],
"/system/adminroles": ["5"],
};
export const LeftMenu: React.FC = () => {
const location = useLocation();
const navigate = useNavigate();
let defaultSelectedKeys: string[] = [location.pathname];
let defaultOpenKeys: string[] = [];
if (children2Parent[location.pathname]) {
defaultOpenKeys = children2Parent[location.pathname];
}
const onClick = (e: any) => {
navigate(e.key);
};
useEffect(() => {}, [location]);
return (
<div className={styles["left-menu"]}>
<div
style={{ textDecoration: "none", cursor: "pointer" }}
onClick={() => {
window.location.href = "/";
}}
>
<img src={logo} className={styles["App-logo"]} />
</div>
<Menu
onClick={onClick}
style={{
width: 200,
background: "#ffffff",
}}
defaultSelectedKeys={defaultSelectedKeys}
defaultOpenKeys={defaultOpenKeys}
mode="inline"
items={items}
/>
</div>
);
};