当前位置:   article > 正文

【web系列十四】Jsplumb画布使用方法_前端jsplumb无边画布容器

前端jsplumb无边画布容器

目录

写在前面

Jsplumb介绍

jsplumb是什么

安装和导入方式

基本概念

主要方法介绍

getInstance()

addEndpoint()

draggable()

开发建议

jsplumb开发实战

实现关系图的显示

数据

数据转换

template

添加端点endpoint

添加连接线connector

实际效果

 整体代码

jsplumb+D3实现自动布局

D3是什么

D3 的优势

安装和导入

 数据转换

 d3生成树状图(自动布局)

其他细节 

效果展示

 整体代码

jsplumb+D3更多交互

修改数据格式

优化页面交互效果

双击弹出菜单

添加、删除操作

更新本地数据

整体代码

参考资料


写在前面

        博主最近的需要实现一个前端绘制拓扑图的工具,并且要求能够编辑节点的信息,以及将拓扑结构传给后端。首先想到的就是Jsplumb,这边记录一下开发过程中的一些知识点,本文中的代码都是基于vue3+ts写的。

Jsplumb介绍

        先给大家推荐一些写的不错的文章和文档。

jsPlumb初认识 - 知乎 (zhihu.com)

jsPlumb 基本概念 - 简书 (jianshu.com)

Overview | jsPlumb Documentation (jsplumbtoolkit.com)

jsplumb 中文基础教程 (wdd.js.org)

jsplumb是什么

        一句话来说就是一个在web端绘制关系图的开源工具。 

安装和导入方式

       安装很简单,直接使用以下命令即可

npm install jsplumb --save

        导入工具

  1. <script lang="ts" setup>
  2. import { jsPlumb } from 'jsplumb';
  3. import type { jsPlumbInstance } from 'jsplumb';
  4. import { onMounted } from 'vue';
  5. let jsPlumb_instance: jsPlumbInstance = null;
  6. onMounted(() => {
  7. jsPlumb_instance = jsPlumb.getInstance();
  8. jsPlumb_instance.ready(function() {
  9. /* code */
  10. };)
  11. })
  12. </script>

        这里要注意,ready函数是jsplumb的初始化函数,由于jsplumb是基于dom元素的,因此在dom元素挂载上之前jsplumb是无法工作的,所以需要将ready函数放在onMounted函数下。而getInstance函数可以选择放在onMounted也可以放在onBeforeMount中。

基本概念

  • Anchor 锚点:表示一个dom元素上的位置,endpoint可以存在于这个位置。
  • Endpoint 端点:connector一端的可视化表示。
  • Connector 连接:用于连接两个dom元素的可视化表示。
  • Overlays 遮罩层:用于修饰连接器的UI组件,如标签、箭头等。一个连接器上可以同时存在多个overlays。

        官方文档用一句话概括了这些元素

In summary - one Connection is made up of two Endpoints, a Connector, and zero or more Overlays working together to join two elements. Each Endpoint has an associated Anchor.

        翻译过来就是:

总之,一个Connection由两个端点(endpoint)、一个Connector和零个或多个overlay组成,它们一起连接两个元素。每个端点都有一个关联的锚。

主要方法介绍

getInstance()

        创建一个实例

  1. <script lang="ts" setup>
  2. import { jsPlumb } from 'jsplumb';
  3. import type { jsPlumbInstance } from 'jsplumb';
  4. import { onMounted } from 'vue';
  5. let jsPlumb_instance: jsPlumbInstance = null;
  6. onMounted(() => {
  7. jsPlumb_instance = jsPlumb.getInstance();
  8. })
  9. </script>

addEndpoint()

        向已有元素增加端点。

  1. <script lang="ts" setup>
  2. ...
  3. import type { EndpointOptions } from "jsplumb";
  4. ...
  5. ...
  6. let el = <Element>(document.getElementById("node1");
  7. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  8. isTarget: true,
  9. isSource: true,
  10. anchor: "Top"
  11. });
  12. </script>

draggable()

        设置元素是否可拖拽,并可以限制拖拽区域。

  1. <script lang="ts" setup>
  2. ...
  3. import type { DragOptions} from "jsplumb";
  4. ...
  5. ...
  6. let el = <Element>(document.getElementById("node1");
  7. jsPlumb_instance.draggable(el, <DragOptions>{
  8. containment: "jsplumb_canvas"
  9. });
  10. </script>

开发建议

         jsplumb的功能还是很强大的,这里不可能完全罗列出来,也没有必要,但是为了帮助大家更快的上手jsplumb的开发,我在这里提几个建议。

  1. 首先了解一下jsplumb大概能做什么事,有什么基本概念,这块其实就看博主前面写的内容就够了。
  2. 根据开发的需求去官网文档查看是否有满足需求的功能/方法,博主在文中贴出的中文文档不是那么全,但是也可以参考,如果没有找到可以去看那篇英文的。
  3. 功能/方法的语法直接从jsplumb库的index.d.ts中查看,index.d.ts中记录了这个库所有的接口及接口的使用方法,基本上能解决90%的语法问题。
  4. 如果还是有问题,再百度查阅资料。博主也会在后面的篇幅中,给出一些具体的开发实例,大家可以参考,希望能对大家有帮助。

jsplumb开发实战

实现关系图的显示

数据

        首先给出数据,说明一下数据的含义:id、name、value都是指当前节点的属性,in_id表示指向当前节点的另一个节点的id。input表示输入节点的id,output表示的节点会指向一个输出节点。

  1. let input: number[] = [-1];
  2. let output: number[] = [6, 7];
  3. let blocks: PlumbBlock[] = [
  4. {
  5. id: 0,
  6. in_id: [-1],
  7. name: "block",
  8. value: ["3"]
  9. },
  10. {
  11. id: 1,
  12. in_id: [0],
  13. name: "block-long",
  14. value: ["32"]
  15. },
  16. {
  17. id: 2,
  18. in_id: [1],
  19. name: "block",
  20. value: ["64"]
  21. },
  22. {
  23. id: 3,
  24. in_id: [2],
  25. name: "block-long",
  26. value: ["64"]
  27. },
  28. {
  29. id: 4,
  30. in_id: [1, 3],
  31. name: "block",
  32. value: ["128"]
  33. },
  34. {
  35. id: 5,
  36. in_id: [4],
  37. name: "block-long",
  38. value: ["128"]
  39. },
  40. {
  41. id: 6,
  42. in_id: [2, 5],
  43. name: "block",
  44. value: ["256"]
  45. },
  46. {
  47. id: 7,
  48. in_id: [6],
  49. name: "block-long",
  50. value: ["256"]
  51. }
  52. ];

数据转换

        可以看到input和output节点的表示与其他blocks是不同的,并且为了展示的时候这些节点是分开的而不是堆叠在一起,这边需要先做一个数据格式的转换,生成node_list和line_list两个列表,第一个列表包含所有的节点信息(包含了节点的位置偏移信息),第二个列表表示节点之间的连接关系。

  1. export interface PlumbBlock {
  2. id: number;
  3. name: string;
  4. in_id?: number[] | undefined;
  5. value?: string[];
  6. top?: string;
  7. };
  8. let node_list: PlumbBlock[] = [];
  9. let line_list: number[][] = []; // [Source, Target]
  10. function setNodeInfo(): void {
  11. let count: number = 0;
  12. let step: number = 75;
  13. for(let i = 0; i < input.length; ++i) {
  14. node_list.push({
  15. id: input[i],
  16. name: "input",
  17. top: count * step + "px",
  18. });
  19. ++count;
  20. };
  21. for(let i = 0; i < blocks.length; ++i) {
  22. node_list.push({
  23. id: blocks[i].id,
  24. in_id: blocks[i].in_id,
  25. name: blocks[i].name,
  26. value: blocks[i].value,
  27. top: count * step + "px",
  28. });
  29. ++count;
  30. let in_id: number[] | undefined = blocks[i].in_id;
  31. if(in_id != undefined) {
  32. for(let j = 0; j < in_id.length; ++j)
  33. line_list.push([in_id[j], blocks[i].id);
  34. }
  35. };
  36. for(let i = 0; i < output.length; ++i) {
  37. let id = blocks.length + i;
  38. node_list.push({
  39. id: id,
  40. name: "output",
  41. top: count * step + "px",
  42. });
  43. ++count;
  44. line_list.push([output[i], id);
  45. };
  46. };

template

        这里使用一个v-for循环来渲染这些数据,也就是说给每个数据生成一个dom元素。这样jsplumb才能工作。

  1. <template>
  2. <div id="jsplumb" class="jsplumb">
  3. <div
  4. class="nodes"
  5. v-for="item in node_list"
  6. :key="item.id"
  7. :id="item.id"
  8. :style="{left: '40%', top: item.top}"
  9. >{{ item.name }}<div>
  10. </div>
  11. </template>
  12. <style scoped>
  13. .jsplumb {
  14. position: absolute,
  15. margin: 10px;
  16. left: 45%;
  17. width: 50%;
  18. height: 800px;
  19. box-sizing: bording-box;
  20. border: 1px solid black;
  21. }
  22. .nodes {
  23. position: absolute;
  24. min-width: 60px;
  25. height: 40px;
  26. color: black;
  27. border: 1px solid black;
  28. line-height: 40px;
  29. }
  30. </style>

        这里注意两个踩坑点:

  1. 每个节点nodes设置了position:absolute属性,这是实现可拖拽节点的必备属性。
  2. 画布区域jsplumb也设置了position:absolute属性,这是为了保证可拖拽节点的拖拽区域限制是绝对的,而不是相对整个页面的。也就是说,如果画布jsplumb在整个页面上是偏移的,这时候不设置position:absolute的话,当给可拖拽节点设置拖拽区域为jsplumb时,你会发现实际的可拖拽区域是从整个页面的左上角开始算的,这样并不符合我们的需求。

添加端点endpoint

        为每个节点添加端点,注意输入节点input只添加Source端点,输出节点output只添加Target端点,其他节点需要同时添加两类端点。

  1. function addEndpoints(): void {
  2. for(let i = 0; i < node_list.length; ++i) {
  3. let el = <Element>(document.getElementById(String(node_list[i].id)));
  4. jsPlumb_instance.draggable(el, <DragOptions>{ containment: "jsplumb" });
  5. if(node_list[i].name != "input") {
  6. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  7. isTarget: true,
  8. anchor: "Top",
  9. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  10. });
  11. }
  12. if(node_list[i].name != "output") {
  13. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  14. isSource: true,
  15. anchor: "Bottom",
  16. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  17. });
  18. }
  19. }
  20. };

