当前位置:   article > 正文

React+Antd+tree实现树多选功能(选中项受控+支持模糊检索)_antd tree 模糊不区分大小写搜索

antd tree 模糊不区分大小写搜索

1、先上效果

树型控件,选中项形成一棵新的树,若父选中,子自动选中,子取消,父不取消,子选中,所有的父节点自动取消。同时支持模糊检索,会检索出所有包含该内容的关联节点。

2、环境准备

1、react18

2、antd 4+

3、代码实现

原理:利用antd的tree组件,可以通过设置Tree组件的checkable属性为true,启用了多选功能,当节点被选中或取消选中时,会触发onCheck事件,我们可以在该事件处理函数中更新checkedKeys状态 通过控制checkedKeys来实现你想要的选中,核心代码如下:

checkStrictly设置为true,表示子节点选择受控,

  1. <DirectoryTree
  2. ...
  3. checkable={checkable}
  4. expandedKeys={expandedKeys}
  5. treeData={treeData || []}
  6. checkedKeys: checkKeys,
  7. checkStrictly: true,
  8. onCheck: (selectedKeys: any, other) => {
  9. // 当前节点的所有下级子节点
  10. const childrenNodeKeys = getAllChildrenNodeKey(other?.node);
  11. const node: any = other?.node;
  12. if (other?.checked) {
  13. // 当前节点的所有上级父节点
  14. const parentKeys = Array.isArray(node?.parentId) ? node?.parentId : [];
  15. let currentSelectedKeys = [...selectedKeys?.checked, ...parentKeys, ...childrenNodeKeys].filter(
  16. (item: any, i: number, self: any): item is React.Key =>
  17. !!(item && self?.indexOf?.(item) === i),
  18. );
  19. setCheckKeys?.(currentSelectedKeys);
  20. onCheck?.(currentSelectedKeys)
  21. } else {
  22. const currentSelectedKeys = (selectedKeys?.checked || []).filter(((key: string) => !childrenNodeKeys.includes(key) && key !== node?.rowId))
  23. setCheckKeys(currentSelectedKeys);
  24. onCheck?.(currentSelectedKeys);
  25. }
  26. }
  27. />

 当前节点的所有下级子节点

  1. const getAllChildrenNodeKey = (node: any) => {
  2. const result: any = [];
  3. const getChildrenKey = (childrenList: any) => {
  4. if (childrenList && childrenList.length > 0) {
  5. childrenList.forEach((item: any) => {
  6. if (item?.rowId) {
  7. result.push(item?.rowId)
  8. }
  9. if (item?.children && item?.children.length > 0) {
  10. getChildrenKey(item?.children || []);
  11. }
  12. });
  13. }
  14. }
  15. getChildrenKey(node?.children || []);
  16. return result;
  17. }

tree属性如下:

allowDrop是否允许拖拽时放置在该节点({ dropNode, dropPosition }) => boolean-
autoExpandParent是否自动展开父节点booleanfalse
blockNode是否节点占据一行booleanfalse
checkable节点前添加 Checkbox 复选框booleanfalse
checkedKeys(受控)选中复选框的树节点(注意:父子节点有关联,如果传入父节点 key,则子节点自动选中;相应当子节点 key 都传入,父节点也自动选中。当设置 checkable 和 checkStrictly,它是一个有checkedhalfChecked属性的对象,并且父子节点的选中与否不再关联string[] | {checked: string[], halfChecked: string[]}[]
checkStrictlycheckable 状态下节点选择完全受控(父子节点选中状态不再关联)booleanfalse
defaultCheckedKeys默认选中复选框的树节点string[][]
defaultExpandAll默认展开所有树节点booleanfalse
defaultExpandedKeys默认展开指定的树节点string[][]
defaultExpandParent默认展开父节点booleantrue
defaultSelectedKeys默认选中的树节点string[][]
disabled将树禁用booleanfalse
draggable设置节点可拖拽,可以通过 icon: false 关闭拖拽提示图标boolean | ((node: DataNode) => boolean) | { icon?: React.ReactNode | false, nodeDraggable?: (node: DataNode) => boolean }falseconfig: 4.17.0
expandedKeys(受控)展开指定的树节点string[][]
fieldNames自定义节点 title、key、children 的字段object{ title: title, key: key, children: children }4.17.0
filterTreeNode按需筛选树节点(高亮),返回 truefunction(node)-
height设置虚拟滚动容器高度,设置后内部节点不再支持横向滚动number-
icon自定义树节点图标。ReactNode | (props) => ReactNode-
loadData异步加载数据function(node)-
loadedKeys(受控)已经加载的节点,需要配合 loadData 使用string[][]
multiple支持点选多个节点(节点本身)booleanfalse
rootStyle添加在 Tree 最外层的 styleCSSProperties-4.20.0
selectable是否可选中booleantrue
selectedKeys(受控)设置选中的树节点,多选需设置 multiple 为 truestring[]-
showIcon是否展示 TreeNode title 前的图标,没有默认样式,如设置为 true,需要自行定义图标相关样式booleanfalse
showLine是否展示连接线boolean | { showLeafIcon: ReactNode | ((props: AntTreeNodeProps) => ReactNode) }false
switcherIcon自定义树节点的展开/折叠图标ReactNode | ((props: AntTreeNodeProps) => ReactNode)-renderProps: 4.20.0
titleRender自定义渲染节点(nodeData) => ReactNode-4.5.0
treeDatatreeNodes 数据,如果设置则不需要手动构造 TreeNode 节点(key 在整个树范围内唯一)array<{key, title, children, [disabled, selectable]}>-
virtual设置 false 时关闭虚拟滚动booleantrue4.1.0
onCheck点击复选框触发function(checkedKeys, e:{checked: boolean, checkedNodes, node, event, halfCheckedKeys})-
onDragEnddragend 触发时调用function({event, node})-
onDragEnterdragenter 触发时调用function({event, node, expandedKeys})-
onDragLeavedragleave 触发时调用function({event, node})-
onDragOverdragover 触发时调用function({event, node})-
onDragStart开始拖拽时调用function({event, node})-
onDropdrop 触发时调用function({event, node, dragNode, dragNodesKeys})-
onExpand展开/收起节点时触发function(expandedKeys, {expanded: boolean, node})-
onLoad节点加载完毕时触发function(loadedKeys, {event, node})-
onRightClick响应右键点击function({event, node})-
onSelect点击树节点触发function(selectedKeys, e:{selected: boolean, selectedNodes, node, event})-

 关注我并且留言发源码

或者自动下载

https://download.csdn.net/download/yalywq/88814803?spm=1001.2014.3001.5503

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/76700
推荐阅读
相关标签
  

闽ICP备14008679号