-
- Menu
-
+ {routes.map((group, index) => (
+
+
+ {group.group}
+
-
- -
-
-
- 仪表盘
-
-
+
+ {group.list.map((item, subIndex) => (
+ item.subMenu ? (
+
+ {(handleClick, open) => (
+
+ {
+ e.preventDefault();
+ sidebarExpanded ? handleClick() : setSidebarExpanded(true);
+ }}
+ >
+ {item.icon}
+ {item.name}
+
+
- -
-
-
- 创作
-
-
-
-
- {(handleClick, open) => {
- return (
-
+
+
+ {item.subMenu.map((subItem, subSubIndex) => (
+ -
+
+ 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
+ (isActive && '!text-white')
+ }
+ >
+ {subItem.name}
+
+
+ ))}
+
+
+
+ )}
+
+ ) : (
+ -
{
- e.preventDefault();
-
- sidebarExpanded
- ? handleClick()
- : setSidebarExpanded(true);
- }}
+ to={item.to}
+ className={`${sidebarItemSty} ${pathname.includes(item.path) && sidebarItemActiveSty}`}
>
-
- 管理
-
+ {item.icon}
+ {item.name}
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 文章管理
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 标签管理
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 评论管理
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 分类管理
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 网站管理
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 轮播图管理
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 用户管理
-
-
-
- -
-
- 'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
- (isActive && '!text-white')
- }
- >
- 角色管理
-
-
-
-
- {/* */}
-
- );
- }}
-
-
- -
-
-
- 权限
-
-
-
- -
-
-
- 系统
-
-
-
-
-
-
-
- New
-
-
-
- -
-
-
- 订阅中心
-
-
-
- -
-
-
- 文件系统
-
-
-
- -
-
-
- 数据可视化
-
-
-
- -
-
-
- 更新日志
-
-
-
-
+
+ )
+ ))}
+
+
+ ))}