添加连接线connector

        这里可以看到我将一些公共属性提取出来了,作为一个参数传入,这是一个小技巧。

  1. let connect_common = {
  2. connector: ["Bezier", { curviness: 15 }],
  3. anchor: ["Top", "Bottom"],
  4. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  5. endpointStyle: {
  6. stroke: "black",
  7. fill: "white",
  8. strokeWidth: 2,
  9. },
  10. };
  11. function drawLines(): void {
  12. for(let i = 0; i < line_list.length; ++i) {
  13. let start: Element = document.getElementById(String(line_list[i][0]));
  14. let end: Element = document.getElementById(String(line_list[i][1]));
  15. jsPlumb_instance.connect(
  16. {
  17. source: start,
  18. target: end,
  19. overlays: [["Arrow", { width: 12, length: 12, location: 0.5 }]],
  20. },
  21. connect_common
  22. );
  23. }
  24. };

        这里也有两个坑要注意:

  1. 当connector设置为"Bezier"时,其实他包含一个curviness属性用来设置弯曲程度,这个属性可以生效的,并且在官网上有说明,但是在index.d.ts文件中好像没有。
  2. 端点的尺寸问题,在添加端点和连接线的时候都可以设置,以"Dot"举例,尺寸参数时radius,他的默认值是10,如果你想改大一些,那么无论在端点还是连接线那里设置都是可以的,但是如果你想改小一点,你会发现只设置端点或者连接线处的属性是不会生效的。博主猜测是由于元素的端点和连接线的两端都生成了一个可视化图形,并且会互相覆盖,因此需要把两边的尺寸都改小才可以看到效果。

实际效果

        这样就可以显示拓扑结构了,并且可以随意拖拽这些节点。但是看到这里大家也会发现jsplumb一个比较大的问题,没有自动布局,其实也是有的,在jsplumbtoolkits中,但是需要付费。那如果不想花钱咋办呢,不要急,看下一章。

 整体代码

  1. <template>
  2. <div id="jsplumb" class="jsplumb">
  3. <div
  4. class="nodes"
  5. v-for="item in node_list"
  6. :key="item.id"
  7. :id="item.id"
  8. :style="{left: '40%', top: item.top}"
  9. >{{ item.name }}<div>
  10. </div>
  11. </template>
  12. <script lang="ts" setup>
  13. import { jsPlumb } from 'jsplumb';
  14. import type {
  15. Element,
  16. DragOptions,
  17. EndpointOptions,
  18. EndpointSpec,
  19. jsPlumbInstance,
  20. } from 'jsplumb';
  21. import { onBeforeonMount, onMounted } from 'vue';
  22. export interface PlumbBlock {
  23. id: number;
  24. name: string;
  25. in_id?: number[] | undefined;
  26. value?: string[];
  27. top?: string;
  28. };
  29. let jsPlumb_instance: jsPlumbInstance = null;
  30. let node_list: PlumbBlock[] = [];
  31. let line_list: number[][] = [];
  32. onBeforeonMount(() => {
  33. setNodeInfo();
  34. });
  35. onMounted(() => {
  36. jsPlumb_instance = jsPlumb.getInstance();
  37. jsPlumb_instance.ready(function() {
  38. addEndpoints();
  39. drawLines();
  40. });
  41. });
  42. let connect_common = {
  43. connector: ["Bezier", { curviness: 15 }],
  44. anchor: ["Top", "Bottom"],
  45. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  46. endpointStyle: {
  47. stroke: "black",
  48. fill: "white",
  49. strokeWidth: 2,
  50. },
  51. };
  52. let input: number = -1;
  53. let output: number[] = [6, 7];
  54. let blocks: PlumbBlock[] = [
  55. {
  56. id: 0,
  57. in_id: [-1],
  58. name: "block",
  59. value: ["3"]
  60. },
  61. {
  62. id: 1,
  63. in_id: [0],
  64. name: "block-long",
  65. value: ["32"]
  66. },
  67. {
  68. id: 2,
  69. in_id: [1],
  70. name: "block",
  71. value: ["64"]
  72. },
  73. {
  74. id: 3,
  75. in_id: [2],
  76. name: "block-long",
  77. value: ["64"]
  78. },
  79. {
  80. id: 4,
  81. in_id: [1, 3],
  82. name: "block",
  83. value: ["128"]
  84. },
  85. {
  86. id: 5,
  87. in_id: [4],
  88. name: "block-long",
  89. value: ["128"]
  90. },
  91. {
  92. id: 6,
  93. in_id: [2, 5],
  94. name: "block",
  95. value: ["256"]
  96. },
  97. {
  98. id: 7,
  99. in_id: [6],
  100. name: "block-long",
  101. value: ["256"]
  102. }
  103. ];
  104. function setNodeInfo(): void {
  105. let count: number = 0;
  106. let step: number = 75;
  107. node_list.push({
  108. id: input,
  109. name: "input",
  110. top: count * step + "px",
  111. });
  112. ++count;
  113. for(let i = 0; i < blocks.length; ++i) {
  114. node_list.push({
  115. id: blocks[i].id,
  116. in_id: blocks[i].in_id,
  117. name: blocks[i].name,
  118. value: blocks[i].value,
  119. top: count * step + "px",
  120. });
  121. ++count;
  122. let in_id: number[] | undefined = blocks[i].in_id;
  123. if(in_id != undefined) {
  124. for(let j = 0; j < in_id.length; ++j)
  125. line_list.push([in_id[j], blocks[i].id);
  126. }
  127. };
  128. for(let i = 0; i < output.length; ++i) {
  129. let id = blocks.length + i;
  130. node_list.push({
  131. id: id,
  132. name: "output",
  133. top: count * step + "px",
  134. });
  135. ++count;
  136. line_list.push([output[i], id);
  137. };
  138. };
  139. function addEndpoints(): void {
  140. for(let i = 0; i < node_list.length; ++i) {
  141. let el = <Element>(document.getElementById(String(node_list[i].id)));
  142. jsPlumb_instance.draggable(el, <DragOptions>{ containment: "jsplumb" });
  143. if(node_list[i].name != "input") {
  144. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  145. isTarget: true,
  146. anchor: "Top",
  147. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  148. });
  149. }
  150. if(node_list[i].name != "output") {
  151. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  152. isSource: true,
  153. anchor: "Bottom",
  154. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  155. });
  156. }
  157. }
  158. };
  159. function drawLines(): void {
  160. for(let i = 0; i < line_list.length; ++i) {
  161. let start: Element = document.getElementById(<string>(<unknown>line_list[i][0]));
  162. let end: Element = document.getElementById(<string>(<unknown>line_list[i][1]));
  163. jsPlumb_instance.connect(
  164. {
  165. source: start,
  166. target: end,
  167. overlays: [["Arrow", { width: 12, length: 12, location: 0.5 }]],
  168. },
  169. connect_common
  170. );
  171. }
  172. };
  173. </script>
  174. <style scoped>
  175. .jsplumb {
  176. position: absolute,
  177. margin: 10px;
  178. left: 45%;
  179. width: 50%;
  180. height: 800px;
  181. box-sizing: bording-box;
  182. border: 1px solid black;
  183. }
  184. .nodes {
  185. position: absolute;
  186. min-width: 60px;
  187. height: 40px;
  188. color: black;
  189. border: 1px solid black;
  190. line-height: 40px;
  191. }
  192. </style>

