突破编程_前端_JS编程实例(简单树结构组件)

2024-03-05 08:44

本文主要是介绍突破编程_前端_JS编程实例(简单树结构组件),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1 开发目标

实现如下简单树结构组件:

在这里插入图片描述

再点击树节点后,会调用客户端传入的回调函数:

在这里插入图片描述

2 详细需求

简单树结构组件需根据客户端提供的参数创建,具备动态构建树形结构节点、选项卡切换及自定义内容显示等功能:

(1)树形结构组件的创建与初始化: 类似于 echarts 等知名商业组件的创建与初始化方式,本组件需要根据客户端提供的参数 container 以及 para 进行创建和初始化。
container 是一个已存在的 DOM 元素(一般是 DIV),组件将在此元素内部构建 TAB 区域,包含选项卡以及 TAB 面板。
para 是本组件的配置参数,该对象应包含以下属性:

{"nodes":[{"id":"1","name":"node_1","children":[{"id":"11","name":"node_1_1",},{"id":"12","name":"node_1_2","children":[{"id":"121","name":"node_1_2_1",},{"id":"122","name":"node_1_2_2",},]},]},{"id":"2","name":"node_2",},],"onClickTreeNode":callback_function,
}

(2)树形结构渲染: 组件应能正确渲染树形结构,每个节点应清晰展示。

(3)节点单选: 用户点击树形结构中的某个节点时,该节点应被选中,同时其他节点应取消选中状态。

(4)节点状态反馈: 选中的节点应有明显的视觉反馈,如变色或添加特殊标记。

(5)事件监听: 应提供事件监听机制,允许用户监听节点的选中事件,以便在节点被选中时执行特定操作。

3 代码实现

首先创建一个 neat_treewidget.js 文件,该文件用于本组件的工具类、窗体部件基类以及各个实现类的代码构建。

在具体的业务代码编写之前,先实现一个工具类以及一些工具方法,方便后面调用:

class CommonUtil {// 设置 DIV 中的文字为水平与垂直居中static centerTextInDiv(container) {container.style.display = 'flex';container.style.textAlign = 'center';container.style.justifyContent = 'center';container.style.flexDirection = 'column';}
}

该工具类中包含一个可以将 DIV 中的文字设置为水平与垂直居中的静态方法。

接下来,定义一个通用的显示窗体的基类:

class NeatBaseWid {constructor(container, para) {this.container = container;	// 接收调用者传入的 DOM 元素(一般是 DIV)this.para = para;	// 保存调用者传入的 para 对象}
}

然后开始定义树节点类型:

class NeatTreeNode extends NeatBaseWid {static LEVEL_OFFSET = 10;     // 每个级别的树节点偏移像素static NODE_HEIGHT = '23px';     // 树节点高度static NODE_NAME_FONTSIZE = '14px';     // 默认标题字符串的字体大小static NODE_NAME_COLOR = '#000';     // 默认标题字符串字体颜色static NODE_OPENCLOSE_ICON_WIDTH = '23px';     // 树节点打开、关闭小箭头图标的宽度static NODE_OPENCLOSE_ICON_CLASS_OPEN = 'fa fa-angle-down';			//打开static NODE_OPENCLOSE_ICON_CLASS_CLOSE = 'fa fa-angle-right';		//关闭constructor(container, para) {super(container, para);this.id=this.para.id;this.name=this.para.name;this.parent = para.treeNode ?? null;        // 父节点this.level = (para.treeNode && (para.treeNode.level + 1)) ?? 0;   // 节点的级别,最高一级是根节点this.nameContainer = null; // 树节点的标题容器this.openCloseIconContainer = null; // 树节点的打开、关闭小箭头图标容器this.children = [];       // 子节点this.childrenContainer = null; // 子节点容器this.render();}

上面代码定义了 NeatTreeNode 的一些默认属性与成员变量,并且创建构造函数,该函数接收调用者传入的 DIV 容器,并且调用 render 方法。
在 render 方法,需要渲染当前树节点,并且还要根据是否有子节点的情况,创建子节点容器:

