其他分享
首页 > 其他分享> > 基于JsPlumb设计的Web拓扑图编辑器

基于JsPlumb设计的Web拓扑图编辑器

作者:互联网

Easy editor

项目介绍

Easy Editor 是基于 VUE+ElementUI+JsPlumb 的拓扑编辑器,通过该编辑器你可以实现拓扑图绘制,拓扑图的修改等功能

节点拖拽功能实现流程

通过 vuedraggable 插件来实现左侧菜单的拖拽,拖拽结束后回调 end 方法,根据鼠标所在的位置添加一个节点信息,使用 jsplumb 来管理该节点,设置该节点可拖拽、连线 并注册相关的事件。

效果图

在这里插入图片描述

功能

操作说明

使用说明

流程图数据格式

{
  "name": "流程C",
  "nodeList": [
    {
      "id": "nodeA",
      "name": "流程B-节点A",
      "type": "task",
      "left": "18px",
      "top": "223px",
      "ico": "el-icon-user-solid",
      "state": "success"
    },
    {
      "id": "nodeB",
      "type": "task",
      "name": "流程B-节点B",
      "left": "351px",
      "top": "96px",
      "ico": "el-icon-goods",
      "state": "error"
    },
    {
      "id": "nodeC",
      "name": "流程B-节点C",
      "type": "task",
      "left": "354px",
      "top": "351px",
      "ico": "el-icon-present",
      "state": "warning"
    },
    {
      "id": "nodeD",
      "name": "流程B-节点D",
      "type": "task",
      "left": "723px",
      "top": "215px",
      "ico": "el-icon-present",
      "state": "running"
    }
  ],
  "lineList": [
    {
    "from": "nodeA",
    "to": "nodeB",
    "label": "条件AB",
    "connector": "Bezier",
    "paintStyle": { "strokeWidth": 2, "stroke": "#1879FF" }
    },
    {
      "from": "nodeB",
      "to": "nodeC",
      "label": "条件B"
      "connector": "Bezier",
      "paintStyle": { "strokeWidth": 2, "stroke": "#1879FF" }
    }
  ]
}

data 参数说明

参数描述
name流程图名称

nodeList 参数说明

参数描述可选值
id标识唯一的节点
name节点名称
type节点类型
left节点在页面上的 X 坐标
top节点在页面上的 Y 坐标
ico节点显示的图标element上的icon名
state节点状态success、error、warning、running

lineList 参数说明

参数描述可选值
from连线的起始节点的 ID
to连线的终点节点 ID
label连线说明
connector连线风格StateMachine、Flowchart,Bezier、Straight(默认为Flowchart)
paintStyle连线样式如:{ “strokeWidth”: 2, “stroke”: “#1879FF” } strokeWidth为连线宽度,stroke为连线颜色

自定义节点列表数据格式

自定义的节点列表数据写在node_menu.vue文件中的menuList变量中

 menuList: [
        {
          id: "1",
          type: "group",
          name: "接口节点",
          ico: "el-icon-video-play",
          children: [
            {
              id: "11",
              level: "1-1",
              type: "task1",
              name: "数据接入",
              ico: "el-icon-time",
              state: "success",
              // 自定义覆盖样式
              style: {
                "backgroundColor": "red"
              }
            }, {
              id: "12",
              level: "1-2",
              type: "task2",
              name: "接口调用",
              ico: "el-icon-odometer",
              state: "success",
              // 自定义覆盖样式
              style: {}
            }
          ]
        },
        {
          id: "2",
          type: "group",
          name: "工具节点",
          ico: "el-icon-video-pause",
          children: [
            {
              id: "21",
              level: "2-1",
              type: "end",
              name: "流程结束",
              ico: "el-icon-caret-right",
              state: "success",
              // 自定义覆盖样式
              style: {}
            }, {
              id: "22",
              level: "2-2",
              type: "over",
              name: "数据重置",
              ico: "el-icon-shopping-cart-full",
              state: "success",
              // 自定义覆盖样式
              style: {}
            }
          ]
        }
      ]

menuList参数说明

参数描述可选值
id节点分组的id名
type类别group
name节点分组的名称
ico节点分组的图标element-ui中的icon名或iconfont上的名称
children节点分组下的所有节点

children参数说明

参数描述可选值
id节点分组的id名
level节点层级
type节点类别注意:这里的type值需要是唯一的,否则无法正常新增节点元素
name节点分组的图标element-ui中的icon名或iconfont上的名称
state节点状态success、error、warning、running
style自定义覆盖样式

流程图绘制实现流程

在这里插入图片描述

使用方式:

一、以独立项目使用

# 下载工程
git clone  https://gitee.com/save_money/Easy-Editor.git

# 安装依赖包
npm install

# 启动
npm run dev

# 访问地址
 http://localhost:8080

Gitee

https://gitee.com/save_money/Easy-Editor

参考资料

名称地址说明
jsplumbhttp://jsplumb.github.io/jsplumb/connections.html#sourcefilter官网API文档
vue-codemirrorhttps://github.surmon.me/vue-codemirror/代码编辑器
vuedraggable<https://sortablejs.github.io/Vue.Draggable/#/simple>节点拖拽
vue-json-viewerhttps://github.com/chenfengjw163/vue-json-viewerjson数据查看
domtoimagehttps://github.com/tsayen/dom-to-image#readmeweb截图工具
js-yamlhttps://github.com/nodeca/js-yamlyaml数据转换

标签:Web,ico,拓扑图,节点,JsPlumb,icon,type,id,name
来源: https://blog.csdn.net/weixin_39085822/article/details/120281262