jsplumb+D3实现自动布局

D3是什么

        D3 的全称是 Data-Driven Document,可以理解为:由数据来决定绘图流程的程序设计模型。D3 是一个JavaScript的函数库,是用来做数据可视化的。将数据变成图形,要想用原生的 HTML、SVG、Canvas 来实现是烦琐和困难的。D3 为我们封装好这些,让开发者能更注重图表的布局和逻辑。

D3 的优势

        JavaScript 的前端可视化库,除了 D3 外还有不少:Highcharts、Echarts、Chart.js。它们可以看作一类的,共同特点是封装层次很高,能够非常简单地制作图表,但是给予开发者控制和设计的空间很少。封装层次太高自然会失去部分自由,但太低又会使程序过长,D3 在这一点上取得了平衡。

安装和导入

        直接使用以下命令。

npm install d3

        导入

import * as D3 from 'd3';

        但是如果你用了ts语言的话会报错Could not find a declaration file for module 'd3',因为d3是js写的。解决方法很简单,找到vue3工程下的shims-vue.d.ts文件,添加以下内容。

declare module 'd3'

 数据转换

        咱们想要使用d3,就必须遵循d3对数据格式的要求,这里我们会使用树状图,因此需要把原始数据转换成树的形式。

        顺便提一下为什么选择树状图,我想要绘制的图其实也不是完全的树状结构,而是更接近d3的网络结构图。因为树状图的子节点只会存在一个父节点,但是我希望子节点可以存在多个父节点,而网络结构图可以满足这个要求。那为啥不选网络结构图呢,因为我希望生成的图形层级结构更加清晰,这点是树状图的优势,所以关键就是怎么解决树状图不能存在多个父节点的问题了。不过还有一点需要提一下,树状图有一个缺点是不能存在多个输入节点,大家如果由这个需求的话,可能要考虑考虑用其他的图。

        首先,我们先不管这个问题哈,我们先要知道d3的树状图需要什么样的输入,我已经展示在下方了。注意这里要遵循一个原则,即使子节点存在于多个父节点下,也不能在树中存在等多个相同的子节点,否则你会发现绘制的图上有重复的节点,所以我们先根据原始数据的in_id与id的关系来生成树,当子节点存在多个父节点时,将子节点插在id较小的父节点下。最后得到的树应该就是像下面这样。

  1. let blocks_tree: Object = {
  2. id: -1;
  3. name: "input",
  4. children: [
  5. {
  6. id: 0,
  7. name: "block",
  8. value: ["3"],
  9. children: [
  10. {
  11. id: 1,
  12. name: "block-long",
  13. value: ["32"],
  14. children: [
  15. {
  16. id: 2,
  17. name: "block",
  18. value: ["64"]
  19. children: [
  20. {
  21. id: 3,
  22. name: "block-long",
  23. value: ["64"],
  24. },
  25. {
  26. id: 6,
  27. name: "block",
  28. value: ["256"],
  29. children: [
  30. {
  31. id: 7,
  32. name: "block-long",
  33. value: ["256"],
  34. children: [
  35. {
  36. id: 9,
  37. name: "output",
  38. },
  39. ],
  40. },
  41. {
  42. id: 8,
  43. name: "output",
  44. }
  45. ],
  46. },
  47. ],
  48. },
  49. {
  50. id: 4,
  51. name: "block",
  52. value: ["128"],
  53. children: [
  54. id: 5,
  55. name: "block-long",
  56. value: ["128"],
  57. ],
  58. },
  59. ],
  60. },
  61. ],
  62. },
  63. ],
  64. };

        但是我们的原始数据格式是不变的,大家可以回到上面去看原始数据的格式,因此需要一个格式转换的算法,如下,细节说明已经在代码中标注了。

  1. // 创建一个树的接口,必须是嵌套的
  2. export interface BlockTree {
  3. id: number;
  4. name: string;
  5. value?: string[];
  6. children?: BlockTree[];
  7. }
  8. let blocks_tree: BlockTree = { id: -100, name: "unknown" }; // 初始化
  9. function transform(): void {
  10. // 生成block_list,包含所有Block和input\output
  11. let block_list: PlumbBlock[] = [];
  12. block_list.push({
  13. id: input,
  14. name: "input",
  15. });
  16. for(let i = 0; i < blocks.length; ++i) {
  17. block_list.push({
  18. id: blocks[i].id,
  19. in_id: blocks[i].in_id,
  20. name: blocks[i].name,
  21. value: blocks[i].value,
  22. });
  23. }
  24. for(let i = 0; i < output.length; ++i) {
  25. let id = blocks.length + i;
  26. block_list.push({
  27. id: id,
  28. in_id: [output[i]],
  29. name: "output",
  30. });
  31. }
  32. // 生成树,根据block_list的in_id<->id的关系插入,当一个子级存在多个父级时,将子级插在id较小的父级下
  33. blocks_tree = { id: input, name: "input", children: [] }; // 初始化时直接把input插入
  34. for(let i = 0; i < block_list.length; ++i) {
  35. let in_id = block_list[i].in_id;
  36. let min: number = in_id[0]; // 除了input外都是存在in_id的,且循环不包含input
  37. for(let j = 1; j < in_id.length; ++j) {
  38. if(in_id[j] < min)
  39. min = in_id[j];
  40. }
  41. addChildren(blocks_tree, min, block_list[i]);
  42. }
  43. }
  44. function addChildren(tree: BlockTree, idx: number, block: PlumbBlock): void {
  45. let key: keyof BlockTree;
  46. let find: boolean = false;
  47. for(key in tree) {
  48. if(key == "id") {
  49. if(tree[key] != idx)
  50. break; // id不对,直接不用继续比较了
  51. else
  52. find = true; // 说明找到叶子了
  53. }
  54. }
  55. if(!find) {
  56. if('children' in tree)
  57. for(let i = 0; i < tree.children.length; ++i)
  58. addChildren(tree.children[i], idx, block);
  59. }
  60. else { // 找到叶子后把新的block插在叶子的children属性中
  61. // 确保有children属性
  62. if(!('children' in tree))
  63. tree.children = [];
  64. if('value' in block)
  65. tree.children.push({
  66. id: block.id,
  67. name: block.name,
  68. value: block.value,
  69. });
  70. else
  71. tree.children.push({
  72. id: block.id,
  73. name: block.name,
  74. });
  75. }
  76. }

 d3生成树状图(自动布局)

        得到了树结构数据后,就可以由d3来生成树状图了。

        这里就是解决之前那个问题的关键了,d3的树状图本来可以直接生成连接线的,使用以下函数。

  1. let links = treeData.links();
  2. lineList = links.map(item => {
  3. return {
  4. source: item.source.data.id,
  5. target: item.target.data.id,
  6. }
  7. })

        而我这里放弃使用这个函数,而用原先的addEndpoints以及drawLines两个函数替代,这样就可以自由的生成连接线了。

  1. // 修改node的生成方式,使用d3的树状图生成
  2. function setNodeInfo(): void {
  3. let data = D3.hierachy(blocks_tree);
  4. let style = window.getcomputedStyle(document.getElementById('jsplumb')); // 获取元素的风格
  5. let canvas_width: number = Number(style.width.split('px')[0]);
  6. let canvas_height: number = Number(style.height.split('px')[0]);
  7. // 限制元素的位置
  8. let scale_width: number = 0.9;
  9. let scale_height: number = 0.9;
  10. // 创建树,根据jsplumb元素的尺寸来限制树的尺寸,这个size会和nodesize属性冲突
  11. let treeGenerator = D3.tree().size([canvas_width * scale_width, canvas_height * scale_height]);
  12. let treeData = treeGenerator(data);
  13. let nodes = treeData.descendants();
  14. node_list.value = nodes.map((item) => {
  15. return {
  16. id: item.data.id,
  17. name: item.data.name,
  18. left: item.x + "px",
  19. top: item.y + 20+ "px",
  20. };
  21. });
  22. for(let i = 0; i < blocks.length; ++i) {
  23. let in_id: number[] | undefined = blocks[i].in_id;
  24. if(in_id != undefined) {
  25. for(let j = 0; j < in_id.length; ++j)
  26. line_list.push([in_id[j], blocks[i].id);
  27. }
  28. };
  29. for(let i = 0; i < output.length; ++i)
  30. line_list.push([output[i], id);
  31. };

其他细节 

1、由d3生成树状图包括了生成node,这个node的left和top都是由d3得到的,因此都要设置成变量,所以template和接口中也要做相应的改变。

:style="{left: item.left, top: item.top}"
  1. export interface PlumbBlock {
  2. id: number;
  3. name: string;
  4. in_id?: number[] | undefined;
  5. value?: string[];
  6. left?: string; // 用来控制元素的水平位置
  7. top?: string;
  8. };

 2、为了方便控制生成的内容style,直接将common设置成jsplumb的全局属性了,但是要注意所有属性是首字母大写的

  1. let common: Object = {
  2. Connector: ["Bezier", { curviness: 15 }],
  3. Overlays: [["Arrow", { width: 12, length: 12, location: 0.5 }]],
  4. Anchor: ["AutoDefault"], // 这是由于自动布局的话,难以保证层级关系非常合理,容易产生输入输出的连接线出现在同一端点上的情况,使用autodefault可以看上去更加合理
  5. //anchor: ["Top", "Bottom"],
  6. Endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  7. EndpointStyle: {
  8. stroke: "black",
  9. fill: "white",
  10. strokeWidth: 2,
  11. },
  12. };

 3、函数的位置也很关键,我在下方标注了。

  1. onBeforeonMount(() => {
  2. transform(); // 用来生成树
  3. });
  4. onMounted(() => {
  5. setNodeInfo(); // 移到这里是因为为了根据页面尺寸自适应的生成树,因此需要等jsplumb挂载完
  6. jsPlumb_instance = jsPlumb.getInstance();
  7. jsPlumb_instance.ready(function() {
  8. nextTick(() => { // 增加nextTick是为了等待树的元素都挂载完,这样addEndpoints中才能给元素添加端点
  9. addEndpoints();
  10. drawLines();
  11. })
  12. });
  13. });

效果展示

        效果如下,是不是还不错。

 整体代码

  1. <template>
  2. <div id="jsplumb" class="jsplumb">
  3. <div
  4. class="nodes"
  5. v-for="item in node_list"
  6. :key="item.id"
  7. :id="item.id"
  8. :style="{left: item.left, top: item.top}"
  9. >{{ item.name }}<div>
  10. </div>
  11. </template>
  12. <script lang="ts" setup>
  13. import { jsPlumb } from 'jsplumb';
  14. import * as D3 from 'd3';
  15. import type {
  16. Element,
  17. DragOptions,
  18. EndpointOptions,
  19. EndpointSpec,
  20. jsPlumbInstance,
  21. } from 'jsplumb';
  22. import { ref, onBeforeonMount, onMounted, nextTick } from 'vue';
  23. // 创建一个树的接口,必须是嵌套的
  24. export interface BlockTree {
  25. id: number;
  26. name: string;
  27. value?: string[];
  28. children?: BlockTree[];
  29. }
  30. export interface PlumbBlock {
  31. id: number;
  32. name: string;
  33. in_id?: number[] | undefined;
  34. value?: string[];
  35. left?: string; // 用来控制元素的水平位置
  36. top?: string;
  37. };
  38. let jsPlumb_instance: jsPlumbInstance = null;
  39. let blocks_tree: BlockTree = { id: -100, name: "unknown" }; // 初始化
  40. let node_list= ref<PlumbBlock>([]); // 需要改成ref的
  41. let line_list: number[][] = [];
  42. onBeforeonMount(() => {
  43. transform(); // 用来生成树
  44. });
  45. onMounted(() => {
  46. setNodeInfo(); // 移到这里是因为为了根据页面尺寸自适应的生成树,因此需要等jsplumb挂载完
  47. jsPlumb_instance = jsPlumb.getInstance();
  48. jsPlumb_instance.importDefaults(common);
  49. jsPlumb_instance.ready(function() {
  50. nextTick(() => { // 增加nextTick是为了等待树的元素都挂载完,这样addEndpoints中才能给元素添加端点
  51. addEndpoints();
  52. drawLines();
  53. })
  54. });
  55. });
  56. // 直接设置成jsplumb的全局属性了,但是要注意所有属性是首字母大写的
  57. let common: Object = {
  58. Connector: ["Bezier", { curviness: 15 }],
  59. Overlays: [["Arrow", { width: 12, length: 12, location: 0.5 }]],
  60. Anchor: ["AutoDefault"], // 这是由于自动布局的话,难以保证层级关系非常合理,容易产生输入输出的连接线出现在同一端点上的情况,使用autodefault可以看上去更加合理
  61. //Anchor: ["Top", "Bottom"],
  62. Endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  63. EndpointStyle: {
  64. stroke: "black",
  65. fill: "white",
  66. strokeWidth: 2,
  67. },
  68. };
  69. let input: number = -1;
  70. let output: number[] = [6, 7];
  71. let blocks: PlumbBlock[] = [
  72. {
  73. id: 0,
  74. in_id: [-1],
  75. name: "block",
  76. value: ["3"]
  77. },
  78. {
  79. id: 1,
  80. in_id: [0],
  81. name: "block-long",
  82. value: ["32"]
  83. },
  84. {
  85. id: 2,
  86. in_id: [1],
  87. name: "block",
  88. value: ["64"]
  89. },
  90. {
  91. id: 3,
  92. in_id: [2],
  93. name: "block-long",
  94. value: ["64"]
  95. },
  96. {
  97. id: 4,
  98. in_id: [1, 3],
  99. name: "block",
  100. value: ["128"]
  101. },
  102. {
  103. id: 5,
  104. in_id: [4],
  105. name: "block-long",
  106. value: ["128"]
  107. },
  108. {
  109. id: 6,
  110. in_id: [2, 5],
  111. name: "block",
  112. value: ["256"]
  113. },
  114. {
  115. id: 7,
  116. in_id: [6],
  117. name: "block-long",
  118. value: ["256"]
  119. }
  120. ];
  121. function transform(): void {
  122. // 生成block_list,包含所有Block和input\output
  123. let block_list: PlumbBlock[] = [];
  124. block_list.push({
  125. id: input,
  126. name: "input",
  127. });
  128. for(let i = 0; i < blocks.length; ++i) {
  129. block_list.push({
  130. id: blocks[i].id,
  131. in_id: blocks[i].in_id,
  132. name: blocks[i].name,
  133. value: blocks[i].value,
  134. });
  135. }
  136. for(let i = 0; i < output.length; ++i) {
  137. let id = blocks.length + i;
  138. block_list.push({
  139. id: id,
  140. in_id: [output[i]],
  141. name: "output",
  142. });
  143. }
  144. // 生成树,根据block_list的in_id<->id的关系插入,当一个子级存在多个父级时,将子级插在id较小的父级下
  145. blocks_tree = { id: input, name: "input", children: [] }; // 初始化时直接把input插入
  146. for(let i = 0; i < block_list.length; ++i) {
  147. let in_id = block_list[i].in_id;
  148. let min: number = in_id[0]; // 除了input外都是存在in_id的,且循环不包含input
  149. for(let j = 1; j < in_id.length; ++j) {
  150. if(in_id[j] < min)
  151. min = in_id[j];
  152. }
  153. addChildren(blocks_tree, min, block_list[i]);
  154. }
  155. }
  156. function addChildren(tree: BlockTree, idx: number, block: PlumbBlock): void {
  157. let key: keyof BlockTree;
  158. let find: boolean = false;
  159. for(key in tree) {
  160. if(key == "id") {
  161. if(tree[key] != idx)
  162. break; // id不对,直接不用继续比较了
  163. else
  164. find = true; // 说明找到叶子了
  165. }
  166. }
  167. if(!find) {
  168. if('children' in tree)
  169. for(let i = 0; i < tree.children.length; ++i)
  170. addChildren(tree.children[i], idx, block);
  171. }
  172. else { // 找到叶子后把新的block插在叶子的children属性中
  173. // 确保有children属性
  174. if(!('children' in tree))
  175. tree.children = [];
  176. if('value' in block)
  177. tree.children.push({
  178. id: block.id,
  179. name: block.name,
  180. value: block.value,
  181. });
  182. else
  183. tree.children.push({
  184. id: block.id,
  185. name: block.name,
  186. });
  187. }
  188. }
  189. // 修改node的生成方式,使用d3的树状图生成
  190. function setNodeInfo(): void {
  191. let data = D3.hierachy(blocks_tree);
  192. let style = window.getcomputedStyle(document.getElementById('jsplumb')); // 获取元素的风格
  193. let canvas_width: number = Number(style.width.split('px')[0]);
  194. let canvas_height: number = Number(style.height.split('px')[0]);
  195. // 限制元素的位置
  196. let scale_width: number = 0.9;
  197. let scale_height: number = 0.9;
  198. // 创建树,根据jsplumb元素的尺寸来限制树的尺寸,这个size会和nodesize属性冲突
  199. let treeGenerator = D3.tree().size([canvas_width * scale_width, canvas_height * scale_height]);
  200. let treeData = treeGenerator(data);
  201. let nodes = treeData.descendants();
  202. node_list.value = nodes.map((item) => {
  203. return {
  204. id: item.data.id,
  205. name: item.data.name,
  206. left: item.x + "px",
  207. top: item.y + 20+ "px",
  208. };
  209. });
  210. for(let i = 0; i < blocks.length; ++i) {
  211. let in_id: number[] | undefined = blocks[i].in_id;
  212. if(in_id != undefined) {
  213. for(let j = 0; j < in_id.length; ++j)
  214. line_list.push([in_id[j], blocks[i].id);
  215. }
  216. };
  217. for(let i = 0; i < output.length; ++i)
  218. line_list.push([output[i], id);
  219. };
  220. function addEndpoints(): void {
  221. for(let i = 0; i < node_list.value.length; ++i) {
  222. let el = <Element>(document.getElementById(String(node_list.value[i].id)));
  223. jsPlumb_instance.draggable(el, <DragOptions>{ containment: "jsplumb" });
  224. if(node_list.value[i].name != "input") {
  225. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  226. isTarget: true,
  227. anchor: "Top",
  228. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  229. });
  230. }
  231. if(node_list.value[i].name != "output") {
  232. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  233. isSource: true,
  234. anchor: "Bottom",
  235. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  236. });
  237. }
  238. }
  239. };
  240. function drawLines(): void {
  241. for(let i = 0; i < line_list.length; ++i) {
  242. let start: Element = document.getElementById(String(line_list[i][0]));
  243. let end: Element = document.getElementById(String(line_list[i][1]));
  244. jsPlumb_instance.connect({
  245. source: start,
  246. target: end,
  247. });
  248. }
  249. };
  250. </script>
  251. <style scoped>
  252. .jsplumb {
  253. position: absolute,
  254. margin: 10px;
  255. left: 45%;
  256. width: 50%;
  257. height: 800px;
  258. box-sizing: bording-box;
  259. border: 1px solid black;
  260. }
  261. .nodes {
  262. position: absolute;
  263. min-width: 60px;
  264. height: 40px;
  265. color: black;
  266. border: 1px solid black;
  267. line-height: 40px;
  268. padding: 0 10px;
  269. }
  270. </style>