	render() {this.container.innerHTML = '';  // 清空容器// 渲染当前树节点let nodeContainer = document.createElement('div');nodeContainer.style.display = 'flex';nodeContainer.style.width = '100%';nodeContainer.style.height = NeatTreeNode.NODE_HEIGHT;this.container.appendChild(nodeContainer);

上面代码创建了当前树节点的容器,接下来需要根据当前节点的级别,做一个偏移处理:

		// 如果当前树节点的级别大于 0,则放一个偏移容器if (this.level > 0) {let offsetContainer = document.createElement('div');offsetContainer.style.width = this.level*NeatTreeNode.LEVEL_OFFSET + 'px';nodeContainer.appendChild(offsetContainer);}

接下来,如果当前树节点有子节点,则显示树节点的打开、关闭小箭头图标,如果没有子节点,则做一个简单的偏移处理即可:

		// 如果当前树节点有子节点,则显示树节点的打开、关闭小箭头图标if (this.para.children && this.para.children.length > 0) {this.openCloseIconContainer = document.createElement('i');this.openCloseIconContainer.className = NeatTreeNode.NODE_OPENCLOSE_ICON_CLASS_OPEN;this.openCloseIconContainer.style.width = NeatTreeNode.NODE_OPENCLOSE_ICON_WIDTH;this.openCloseIconContainer.style.height = '100%';CommonUtil.centerTextInDiv(this.openCloseIconContainer);nodeContainer.appendChild(this.openCloseIconContainer);// 树节点打开或关闭let that = this;this.openCloseIconContainer.onclick = function () {if(NeatTreeNode.NODE_OPENCLOSE_ICON_CLASS_OPEN === that.openCloseIconContainer.className){that.openCloseIconContainer.className = NeatTreeNode.NODE_OPENCLOSE_ICON_CLASS_CLOSE;that.childrenContainer.style.display='none';}else{that.openCloseIconContainer.className = NeatTreeNode.NODE_OPENCLOSE_ICON_CLASS_OPEN;that.childrenContainer.style.display='block';}}} else {let offsetContainer = document.createElement('div');offsetContainer.style.width = NeatTreeNode.NODE_OPENCLOSE_ICON_WIDTH;nodeContainer.appendChild(offsetContainer);}

注意:上面代码中,在创建打开、关闭小箭头图标后,还定义了点击事件的处理函数。
然后,创建当前的树节点标题,并且定义点击树节点标题时的事件处理函数:

        // 树节点标题this.nameContainer = document.createElement('div');this.nameContainer.style.flexGrow = '1';this.nameContainer.innerText = this.para.name;CommonUtil.centerTextInDiv(this.nameContainer);this.nameContainer.style.textAlign = 'left';this.nameContainer.style.cursor = 'pointer';nodeContainer.appendChild(this.nameContainer);// 点击树节点的触发动作let that = this;this.nameContainer.onclick = function () {that.para.onClickTreeNode(that);}

最后,根据是否有子节点的情况,创建子节点容器:

        // 创建子树节点if(this.para.children && this.para.children.length > 0){this.childrenContainer = document.createElement('div');this.childrenContainer.style.width = '100%';this.container.appendChild(this.childrenContainer);this.para.children.forEach(element => {let nodeContainer = document.createElement('div');this.childrenContainer.appendChild(nodeContainer);element.treeNode = this;element.onClickTreeNode = this.para.onClickTreeNode;let treeNode = new NeatTreeNode(nodeContainer, element);this.children.push(treeNode);});}}

至此,完成了整个渲染函数 render 的构建。

下一步,创建树结构类型:

class NeatHeaderTreeWidget extends NeatBaseWid {constructor(container, para) {super(container, para);this.rootTreeNodes = [];      // 根节点集合this.render();}render() {// 清空容器this.container.innerHTML = '';// 渲染树结构this.container.style.width = '100%';this.container.style.height = '100%';// 创建树节点this.para.nodes.forEach(element => {let nodeContainer = document.createElement('div');this.container.appendChild(nodeContainer);element.onClickTreeNode = this.para.onClickTreeNode;let treeNode = new NeatTreeNode(nodeContainer, element);this.rootTreeNodes.push(treeNode);});}
}

注意:创建树结构类型的渲染函数 render 中的创建树节点实际是创建根节点,至于子节点则通过根节点的渲染函数创建(是一个递归创建的过程)。

完成树结构组件的代码编写后,可以创建 neater_treewidget.html 文件,调用树结构组件:

<!DOCTYPE html>
<html><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta http-equiv="X-UA-Compatible" content="ie=edge" /><title>header tab</title><style>html {height: 100%;}body {margin: 0;height: 100%;}</style><link rel="stylesheet" href="./font-awesome-4.7.0/css/font-awesome.css">
</head><body><div id="divMain" style="height: 100%;width: 100%;"></div>
</body>
<script src="./neat_treewidget.js"></script>
<script>let para = {"nodes": [{"id": "1","name": "根节点 node_1","children": [{"id": "11","name": "一级子节点 node_1_1",},{"id": "12","name": "一级子节点 node_1_2","children": [{"id": "121","name": "二级子节点 node_1_2_1",},{"id": "122","name": "二级子节点 node_1_2_2",},]},]},{"id": "2","name": "根节点 node_2",},{"id": "3","name": "根节点 node_3","children": [{"id": "31","name": "一级子节点 node_3_1",},]},{"id": "4","name": "根节点 node_4",},],"onClickTreeNode":clickTreeNode,};function clickTreeNode(treeNode){alert(treeNode.name);}let treeWidget = new NeatHeaderTreeWidget(document.getElementById('divMain'), para);</script></html>

这篇关于突破编程_前端_JS编程实例(简单树结构组件)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/775924

相关文章

Python 基于http.server模块实现简单http服务的代码举例

《Python基于http.server模块实现简单http服务的代码举例》Pythonhttp.server模块通过继承BaseHTTPRequestHandler处理HTTP请求,使用Threa... 目录测试环境代码实现相关介绍模块简介类及相关函数简介参考链接测试环境win11专业版python

Python异步编程之await与asyncio基本用法详解

《Python异步编程之await与asyncio基本用法详解》在Python中,await和asyncio是异步编程的核心工具,用于高效处理I/O密集型任务(如网络请求、文件读写、数据库操作等),接... 目录一、核心概念二、使用场景三、基本用法1. 定义协程2. 运行协程3. 并发执行多个任务四、关键

MySQL的配置文件详解及实例代码

《MySQL的配置文件详解及实例代码》MySQL的配置文件是服务器运行的重要组成部分,用于设置服务器操作的各种参数,下面:本文主要介绍MySQL配置文件的相关资料,文中通过代码介绍的非常详细,需要... 目录前言一、配置文件结构1.[mysqld]2.[client]3.[mysql]4.[mysqldum

AOP编程的基本概念与idea编辑器的配合体验过程

《AOP编程的基本概念与idea编辑器的配合体验过程》文章简要介绍了AOP基础概念,包括Before/Around通知、PointCut切入点、Advice通知体、JoinPoint连接点等,说明它们... 目录BeforeAroundAdvise — 通知PointCut — 切入点Acpect — 切面

python连接sqlite3简单用法完整例子

《python连接sqlite3简单用法完整例子》SQLite3是一个内置的Python模块,可以通过Python的标准库轻松地使用,无需进行额外安装和配置,:本文主要介绍python连接sqli... 目录1. 连接到数据库2. 创建游标对象3. 创建表4. 插入数据5. 查询数据6. 更新数据7. 删除

Jenkins的安装与简单配置过程

《Jenkins的安装与简单配置过程》本文简述Jenkins在CentOS7.3上安装流程,包括Java环境配置、RPM包安装、修改JENKINS_HOME路径及权限、启动服务、插件安装与系统管理设置... 目录www.chinasem.cnJenkins安装访问并配置JenkinsJenkins配置邮件通知

C#异步编程ConfigureAwait的使用小结

《C#异步编程ConfigureAwait的使用小结》本文介绍了异步编程在GUI和服务器端应用的优势,详细的介绍了async和await的关键作用,通过实例解析了在UI线程正确使用await.Conf... 异步编程是并发的一种形式,它有两大好处:对于面向终端用户的GUI程序,提高了响应能力对于服务器端应

Java Stream流以及常用方法操作实例

《JavaStream流以及常用方法操作实例》Stream是对Java中集合的一种增强方式,使用它可以将集合的处理过程变得更加简洁、高效和易读,:本文主要介绍JavaStream流以及常用方法... 目录一、Stream流是什么?二、stream的操作2.1、stream流创建2.2、stream的使用2.

springboot项目中集成shiro+jwt完整实例代码

《springboot项目中集成shiro+jwt完整实例代码》本文详细介绍如何在项目中集成Shiro和JWT,实现用户登录校验、token携带及接口权限管理,涉及自定义Realm、ModularRe... 目录简介目的需要的jar集成过程1.配置shiro2.创建自定义Realm2.1 LoginReal

Python跨文件实例化、跨文件调用及导入库示例代码

《Python跨文件实例化、跨文件调用及导入库示例代码》在Python开发过程中,经常会遇到需要在一个工程中调用另一个工程的Python文件的情况,:本文主要介绍Python跨文件实例化、跨文件调... 目录1. 核心对比表格(完整汇总)1.1 自定义模块跨文件调用汇总表1.2 第三方库使用汇总表1.3 导