react树形组件带连线子节点数详情

开发react树形组件的初衷是使其自定义更方便与自己的业务更切合,使其样式、功能交互更多元化,随业务随意修改。

image.png

如果对你用帮助,点赞加关注,小编会更新更多精彩内容

直接上代码:
js代

import styles from './index.less'
import React, { Component } from 'react';

class TreeComponent extends Component {
  constructor(props) {
    super(props);
    this.state = {
      expandedNodes: [], // 用于存储展开的节点
    };
  }

  toggleNode = (nodeId) => {
    const { expandedNodes } = this.state;
    const isExpanded = expandedNodes.includes(nodeId);

    if (isExpanded) {
      this.setState({
        expandedNodes: expandedNodes.filter((key) => key !== nodeId),
      });
    } else {
      this.setState({
        expandedNodes: [...expandedNodes, nodeId],
      });
    }
  };

  renderTree = (nodes, level = 0) => {
    return nodes.map((node) => {
      // 每一节点收缩
      const isExpanded = this.state.expandedNodes.includes(node.key);
      // 每一级是否有子节点
      const hasChildren = node.children && node.children.length > 0;
      // 是否是最后一级
      const isLastLevel = node.children?false:true
      // 节点数
      const number = node.children && node.children.length
      return (
        <div key={node.id}>
          <div style={{ paddingLeft: level * 115 }}>
            {<div className={styles['queryTree-TreeNode-name']}>
                <div className={`${styles['queryTree-TreeNode-name-text']} 
                    ${level===0?styles['one-text']:isLastLevel?styles['end-text']:''}`} >
                      {/* 连线 竖线*/}
                        {
                          new Array(level).fill(level).map((item,index)=>
                          <span key={index} style={{left:`${-115*(index) + 24}px`}} className={styles['queryTree-TreeNode-name-line-p']}>
                            <span className={styles['queryTree-TreeNode-name-line-expanded']}></span>
                          </span>
                          )
                        }
                        {/* 连线 横线子节点线*/}
                       {level!==0&&
                        <span className={styles['queryTree-TreeNode-name-line-f']}>
                          <span className={styles['queryTree-TreeNode-name-line']}></span>
                        </span>
                      }
                        {/*名字 和节点数 */}
                    <div className={styles['text-width']} > 
                      <span className={styles['text-width-span']}>
                      {node.title} {number?'('+number+')':''}
                      </span>
                      {/* 收缩 按钮 */}
                    {hasChildren&&(
                    <div onClick={() => this.toggleNode(node.key)} className={styles['treeNode-shrink']}>
                        {isExpanded ? '-' : '+'}
                    </div>
                    )}
                    {isLastLevel && (
                        <a >
                          详情
                        </a>
                    )}
                    </div>
                </div>
            </div> }
          </div>
          {/* 展开时加载子节点 */}
          {isExpanded && hasChildren && (
            <div style={{  }}>
              {this.renderTree(node.children, level + 1)}
            </div>
          )}
          
        </div>
      );
    });
  };

  render() {
    // const { data } = this.props;
    const data = [
      {
        title: 'parent 1',
        key: '0-0',
        children: [
          {
            title: 'parent 1-0',
            key: '0-0-0',
            children: [
              {
                title: 'leaf',
                key: '0-0-0-0',
              },
              {
                title: 'leaf',
                key: '0-0-0-1',
              },
              {
                title: 'leaf',
                key: '0-0-0-2',
              },
            ],
          },
          {
            title: 'parent 1-1',
            key: '0-0-1',
            children: [
              {
                title: 'leaf',
                key: '0-0-1-0',
              },
            ],
          },
          {
            title: 'parent 1-2',
            key: '0-0-2',
            children: [
              {
                title: 'leaf',
                key: '0-0-2-0',
              },
              {
                title: 'leaf',
                key: '0-0-2-1',
              },
            ],
          },
        ],
      },
    ];
    // const loadStartTime = performance.now(); //
    return <div className={styles['queryTree-TreeNode']}>
        {
            this.renderTree(data)
        }
        {/* {

 performance.now() - loadStartTime 

        } */}
    </div>;
   
  }
}

export default TreeComponent;


index.less代码:

 queryTree-TreeNode{
        position: relative;
        height: 500px;
        width: 1338px;
        overflow: auto;
        &-name{
          display: flex;
          justify-items: center;
          align-items: center;
          &-text{
            display: flex;
            justify-content:space-between ;
            justify-items: center;
            align-items: center;
            .text-width{
              width: 230px;
            display: flex;
            justify-content:space-between ;
            justify-items: center;
            background: rgba(11,78,149,0.5);
            border: 1px solid #227EF0;
            border-radius: 5px;
            margin-top: 5px;
             &-span{
              
                padding: 5px;
                width: 190px;
                display: block;
              }
              
            }
          }
          .end-text{
            .text-width{
              border: none;
              border-left:1px solid #1B8AFF ;
              .text-width-span{
                border: none;
                border-radius: 5px;
                border-left:3px solid #1B8AFF ;
              }
            }
          }
          .treeNode-shrink{
            display: flex;
            justify-content:center ;
            align-items: center;
            align-self: center;
            width: 20px;
            height: 20px;
            line-height: 20px;
            background: rgba(27,138,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            margin-right: 3px;
          }
          &-line-f,&-line-p{
            position: relative;
            flex: none;
            align-self: stretch;
            width: 24px;
            margin: 0;
            line-height: 24px;
            text-align: center;
            user-select: none;
          }
          &-line,&-line-expanded{
            position: relative;
            z-index: 1;
            display: inline-block;
            width: 100%;
            height: 100%;
          }
          &-line:before,&-line-expanded::before{
            position: absolute;
            top: 0;
            inset-inline-end: 12px;
            bottom: -4px;
            margin-inline-start: -1px;
            border-inline-end: 1px solid #8AC5ED;
            content: "";
          }
          &-line:after{
            position: absolute;
            width: 10px;
            height: 50%;
            border-bottom: 1px solid #8AC5ED;
            content: "";
          }
          &-line-p{
            width: 0px;
          }
          &-line-expanded{
          }
          &-line-expanded::before{

          }
         
          .one-text{
            // width: 40px;
            // height: 100%;
            // background: rgba(11,78,149,0.5);
            // border: 1px solid #227EF0;
            // border-radius: 5px;
            
          }
          
          a{
            text-decoration:underline;
            color: #00A6FF;
            display: block;
            width:32px;
            padding-top: 5px;
          }
        }
        
      }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容