jsplumb+D3更多交互

修改数据格式

        为了便于存储和更新数据,也为了让逻辑更加清晰,先对数据格式做了以下修改:

1、拆分PlumbBlock接口,PlumbBlock为存储原始数据的最小单元,PlumbNode为画布显示的最小单元

  1. interface PlumbBlock {
  2. id: number;
  3. name: string;
  4. in_id?: number[] | undefined;
  5. value?: string[];
  6. };
  7. interface PlumbNode {
  8. id: number;
  9. name: string;
  10. left: string;
  11. top: string;
  12. }

2、将input、output、blocks合并成一个block_list

  1. let block_list: PlumbBlock = [];
  2. block_list = [
  3. {
  4. id: -1,
  5. name: "input",
  6. },
  7. {
  8. id: 0,
  9. in_id: [-1],
  10. name: "block",
  11. value: ["3"]
  12. },
  13. {
  14. id: 1,
  15. in_id: [0],
  16. name: "block-long",
  17. value: ["32"]
  18. },
  19. {
  20. id: 2,
  21. in_id: [1],
  22. name: "block",
  23. value: ["64"]
  24. },
  25. {
  26. id: 3,
  27. in_id: [2],
  28. name: "block-long",
  29. value: ["64"]
  30. },
  31. {
  32. id: 4,
  33. in_id: [1, 3],
  34. name: "block",
  35. value: ["128"]
  36. },
  37. {
  38. id: 5,
  39. in_id: [4],
  40. name: "block-long",
  41. value: ["128"]
  42. },
  43. {
  44. id: 6,
  45. in_id: [2, 5],
  46. name: "block",
  47. value: ["256"]
  48. },
  49. {
  50. id: 7,
  51. in_id: [6],
  52. name: "block-long",
  53. value: ["256"]
  54. },
  55. {
  56. id: 8,
  57. in_id: [6],
  58. name: "output"
  59. },
  60. {
  61. id: 9,
  62. in_id: [7],
  63. name: "output"
  64. }
  65. ];

