diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeBuilder.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeBuilder.java new file mode 100644 index 000000000..652582aff --- /dev/null +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeBuilder.java @@ -0,0 +1,101 @@ +package com.ruoyi.common.core.domain; + +import com.ruoyi.common.utils.StringUtils; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.function.Function; +import java.util.stream.Collectors; + +/** + * @author likun5 + */ +public class TreeBuilder +{ + + /** + * 构建前端所需要下拉树结构 + * + * @param treeNodes 部门列表 + * @return 下拉树结构列表 + */ + public List buildTreeSelect(List treeNodes, Function getPkMethod, Function toTreeSelectMethod) + { + List deptTrees = buildTree(treeNodes, getPkMethod); + return deptTrees.stream().map(toTreeSelectMethod).collect(Collectors.toList()); + } + + /** + * 构建前端所需要树结构 + * + * @param treeNodes 部门列表 + * @return 树结构列表 + */ + public List buildTree(List treeNodes, Function getPkMethod) + { + List returnList = new ArrayList(); + List tempList = new ArrayList(); + for (T dept : treeNodes) + { + tempList.add(getPkMethod.apply(dept)); + } + for (Iterator iterator = treeNodes.iterator(); iterator.hasNext(); ) + { + T dept = (T) iterator.next(); + // 如果是顶级节点, 遍历该父节点的所有子节点 + if (!tempList.contains(dept.getParentId())) + { + recursionFn(treeNodes, dept, getPkMethod); + returnList.add(dept); + } + } + if (returnList.isEmpty()) + { + returnList = treeNodes; + } + return returnList; + } + + /** + * 递归列表 + */ + public void recursionFn(List list, T t, Function getPkMethod) + { + // 得到子节点列表 + List childList = getChildList(list, t, getPkMethod); + t.setChildren(childList); + for (T tChild : childList) + { + if (hasChild(list, tChild, getPkMethod)) + { + recursionFn(list, tChild, getPkMethod); + } + } + } + + /** + * 得到子节点列表 + */ + private List getChildList(List list, T t, Function getPkMethod) + { + List tlist = new ArrayList(); + Iterator it = list.iterator(); + while (it.hasNext()) + { + T n = (T) it.next(); + if (StringUtils.isNotNull(n.getParentId()) && n.getParentId().longValue() == getPkMethod.apply(t).longValue()) { + tlist.add(n); + } + } + return tlist; + } + + /** + * 判断是否有子节点 + */ + private boolean hasChild(List list, T t, Function getPkMethod) + { + return getChildList(list, t, getPkMethod).size() > 0 ? true : false; + } + +} diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeEntity.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeEntity.java index 171f04c9b..aec5bfb69 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeEntity.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeEntity.java @@ -1,5 +1,6 @@ package com.ruoyi.common.core.domain; +import java.io.Serializable; import java.util.ArrayList; import java.util.List; @@ -8,7 +9,7 @@ import java.util.List; * * @author ruoyi */ -public class TreeEntity extends BaseEntity +public abstract class TreeEntity extends BaseEntity implements Serializable { private static final long serialVersionUID = 1L; @@ -25,7 +26,7 @@ public class TreeEntity extends BaseEntity private String ancestors; /** 子部门 */ - private List children = new ArrayList<>(); + private List children = new ArrayList<>(); public String getParentName() { @@ -67,13 +68,16 @@ public class TreeEntity extends BaseEntity this.ancestors = ancestors; } - public List getChildren() + public List getChildren() { return children; } - public void setChildren(List children) + public void setChildren(List children) { this.children = children; } + + public abstract TreeSelect toTreeSelect(T entity); + } diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeSelect.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeSelect.java index 4a59e402a..0ffc0c8b1 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeSelect.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/TreeSelect.java @@ -1,11 +1,8 @@ package com.ruoyi.common.core.domain; +import com.fasterxml.jackson.annotation.JsonInclude; import java.io.Serializable; import java.util.List; -import java.util.stream.Collectors; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.ruoyi.common.core.domain.entity.SysDept; -import com.ruoyi.common.core.domain.entity.SysMenu; /** * Treeselect树结构实体类 @@ -31,20 +28,6 @@ public class TreeSelect implements Serializable } - public TreeSelect(SysDept dept) - { - this.id = dept.getDeptId(); - this.label = dept.getDeptName(); - this.children = dept.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList()); - } - - public TreeSelect(SysMenu menu) - { - this.id = menu.getMenuId(); - this.label = menu.getMenuName(); - this.children = menu.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList()); - } - public Long getId() { return id; diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDept.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDept.java index 693461b9f..998021a39 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDept.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDept.java @@ -2,20 +2,23 @@ package com.ruoyi.common.core.domain.entity; import java.util.ArrayList; import java.util.List; +import java.util.stream.Collectors; import javax.validation.constraints.Email; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; +import com.ruoyi.common.core.domain.TreeEntity; +import com.ruoyi.common.core.domain.TreeSelect; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; -import com.ruoyi.common.core.domain.BaseEntity; + /** * 部门表 sys_dept * * @author ruoyi */ -public class SysDept extends BaseEntity +public class SysDept extends TreeEntity { private static final long serialVersionUID = 1L; @@ -181,6 +184,16 @@ public class SysDept extends BaseEntity this.children = children; } + @Override + public TreeSelect toTreeSelect(SysDept entity) + { + TreeSelect treeSelect = new TreeSelect(); + treeSelect.setId(entity.getDeptId()); + treeSelect.setLabel(entity.getDeptName()); + treeSelect.setChildren(entity.getChildren().stream().map(o->o.toTreeSelect(o)).collect(Collectors.toList())); + return treeSelect; + } + @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysMenu.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysMenu.java index 229f41803..6dc48411e 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysMenu.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysMenu.java @@ -2,9 +2,12 @@ package com.ruoyi.common.core.domain.entity; import java.util.ArrayList; import java.util.List; +import java.util.stream.Collectors; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; +import com.ruoyi.common.core.domain.TreeEntity; +import com.ruoyi.common.core.domain.TreeSelect; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.core.domain.BaseEntity; @@ -14,7 +17,7 @@ import com.ruoyi.common.core.domain.BaseEntity; * * @author ruoyi */ -public class SysMenu extends BaseEntity +public class SysMenu extends TreeEntity { private static final long serialVersionUID = 1L; @@ -232,7 +235,16 @@ public class SysMenu extends BaseEntity { this.children = children; } - + + @Override + public TreeSelect toTreeSelect(SysMenu entity) { + TreeSelect treeSelect = new TreeSelect(); + treeSelect.setId(entity.getMenuId()); + treeSelect.setLabel(entity.getMenuName()); + treeSelect.setChildren(entity.getChildren().stream().map(o->o.toTreeSelect(o)).collect(Collectors.toList())); + return treeSelect; + } + @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java index 32ec0077f..b299b1ecd 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java @@ -1,13 +1,11 @@ package com.ruoyi.system.service.impl; -import java.util.ArrayList; -import java.util.Iterator; import java.util.List; -import java.util.stream.Collectors; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.common.annotation.DataScope; import com.ruoyi.common.constant.UserConstants; +import com.ruoyi.common.core.domain.TreeBuilder; import com.ruoyi.common.core.domain.TreeSelect; import com.ruoyi.common.core.domain.entity.SysDept; import com.ruoyi.common.core.domain.entity.SysRole; @@ -57,26 +55,8 @@ public class SysDeptServiceImpl implements ISysDeptService @Override public List buildDeptTree(List depts) { - List returnList = new ArrayList(); - List tempList = new ArrayList(); - for (SysDept dept : depts) - { - tempList.add(dept.getDeptId()); - } - for (SysDept dept : depts) - { - // 如果是顶级节点, 遍历该父节点的所有子节点 - if (!tempList.contains(dept.getParentId())) - { - recursionFn(depts, dept); - returnList.add(dept); - } - } - if (returnList.isEmpty()) - { - returnList = depts; - } - return returnList; + TreeBuilder treeBuilder = new TreeBuilder<>(); + return treeBuilder.buildTree(depts,SysDept::getDeptId); } /** @@ -88,8 +68,8 @@ public class SysDeptServiceImpl implements ISysDeptService @Override public List buildDeptTreeSelect(List depts) { - List deptTrees = buildDeptTree(depts); - return deptTrees.stream().map(TreeSelect::new).collect(Collectors.toList()); + TreeBuilder treeBuilder = new TreeBuilder<>(); + return treeBuilder.buildTreeSelect(depts,SysDept::getDeptId,o->o.toTreeSelect(o)); } /** @@ -284,46 +264,4 @@ public class SysDeptServiceImpl implements ISysDeptService return deptMapper.deleteDeptById(deptId); } - /** - * 递归列表 - */ - private void recursionFn(List list, SysDept t) - { - // 得到子节点列表 - List childList = getChildList(list, t); - t.setChildren(childList); - for (SysDept tChild : childList) - { - if (hasChild(list, tChild)) - { - recursionFn(list, tChild); - } - } - } - - /** - * 得到子节点列表 - */ - private List getChildList(List list, SysDept t) - { - List tlist = new ArrayList(); - Iterator it = list.iterator(); - while (it.hasNext()) - { - SysDept n = (SysDept) it.next(); - if (StringUtils.isNotNull(n.getParentId()) && n.getParentId().longValue() == t.getDeptId().longValue()) - { - tlist.add(n); - } - } - return tlist; - } - - /** - * 判断是否有子节点 - */ - private boolean hasChild(List list, SysDept t) - { - return getChildList(list, t).size() > 0; - } } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java index 37dcc1977..43a6ac301 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java @@ -7,11 +7,11 @@ import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Set; -import java.util.stream.Collectors; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.common.constant.Constants; import com.ruoyi.common.constant.UserConstants; +import com.ruoyi.common.core.domain.TreeBuilder; import com.ruoyi.common.core.domain.TreeSelect; import com.ruoyi.common.core.domain.entity.SysMenu; import com.ruoyi.common.core.domain.entity.SysRole; @@ -201,27 +201,8 @@ public class SysMenuServiceImpl implements ISysMenuService @Override public List buildMenuTree(List menus) { - List returnList = new ArrayList(); - List tempList = new ArrayList(); - for (SysMenu dept : menus) - { - tempList.add(dept.getMenuId()); - } - for (Iterator iterator = menus.iterator(); iterator.hasNext();) - { - SysMenu menu = (SysMenu) iterator.next(); - // 如果是顶级节点, 遍历该父节点的所有子节点 - if (!tempList.contains(menu.getParentId())) - { - recursionFn(menus, menu); - returnList.add(menu); - } - } - if (returnList.isEmpty()) - { - returnList = menus; - } - return returnList; + TreeBuilder treeBuilder =new TreeBuilder<>(); + return treeBuilder.buildTree(menus,SysMenu::getMenuId); } /** @@ -233,8 +214,8 @@ public class SysMenuServiceImpl implements ISysMenuService @Override public List buildMenuTreeSelect(List menus) { - List menuTrees = buildMenuTree(menus); - return menuTrees.stream().map(TreeSelect::new).collect(Collectors.toList()); + TreeBuilder treeBuilder = new TreeBuilder<>(); + return treeBuilder.buildTreeSelect(menus, SysMenu::getMenuId, o->o.toTreeSelect(o)); } /** @@ -441,6 +422,7 @@ public class SysMenuServiceImpl implements ISysMenuService */ public List getChildPerms(List list, int parentId) { + TreeBuilder builder = new TreeBuilder<>(); List returnList = new ArrayList(); for (Iterator iterator = list.iterator(); iterator.hasNext();) { @@ -448,59 +430,13 @@ public class SysMenuServiceImpl implements ISysMenuService // 一、根据传入的某个父节点ID,遍历该父节点的所有子节点 if (t.getParentId() == parentId) { - recursionFn(list, t); + builder.recursionFn(list, t, SysMenu::getMenuId); returnList.add(t); } } return returnList; } - /** - * 递归列表 - * - * @param list - * @param t - */ - private void recursionFn(List list, SysMenu t) - { - // 得到子节点列表 - List childList = getChildList(list, t); - t.setChildren(childList); - for (SysMenu tChild : childList) - { - if (hasChild(list, tChild)) - { - recursionFn(list, tChild); - } - } - } - - /** - * 得到子节点列表 - */ - private List getChildList(List list, SysMenu t) - { - List tlist = new ArrayList(); - Iterator it = list.iterator(); - while (it.hasNext()) - { - SysMenu n = (SysMenu) it.next(); - if (n.getParentId().longValue() == t.getMenuId().longValue()) - { - tlist.add(n); - } - } - return tlist; - } - - /** - * 判断是否有子节点 - */ - private boolean hasChild(List list, SysMenu t) - { - return getChildList(list, t).size() > 0; - } - /** * 内链域名特殊字符替换 *