mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
This commit is contained in:
parent
088871d083
commit
312f7e4890
@ -109,7 +109,6 @@ public class AuthController {
|
|||||||
// 1.3 获得菜单列表
|
// 1.3 获得菜单列表
|
||||||
Set<Long> menuIds = permissionService.getRoleMenuListByRoleId(convertSet(roles, RoleDO::getId));
|
Set<Long> menuIds = permissionService.getRoleMenuListByRoleId(convertSet(roles, RoleDO::getId));
|
||||||
List<MenuDO> menuList = menuService.getMenuList(menuIds);
|
List<MenuDO> menuList = menuService.getMenuList(menuIds);
|
||||||
menuList.removeIf(menu -> !CommonStatusEnum.ENABLE.getStatus().equals(menu.getStatus())); // 移除禁用的菜单
|
|
||||||
|
|
||||||
// 2. 拼接结果返回
|
// 2. 拼接结果返回
|
||||||
return success(AuthConvert.INSTANCE.convert(user, roles, menuList));
|
return success(AuthConvert.INSTANCE.convert(user, roles, menuList));
|
||||||
|
@ -71,7 +71,7 @@ public class MenuController {
|
|||||||
"在多租户的场景下,会只返回租户所在套餐有的菜单")
|
"在多租户的场景下,会只返回租户所在套餐有的菜单")
|
||||||
public CommonResult<List<MenuSimpleRespVO>> getSimpleMenuList() {
|
public CommonResult<List<MenuSimpleRespVO>> getSimpleMenuList() {
|
||||||
List<MenuDO> list = menuService.getMenuListByTenant(
|
List<MenuDO> list = menuService.getMenuListByTenant(
|
||||||
new MenuListReqVO().setStatus(CommonStatusEnum.ENABLE.getStatus()));
|
new MenuListReqVO());
|
||||||
list.sort(Comparator.comparing(MenuDO::getSort));
|
list.sort(Comparator.comparing(MenuDO::getSort));
|
||||||
return success(BeanUtils.toBean(list, MenuSimpleRespVO.class));
|
return success(BeanUtils.toBean(list, MenuSimpleRespVO.class));
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package cn.iocoder.yudao.module.system.service.permission;
|
package cn.iocoder.yudao.module.system.service.permission;
|
||||||
|
|
||||||
import cn.hutool.core.collection.CollUtil;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.permission.vo.menu.MenuListReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.permission.vo.menu.MenuListReqVO;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.permission.vo.menu.MenuSaveVO;
|
import cn.iocoder.yudao.module.system.controller.admin.permission.vo.menu.MenuSaveVO;
|
||||||
@ -13,14 +14,15 @@ import com.google.common.annotations.VisibleForTesting;
|
|||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
import jakarta.annotation.Resource;
|
import jakarta.annotation.Resource;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.apache.commons.collections4.CollectionUtils;
|
||||||
import org.springframework.cache.annotation.CacheEvict;
|
import org.springframework.cache.annotation.CacheEvict;
|
||||||
import org.springframework.cache.annotation.Cacheable;
|
import org.springframework.cache.annotation.Cacheable;
|
||||||
import org.springframework.context.annotation.Lazy;
|
import org.springframework.context.annotation.Lazy;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import java.util.Collection;
|
import java.util.*;
|
||||||
import java.util.List;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
||||||
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertList;
|
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertList;
|
||||||
@ -106,12 +108,60 @@ public class MenuServiceImpl implements MenuService {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<MenuDO> getMenuListByTenant(MenuListReqVO reqVO) {
|
public List<MenuDO> getMenuListByTenant(MenuListReqVO reqVO) {
|
||||||
List<MenuDO> menus = getMenuList(reqVO);
|
// 查询所有菜单,并过滤掉关闭的节点
|
||||||
|
List<MenuDO> menus = filterClosedNodes(getMenuList(reqVO));
|
||||||
// 开启多租户的情况下,需要过滤掉未开通的菜单
|
// 开启多租户的情况下,需要过滤掉未开通的菜单
|
||||||
tenantService.handleTenantMenu(menuIds -> menus.removeIf(menu -> !CollUtil.contains(menuIds, menu.getId())));
|
tenantService.handleTenantMenu(menuIds -> menus.removeIf(menu -> !CollUtil.contains(menuIds, menu.getId())));
|
||||||
return menus;
|
return menus;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 过滤关闭的菜单节点及其子节点
|
||||||
|
*
|
||||||
|
* @param menuList 所有菜单列表
|
||||||
|
* @return 过滤后的菜单列表
|
||||||
|
*/
|
||||||
|
public List<MenuDO> filterClosedNodes(List<MenuDO> menuList) {
|
||||||
|
// 根据parentId快速查找子节点
|
||||||
|
Map<Long, List<MenuDO>> childrenMap = menuList.stream()
|
||||||
|
.collect(Collectors.groupingBy(MenuDO::getParentId));
|
||||||
|
|
||||||
|
// 所有关闭的节点ID
|
||||||
|
Set<Long> closedNodeIds = new HashSet<>();
|
||||||
|
|
||||||
|
// 标记所有关闭的节点
|
||||||
|
for (MenuDO menu : menuList) {
|
||||||
|
if (Objects.equals(menu.getStatus(), CommonStatusEnum.DISABLE.getStatus())) {
|
||||||
|
markClosedNodes(menu.getId(), childrenMap, closedNodeIds);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 过滤掉关闭的节点及其子节点
|
||||||
|
return menuList.stream()
|
||||||
|
.filter(menu -> !closedNodeIds.contains(menu.getId()))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 递归标记关闭的节点及其子节点
|
||||||
|
*
|
||||||
|
* @param nodeId 节点ID
|
||||||
|
* @param childrenMap 子节点Map
|
||||||
|
* @param closedNodeIds 关闭节点ID集合
|
||||||
|
*/
|
||||||
|
private void markClosedNodes(Long nodeId, Map<Long,
|
||||||
|
List<MenuDO>> childrenMap,
|
||||||
|
Set<Long> closedNodeIds) {
|
||||||
|
closedNodeIds.add(nodeId);
|
||||||
|
List<MenuDO> children = childrenMap.get(nodeId);
|
||||||
|
if (CollectionUtils.isNotEmpty(children)) {
|
||||||
|
for (MenuDO child : children) {
|
||||||
|
markClosedNodes(child.getId(), childrenMap, closedNodeIds);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<MenuDO> getMenuList(MenuListReqVO reqVO) {
|
public List<MenuDO> getMenuList(MenuListReqVO reqVO) {
|
||||||
return menuMapper.selectList(reqVO);
|
return menuMapper.selectList(reqVO);
|
||||||
@ -135,7 +185,7 @@ public class MenuServiceImpl implements MenuService {
|
|||||||
if (CollUtil.isEmpty(ids)) {
|
if (CollUtil.isEmpty(ids)) {
|
||||||
return Lists.newArrayList();
|
return Lists.newArrayList();
|
||||||
}
|
}
|
||||||
return menuMapper.selectBatchIds(ids);
|
return filterClosedNodes(menuMapper.selectBatchIds(ids));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user