优化页面交互效果

       修改jsplumb默认配置、template和css,实现鼠标悬停可以高亮节点和连线。

  1. <template>
  2. <div id="jsplumb" class="jsplumb">
  3. <div
  4. class="nodes"
  5. v-for="item in node_list"
  6. :key="item.id"
  7. :id="item.id"
  8. @mouseleave="mouseleave(item.id)"
  9. :style="{left: item.left, top: item.top}"
  10. >{{ item.name }}<div>
  11. </div>
  12. </template>
  13. <script lang="ts" setup>
  14. // 直接设置成jsplumb的全局属性了,但是要注意所有属性是首字母大写的
  15. let common: Object = {
  16. Overlays: [["Arrow", { width: 12, length: 12, location: 0.5 }]],
  17. Anchor: ["Top", "Bottom"],
  18. MaxConnections: -1, // 每个端点可以连接多条线
  19. Connector: ["Bezier", { curviness: 15 }],
  20. PaintStyle: { // 聚焦前的style
  21. stroke: "#99ccff",
  22. strokeWidth: 3,
  23. },
  24. HoverPaintStyle: { // 聚焦后的style
  25. stroke: "#0077cc",
  26. strokeWidth: 4,
  27. },
  28. Endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  29. EndpointStyle: { // 聚焦前的style
  30. stroke: "#77ccff",
  31. fill: "#ffffff",
  32. strokeWidth: 2,
  33. },
  34. EndpointHoverStyle: { // 聚焦后的style
  35. stroke: "#0077cc",
  36. fill: "#0077cc",
  37. strokeWidth: 2,
  38. },
  39. };
  40. // 移动节点后需要在鼠标离开后更新当前位置
  41. function mouseleave(id: number): void {
  42. let style = window.getcomputedStyle(document.getElementById(String(id)));
  43. for(let i = 0; i < node_list,value.length; ++i) {
  44. if(node_list.value[i].id === id) {
  45. node_list.value[i].left = style.left;
  46. node_list.vlaue[i].top = style.top;
  47. }
  48. }
  49. }
  50. </script>
  51. <style scoped>
  52. .jsplumb {
  53. position: absolute,
  54. margin: 10px;
  55. left: 45%;
  56. width: 50%;
  57. height: 800px;
  58. box-sizing: bording-box;
  59. border: 1px solid black;
  60. }
  61. .nodes {
  62. position: absolute;
  63. min-width: 60px;
  64. height: 40px;
  65. color: black;
  66. border: 1px solid black;
  67. background-color: #eeeeee;
  68. line-height: 40px;
  69. padding: 0 10px;
  70. }
  71. .nodes:hover{
  72. position: absolute;
  73. min-width: 60px;
  74. height: 40px;
  75. color: black;
  76. border: 1px solid black;
  77. background-color: #eeeeaa;
  78. line-height: 40px;
  79. padding: 0 10px;
  80. }
  81. </style>

        正常界面。

         鼠标悬停在节点上。

         鼠标悬停在连接线上。

双击弹出菜单

        双击节点或连接线,可以弹出操作菜单。

  1. <template>
  2. <div id="jsplumb" class="jsplumb">
  3. <div
  4. class="menu"
  5. v-if="show"
  6. :style="{
  7. left: menu_left,
  8. top: menu_top,
  9. }"
  10. >
  11. <el-button class="button" @click="remove" type="danger">删除</el-button>
  12. <el-button class="button" @click="cancel" type="primary">取消</el-button>
  13. </div>
  14. </div>
  15. </template>
  16. <script lang="ts" setup>
  17. let show = ref<boolean>(false); // 控制菜单的显示
  18. let menu_left = ref<string>(""); // 控制菜单的水平位置
  19. let menu_top = ref<string>(""); // 控制菜单的垂直位置
  20. // 节点双击弹出菜单,
  21. function dblclick(id: number): void {
  22. let style = window.getcomputedStyle(document.getElementById(String(id))); // 获取dom元素信息
  23. let x: string = Number(style.left.split('px')[0]) + Number(style.width.split('px')[0]) + "px"; // 想定位精确一点的话还应该加上padding、border等参数,这些都可以在style中获取
  24. let y: string = Number(style.top.split('px')[0]) + 'px';
  25. menu_left.value = x;
  26. menu_top.value = y;
  27. show.value = true;
  28. cur_type = DomType.node;
  29. cur_source_id = String(id);
  30. }
  31. // 连接线事件都在这儿
  32. function bindEvent(): void {
  33. // 双击弹出菜单
  34. jsPlumb_instance.bind("dblclick", function(info) {
  35. let style = window.getcomputedStyle(document.getElementById(info.sourceId));
  36. let x_1: string = Number(style.left.split('px')[0]) + Number(style.width.split('px')[0];
  37. let y_1: string = Number(style.top.split('px')[0]) + Number(style.height.split('px')[0]);
  38. style = window.getcomputedStyle(document.getElementById(info.targetIdId));
  39. let x_2: string = Number(style.left.split('px')[0]) + Number(style.width.split('px')[0];
  40. let y_2: string = Number(style.top.split('px')[0]);
  41. let x: string = (x_1 + x_2) / 2 + 'px';
  42. let y: string = (y_1 + y_2) / 2 + 'px';
  43. menu_left.value = x;
  44. menu_top.value = y;
  45. show.value = true;
  46. cur_type = DomType.connection;
  47. cur_source_id = info.sourceId;
  48. cur_source_id = info.targetId;
  49. });
  50. }
  51. </script>
  52. <style scoped>
  53. .menu {
  54. position:absolute;
  55. }
  56. </style>

         双击节点

         双击连接线

添加、删除操作

         实现节点或连接线的添加和删除。

  1. // 用于区分Dom元素的类型,做逻辑判断用
  2. enum DomType {
  3. empty,
  4. node,
  5. connection
  6. }
  7. let cur_type: DomType = DomType.empty;
  8. let cur_source_id: string = "";
  9. let cur_target_id: string = "";
  10. function remove(): void {
  11. if(cur_type === DomType.node && cur_source_id !== "") {
  12. let find: boolean = false;
  13. for (let i = 1; i < block_list.length; ++i) {
  14. if(String(block_list[i].id) === cur_source_id) {
  15. block_list.splice(i, 1);
  16. find = true;
  17. break;
  18. }
  19. }
  20. // 删除节点及其连接线
  21. jsPlumb_instance.remove(cur_source_id);
  22. }
  23. else if(cur_type === DomType.connect && cur_source_id !== "" && cur_target_id !== "") {
  24. let connections = jsPlumb_instance.getAllConnections(); // 找到所有连接
  25. for(let idx in connections) {
  26. if(connections[idx].sourceId === cur_source_id && connections[idx].targetId === cur_target_id) { // 筛选出首尾相同的连接并删除
  27. jsPlumb_instance.deleteConnection(connections[idx]);
  28. break;
  29. }
  30. }
  31. }
  32. show.value = false;
  33. cur_type = DomType.empty;
  34. }
  35. function cancel(): void {
  36. show.value = false;
  37. cur_type = DomType.empty;
  38. }
  39. // 连接线事件都在这儿
  40. function bindEvent(): void {
  41. // 连接节点,删除重复连接,并确保output节点只有一个输入
  42. jsPlumb_instance.bind("connection", function(info) {
  43. // target是output
  44. for (let i = 1; i < block_list.length; ++i) {
  45. if(String(block_list[i].id) === info.targetId && block_list[i].name === "output" && block_list[i].in_id.length > 0) {
  46. let arr = jsPlumb_instance.select({ target: info.targetId });
  47. if(arr.length > 1) {
  48. block_list.splice(i, 1);
  49. break;
  50. }
  51. }
  52. }
  53. // target不是output
  54. let arr = jsPlumb_instance.select({ source: info.sourceId, target: info.targetId });
  55. if(arr.length > 1)
  56. jsPlumb_instance.deleteConnection(info.connection);
  57. need_update.value = true;
  58. });
  59. // 删除连接线,更新数据
  60. jsPlumb_instance.bind("connectionDetached", function(info) {
  61. need_update.value = true;
  62. });
  63. }

        添加连接线。

         删除节点。

更新本地数据

        获取画布上的连接信息,更新本地数据。

  1. let need_update = ref<boolean>(false); // 由watch监视,决定是否更新数据
  2. // 连接线事件都在这儿
  3. function bindEvent(): void {
  4. // 连接节点,删除重复连接,并确保output节点只有一个输入
  5. jsPlumb_instance.bind("connection", function(info) {
  6. // ...
  7. need_update.value = true;
  8. });
  9. // 删除连接线,更新数据
  10. jsPlumb_instance.bind("connectionDetached", function(info) {
  11. need_update.value = true;
  12. });
  13. }
  14. // 更新block_list中的连接关系
  15. function update(): void {
  16. let connections = jsPlumb_instance.getAllConnections();
  17. // 先清空
  18. for(let i = 1; i < block_list.length; ++i)
  19. block_list[i].in_id.splice(0, block_list[i].in_id.length);
  20. // 插入新的连接线
  21. for(let i = 0; i < connections.length; ++i) {
  22. for(let j = 1; j < block_list.length; ++j) {
  23. if(String(block_list[j].id) === connection[i].targetId)
  24. block_list[j].in_id.push(Number(connections[i].sourceId));
  25. }
  26. }
  27. need_update.value = false;
  28. }
  29. // 监视need_update
  30. watch(
  31. () => need_update.value,
  32. (cur: boolean, pre: boolean) => {
  33. if(cur === true)
  34. update();
  35. }
  36. );

         删除一个节点后更新数据,可以看到id为1的节点和相关的in_id没有了。

整体代码

  1. <template>
  2. <div id="jsplumb" class="jsplumb">
  3. <div
  4. class="nodes"
  5. v-for="item in node_list"
  6. :key="item.id"
  7. :id="item.id"
  8. @mouseleave="mouseleave(item.id)"
  9. @dblclick="dblclick(item.id)"
  10. :style="{left: item.left, top: item.top}"
  11. >{{ item.name }}<div>
  12. <!--增加两个交互操作-->
  13. <div
  14. class="menu"
  15. v-if="show"
  16. :style="{
  17. left: menu_left,
  18. top: menu_top,
  19. }"
  20. >
  21. <el-button class="button" @click="remove" type="danger">删除</el-button>
  22. <el-button class="button" @click="cancel" type="primary">取消</el-button>
  23. </div>
  24. <!--增加右击弹出的菜单-->
  25. </div>
  26. </template>
  27. <script lang="ts" setup>
  28. import { jsPlumb } from 'jsplumb';
  29. import * as D3 from 'd3';
  30. import type {
  31. Element,
  32. DragOptions,
  33. EndpointOptions,
  34. EndpointSpec,
  35. jsPlumbInstance,
  36. Connection,
  37. } from 'jsplumb';
  38. import { ref, onBeforeonMount, onMounted, nextTick, watch } from 'vue';
  39. // 创建一个树的接口,必须是嵌套的
  40. interface BlockTree {
  41. id: number;
  42. name: string;
  43. value?: string[];
  44. children?: BlockTree[];
  45. }
  46. // 拆分接口,逻辑更清晰,PlumbBlock为存储原始数据的最小单元,PlumbNode为画布显示的最小单元
  47. interface PlumbBlock {
  48. id: number;
  49. name: string;
  50. in_id?: number[] | undefined;
  51. value?: string[];
  52. };
  53. interface PlumbNode {
  54. id: number;
  55. name: string;
  56. left: string;
  57. top: string;
  58. }
  59. // 用于区分Dom元素的类型,做逻辑判断用
  60. enum DomType {
  61. empty,
  62. node,
  63. connection
  64. }
  65. let jsPlumb_instance: jsPlumbInstance = null;
  66. let block_tree: BlockTree = { id: -100, name: "unknown" }; // 初始化
  67. let block_list: PlumbBlock = [];
  68. let node_list = ref<PlumbNode>([]);
  69. let line_list: number[][] = [];
  70. let show = ref<boolean>(false); // 控制菜单的显示
  71. let menu_left = ref<string>(""); // 控制菜单的水平位置
  72. let menu_top = ref<string>(""); // 控制菜单的垂直位置
  73. let cur_type: DomType = DomType.empty;
  74. let cur_source_id: string = "";
  75. let cur_target_id: string = "";
  76. let need_update = ref<boolean>(false); // 由watch监视,决定是否更新数据
  77. onBeforeonMount(() => {
  78. transform(); // 用来生成树
  79. });
  80. onMounted(() => {
  81. setNodeInfo(); // 移到这里是因为为了根据页面尺寸自适应的生成树,因此需要等jsplumb挂载完
  82. jsPlumb_instance = jsPlumb.getInstance();
  83. jsPlumb_instance.importDefaults(common);
  84. jsPlumb_instance.ready(function() {
  85. nextTick(() => { // 增加nextTick是为了等待树的元素都挂载完,这样addEndpoints中才能给元素添加端点
  86. addEndpoints();
  87. drawLines();
  88. bindEvent();
  89. })
  90. });
  91. });
  92. // 直接设置成jsplumb的全局属性了,但是要注意所有属性是首字母大写的
  93. let common: Object = {
  94. Overlays: [["Arrow", { width: 12, length: 12, location: 0.5 }]],
  95. Anchor: ["Top", "Bottom"],
  96. MaxConnections: -1, // 每个端点可以连接多条线
  97. Connector: ["Bezier", { curviness: 15 }],
  98. PaintStyle: { // 聚焦前的style
  99. stroke: "#99ccff",
  100. strokeWidth: 3,
  101. },
  102. HoverPaintStyle: { // 聚焦后的style
  103. stroke: "#0077cc",
  104. strokeWidth: 4,
  105. },
  106. Endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  107. EndpointStyle: { // 聚焦前的style
  108. stroke: "#77ccff",
  109. fill: "#ffffff",
  110. strokeWidth: 2,
  111. },
  112. EndpointHoverStyle: { // 聚焦后的style
  113. stroke: "#0077cc",
  114. fill: "#0077cc",
  115. strokeWidth: 2,
  116. },
  117. };
  118. block_list = [
  119. {
  120. id: -1,
  121. name: "input",
  122. },
  123. {
  124. id: 0,
  125. in_id: [-1],
  126. name: "block",
  127. value: ["3"]
  128. },
  129. {
  130. id: 1,
  131. in_id: [0],
  132. name: "block-long",
  133. value: ["32"]
  134. },
  135. {
  136. id: 2,
  137. in_id: [1],
  138. name: "block",
  139. value: ["64"]
  140. },
  141. {
  142. id: 3,
  143. in_id: [2],
  144. name: "block-long",
  145. value: ["64"]
  146. },
  147. {
  148. id: 4,
  149. in_id: [1, 3],
  150. name: "block",
  151. value: ["128"]
  152. },
  153. {
  154. id: 5,
  155. in_id: [4],
  156. name: "block-long",
  157. value: ["128"]
  158. },
  159. {
  160. id: 6,
  161. in_id: [2, 5],
  162. name: "block",
  163. value: ["256"]
  164. },
  165. {
  166. id: 7,
  167. in_id: [6],
  168. name: "block-long",
  169. value: ["256"]
  170. },
  171. {
  172. id: 8,
  173. in_id: [6],
  174. name: "output"
  175. },
  176. {
  177. id: 9,
  178. in_id: [7],
  179. name: "output"
  180. }
  181. ];
  182. function transform(): void {
  183. // 生成树,根据block_list的in_id<->id的关系插入,当一个子级存在多个父级时,将子级插在id较小的父级下
  184. block_tree = { id: input, name: "input", children: [] }; // 初始化时直接把input插入
  185. for(let i = 1; i < block_list.length; ++i) {
  186. let in_id = block_list[i].in_id;
  187. let min: number = in_id[0]; // 除了input外都是存在in_id的,且循环不包含input
  188. for(let j = 1; j < in_id.length; ++j) {
  189. if(in_id[j] < min)
  190. min = in_id[j];
  191. }
  192. addChildren(blocks_tree, min, block_list[i]);
  193. }
  194. }
  195. function addChildren(tree: BlockTree, idx: number, block: PlumbBlock): void {
  196. let key: keyof BlockTree;
  197. let find: boolean = false;
  198. for(key in tree) {
  199. if(key == "id") {
  200. if(tree[key] != idx)
  201. break; // id不对,直接不用继续比较了
  202. else
  203. find = true; // 说明找到叶子了
  204. }
  205. }
  206. if(!find) {
  207. if('children' in tree)
  208. for(let i = 0; i < tree.children.length; ++i)
  209. addChildren(tree.children[i], idx, block);
  210. }
  211. else { // 找到叶子后把新的block插在叶子的children属性中
  212. // 确保有children属性
  213. if(!('children' in tree))
  214. tree.children = [];
  215. if('value' in block)
  216. tree.children.push({
  217. id: block.id,
  218. name: block.name,
  219. value: block.value,
  220. });
  221. else
  222. tree.children.push({
  223. id: block.id,
  224. name: block.name,
  225. });
  226. }
  227. }
  228. // 修改node的生成方式,使用d3的树状图生成
  229. function setNodeInfo(): void {
  230. let data = D3.hierachy(blocks_tree);
  231. let style = window.getcomputedStyle(document.getElementById('jsplumb'), null); // 获取元素的风格
  232. let canvas_width: number = Number(style.width.split('px')[0]);
  233. let canvas_height: number = Number(style.height.split('px')[0]);
  234. // 限制元素的位置
  235. let scale_width: number = 0.9;
  236. let scale_height: number = 0.9;
  237. // 创建树,根据jsplumb元素的尺寸来限制树的尺寸,这个size会和nodesize属性冲突
  238. let treeGenerator = D3.tree().size([canvas_width * scale_width, canvas_height * scale_height]);
  239. let treeData = treeGenerator(data);
  240. let nodes = treeData.descendants();
  241. node_list.value = nodes.map((item) => {
  242. return {
  243. id: item.data.id,
  244. name: item.data.name,
  245. left: item.x + "px",
  246. top: item.y + 20+ "px",
  247. };
  248. });
  249. for(let i = 0; i < blocks_list.length; ++i) {
  250. let in_id: number[] | undefined = blocks_list[i].in_id;
  251. if(in_id != undefined) {
  252. for(let j = 0; j < in_id.length; ++j)
  253. line_list.push([in_id[j], blocks_list[i].id);
  254. }
  255. };
  256. };
  257. function addEndpoints(): void {
  258. for(let i = 0; i < node_list.value.length; ++i) {
  259. let el = <Element>(document.getElementById(String(node_list.value[i].id)));
  260. jsPlumb_instance.draggable(el, <DragOptions>{ containment: "jsplumb" });
  261. if(node_list.value[i].name != "input") {
  262. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  263. isTarget: true,
  264. anchor: "Top",
  265. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  266. });
  267. }
  268. if(node_list.value[i].name != "output") {
  269. jsPlumb_instance.addEndpoint(el, <EndpointOptions>{
  270. isSource: true,
  271. anchor: "Bottom",
  272. endpoint: <EndpointSpec>["Dot", { radius: 3 }],
  273. });
  274. }
  275. }
  276. };
  277. function drawLines(): void {
  278. for(let i = 0; i < line_list.length; ++i) {
  279. let start: Element = document.getElementById(String(line_list[i][0]));
  280. let end: Element = document.getElementById(String(line_list[i][1]));
  281. jsPlumb_instance.connect({
  282. source: start,
  283. target: end,
  284. });
  285. }
  286. };
  287. function remove(): void {
  288. if(cur_type === DomType.node && cur_source_id !== "") {
  289. let find: boolean = false;
  290. for (let i = 1; i < block_list.length; ++i) {
  291. if(String(block_list[i].id) === cur_source_id) {
  292. block_list.splice(i, 1);
  293. find = true;
  294. break;
  295. }
  296. }
  297. // 删除节点及其连接线
  298. jsPlumb_instance.remove(cur_source_id);
  299. }
  300. else if(cur_type === DomType.connect && cur_source_id !== "" && cur_target_id !== "") {
  301. let connections = jsPlumb_instance.getAllConnections(); // 找到所有连接
  302. for(let idx in connections) {
  303. if(connections[idx].sourceId === cur_source_id && connections[idx].targetId === cur_target_id) { // 筛选出首尾相同的连接并删除
  304. jsPlumb_instance.deleteConnection(connections[idx]);
  305. break;
  306. }
  307. }
  308. }
  309. show.value = false;
  310. cur_type = DomType.empty;
  311. }
  312. function cancel(): void {
  313. show.value = false;
  314. cur_type = DomType.empty;
  315. }
  316. // 移动节点后需要在鼠标离开后更新当前位置
  317. function mouseleave(id: number): void {
  318. let style = window.getcomputedStyle(document.getElementById(String(id)));
  319. for(let i = 0; i < node_list,value.length; ++i) {
  320. if(node_list.value[i].id === id) {
  321. node_list.value[i].left = style.left;
  322. node_list.vlaue[i].top = style.top;
  323. }
  324. }
  325. }
  326. // 节点双击弹出菜单,
  327. function dblclick(id: number): void {
  328. let style = window.getcomputedStyle(document.getElementById(String(id))); // 获取dom元素信息
  329. let x: string = Number(style.left.split('px')[0]) + Number(style.width.split('px')[0]) + "px"; // 想定位精确一点的话还应该加上padding、border等参数,这些都可以在style中获取
  330. let y: string = Number(style.top.split('px')[0]) + 'px';
  331. menu_left.value = x;
  332. menu_top.value = y;
  333. show.value = true;
  334. cur_type = DomType.node;
  335. cur_source_id = String(id);
  336. }
  337. // 连接线事件都在这儿
  338. function bindEvent(): void {
  339. // 双击弹出菜单
  340. jsPlumb_instance.bind("dblclick", function(info) {
  341. let style = window.getcomputedStyle(document.getElementById(info.sourceId));
  342. let x_1: string = Number(style.left.split('px')[0]) + Number(style.width.split('px')[0];
  343. let y_1: string = Number(style.top.split('px')[0]) + Number(style.height.split('px')[0]);
  344. style = window.getcomputedStyle(document.getElementById(info.targetIdId));
  345. let x_2: string = Number(style.left.split('px')[0]) + Number(style.width.split('px')[0];
  346. let y_2: string = Number(style.top.split('px')[0]);
  347. let x: string = (x_1 + x_2) / 2 + 'px';
  348. let y: string = (y_1 + y_2) / 2 + 'px';
  349. menu_left.value = x;
  350. menu_top.value = y;
  351. show.value = true;
  352. cur_type = DomType.connection;
  353. cur_source_id = info.sourceId;
  354. cur_source_id = info.targetId;
  355. });
  356. // 连接节点,删除重复连接,并确保output节点只有一个输入
  357. jsPlumb_instance.bind("connection", function(info) {
  358. // target是output
  359. for (let i = 1; i < block_list.length; ++i) {
  360. if(String(block_list[i].id) === info.targetId && block_list[i].name === "output" && block_list[i].in_id.length > 0) {
  361. let arr = jsPlumb_instance.select({ target: info.targetId });
  362. if(arr.length > 1) {
  363. block_list.splice(i, 1);
  364. break;
  365. }
  366. }
  367. }
  368. // target不是output
  369. let arr = jsPlumb_instance.select({ source: info.sourceId, target: info.targetId });
  370. if(arr.length > 1)
  371. jsPlumb_instance.deleteConnection(info.connection);
  372. need_update.value = true;
  373. });
  374. // 删除连接线,更新数据
  375. jsPlumb_instance.bind("connectionDetached", function(info) {
  376. need_update.value = true;
  377. });
  378. }
  379. // 更新block_list中的连接关系
  380. function update(): void {
  381. let connections = jsPlumb_instance.getAllConnections();
  382. // 先清空
  383. for(let i = 1; i < block_list.length; ++i)
  384. block_list[i].in_id.splice(0, block_list[i].in_id.length);
  385. // 插入新的连接线
  386. for(let i = 0; i < connections.length; ++i) {
  387. for(let j = 1; j < block_list.length; ++j) {
  388. if(String(block_list[j].id) === connection[i].targetId)
  389. block_list[j].in_id.push(Number(connections[i].sourceId));
  390. }
  391. }
  392. need_update.value = false;
  393. }
  394. // 监视need_update
  395. watch(
  396. () => need_update.value,
  397. (cur: boolean, pre: boolean) => {
  398. if(cur === true)
  399. update();
  400. }
  401. );
  402. </script>
  403. <style scoped>
  404. .jsplumb {
  405. position: absolute,
  406. margin: 10px;
  407. left: 45%;
  408. width: 50%;
  409. height: 800px;
  410. box-sizing: bording-box;
  411. border: 1px solid black;
  412. }
  413. .nodes {
  414. position: absolute;
  415. min-width: 60px;
  416. height: 40px;
  417. color: black;
  418. border: 1px solid black;
  419. background-color: #eeeeee;
  420. line-height: 40px;
  421. padding: 0 10px;
  422. }
  423. .nodes:hover{
  424. position: absolute;
  425. min-width: 60px;
  426. height: 40px;
  427. color: black;
  428. border: 1px solid black;
  429. background-color: #eeeeaa;
  430. line-height: 40px;
  431. padding: 0 10px;
  432. }
  433. .menu {
  434. position:absolute;
  435. }
  436. </style>

参考资料

jsPlumb初认识 - 知乎 (zhihu.com)

jsPlumb 基本概念 - 简书 (jianshu.com)

Overview | jsPlumb Documentation (jsplumbtoolkit.com)

 jsplumb 中文基础教程 (wdd.js.org)

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

闽ICP备14008679号