欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于canvas的流程编辑器

程序员文章站 2023-11-09 17:48:46
今年由于项目上需要给客户的流程管理系统进行升级,其中包含流程的可视化。于是在网上找一些可以用的*,考察了D3,js、GooFlow.js、G6-Editor等工具后,发现D3,js学习成本太高,G6-Editor功能基本够用,但是不能放大缩小图形和移动连接线是硬伤,而且GooFlow.js和G6- ......

        今年由于项目上需要给客户的流程管理系统进行升级,其中包含流程的可视化。于是在网上找一些可以用的*,考察了d3,js、gooflow.js、g6-editor等工具后,发现d3,js学习成本太高,g6-editor功能基本够用,但是不能放大缩小图形和移动连接线是硬伤,而且gooflow.js和g6-editor目前已经闭源,于是就决定自己试着写一个流程编辑器。

        由于之前画流程图基本使用的都是visio,所以编辑器的操作风格基本和visio一致,也吸收了一些g6-editor的操作风格。

        html内容如下:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>test page</title>
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <link rel="shortcut icon" href="assets/img/favicon.jpg">
        <link rel="stylesheet" href="assets/css/bootstrap.min.css" type="text/css" />
        <link rel="stylesheet" href="assets/css/font-awesome.min.css" type="text/css" />
        <link rel="stylesheet" href="assets/css/editor.css" type="text/css" />
    </head>
    <body>
        <div style="width:99%">
            <div id="toolbar" class="toolbar">
                <i data-command="undo" class="fa fa-mail-reply" title="撤销"></i>
                <i data-command="redo" class="fa fa-mail-forward" title="重做"></i>
                <i data-command="delete" class="fa fa-trash-o" title="删除"></i>
                <i data-command="save" class="fa fa-save" title="保存"></i>
            </div>
            <div class="row" style="width:99%">
                <div class="col-md-2">
                    <div id="itempannel" class="itempannel">
                        <div class="node" data-type="node" data-shape="capsule" data-size="80*40" data-label="开始" data-color="rgba(200,255,200,1)" data-edgecolor="rgb(10,255,10,1)" >
                            <img draggable="false" src="assets/img/start.svg" alt="" scrset="">
                        </div>
                        <div class="node" data-type="node" data-shape="rect" data-size="100*50" data-label="常规节点" data-color="#e6f7ff" data-edgecolor="#1890ff" >
                            <img draggable="false" src="assets/img/normal.svg" alt="" scrset="">
                        </div>
                        <div class="node" data-type="node" data-shape="rhomb" data-size="100*80" data-label="判断" data-color="#e6fffb" data-edgecolor="#5cdbd3" >
                            <img draggable="false" src="assets/img/judge.svg" alt="" scrset="">
                        </div>
                        <div class="node" data-type="node" data-shape="capsule" data-size="80*40" data-label="结束" data-color="rgba(255,200,200,1)" data-edgecolor="rgb(255,50,50,1)" >
                            <img draggable="false" src="assets/img/end.svg" alt="" scrset="">
                        </div>
                    </div>
                </div>
                <div class="col-md-7">
                    <div id="canvas"></div>
                </div>
                <div class="col-md-3">
                    <div id="detailpannel" class="detailpannel">
                        <div><b>属性详情</b></div>
                        <div id="nodedetail" style="display:none">
                            <div class="row">
                                <label class="col-sm-4 control-label">
                                    节点名称
                                </label>
                                <div class="col-sm-8">
                                    <input id="nodename" type="text" class="form-control" />
                                </div>
                            </div>
                            <div class="row">
                                <label class="col-sm-4 control-label">
                                    字体大小
                                </label>
                                <div class="col-sm-8">
                                    <input id="fontsize_node" type="text" class="form-control" />
                                </div>
                            </div>
                            <div class="row">
                                <label class="col-sm-4 control-label">
                                    自定义属性
                                </label>
                                <div class="col-sm-8">
                                    <input id="nodecustom" type="text" class="form-control" />
                                </div>
                            </div>
                        </div>
                        <div id="linedetail" style="display:none">
                            <div class="row">
                                <label class="col-sm-4 control-label">
                                    线条名称
                                </label>
                                <div class="col-sm-8">
                                    <input id="linename" type="text" class="form-control" />
                                </div>
                            </div>
                            <div class="row">
                                <label class="col-sm-4 control-label">
                                    字体大小
                                </label>
                                <div class="col-sm-8">
                                    <input id="fontsize_line" type="text" class="form-control" />
                                </div>
                            </div>
                            <div class="row">
                                <label class="col-sm-4 control-label">
                                    自定义属性
                                </label>
                                <div class="col-sm-8">
                                    <input id="linecustom" type="text" class="form-control" />
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <script type="text/javascript" src="assets\js\popper.min.js"></script>
        <script type="text/javascript" src="assets\js\jquery.min.js"></script>
        <script type="text/javascript" src="assets\js\bootstrap.min.js"></script>
        <script type="text/javascript" src="assets\js\grapheditor.js"></script>
        <script type="text/javascript" src="assets\js\index.js"></script>
    </body>
</html>

        其中grapheditor.js就是编辑器的js文件,编辑器的画布加载在id为canvas的容器中。

        index.js文件内容如下:

const data = {};
//节点格式
data.nodes = [
    {
        color:"rgba(200,200,255,1)",
        customproperties: {
            nodestyle: "11"
        },
        edgecolor:"#1890ff",
        id: "9471a484-7a2e-4ca9-949d-6ec4b495a1a2",
        index: 1,
        label: "测试加载节点",
        shape: "rect",
        size: "100*50",
        type: "node",
        x: 282,
        y: 222
    },
    {
        color:"rgba(200,200,255,1)",
        customproperties: {
            nodestyle: "22"
        },
        edgecolor:"#1890ff",
        id: "9471a484-7a2e-4ca9-949d-6ec4b495a1a3",
        index: 2,
        label: "测试加载判断",
        shape: "rhomb",
        size: "100*80",
        type: "node",
        x: 282,
        y: 422,
        fontsize: "12px"
    }
]
//线条格式
data.lines = [
    {
        color:"rgba(0,0,0,1)",
        customproperties: {
            btnstyle: "test"
        },
        index: 3,
        label: "测试线条1",
        fontsize: "12px",
        fromconorder: 3,
        source: "9471a484-7a2e-4ca9-949d-6ec4b495a1a2",
        type: "line",
        endpoint: { x: 81, y: 210 },
        inflexionpoint: [
            { x: 282, y: 272 },
            { x: 81, y: 272 }
        ]
    },
    {
        color:"rgba(0,0,0,1)",
        customproperties: {
            btnstyle: "test"
        },
        index: 4,
        label: "测试线条2",
        fontsize: "14px",
        toconorder: 1,
        startpoint: { x: 555, y: 447 },
        target: "9471a484-7a2e-4ca9-949d-6ec4b495a1a3",
        type: "line",
        inflexionpoint: [
            { x: 555, y: 357 },
            { x: 282, y: 357 }
        ]
    }
]
//创建编辑器
const editor = new grapheditor();
//编辑器加载数据
//editor.load(data);

//绑定元素容器
editor.itempannel = 'itempannel';
//绑定详细属性栏
editor.detailpannel = 'detailpannel';
//绑定工具栏
editor.toolbar = 'toolbar';
const nodedetail = $('#nodedetail');
const linedetail = $('#linedetail');
const nodename = $('#nodename');
const linename = $('#linename');
const nodecustom = $('#nodecustom');
const linecustom = $('#linecustom');
const nodefontsize = $('#fontsize_node');
const linefontsize = $('#fontsize_line');

//选择元素事件
editor.on('selectedelement', function(e) {
    if(e.element.isnode){
        linedetail.hide();
        nodedetail.show();
        nodename.val(e.element.label);
        nodefontsize.val(e.element.fontsize);
        nodecustom.val(e.element.customproperties.nodestyle);
    } else if (e.element.isline){
        nodedetail.hide();
        linedetail.show();
        linename.val(e.element.label);
        linefontsize.val(e.element.fontsize);
        linecustom.val(e.element.customproperties.btnstyle);
    }
});
//点击画布事件
editor.on('click', function(e) {
    if(!e.element){
        nodedetail.hide();
        linedetail.hide();
    }
});
//撤销事件
editor.on('undo', function(e) {
    nodedetail.hide();
    linedetail.hide();
    //console.log(e.data);
});
//重做事件
editor.on('redo', function(e) {
    nodedetail.hide();
    linedetail.hide();
    //console.log(e.data);
});
//保存事件
editor.on('save', function(e) {console.log(e.data)});

nodename.change(function(e){
    updateeditor(e, 'label');
});

linename.change(function(e){
    updateeditor(e, 'label');
});

nodefontsize.change(function(e){
    updateeditor(e, 'fontsize');
});

linefontsize.change(function(e){
    updateeditor(e, 'fontsize');
});

nodecustom.change(function(e){
    updateeditor(e, 'nodestyle');
});

linecustom.change(function(e){
    updateeditor(e, 'btnstyle');
});

function updateeditor(e, name){
    const property = {};
    property.name = name;
    property.value = $('#' +e.target.id).val();
    if (editor.selectedelement){
        editor.update(editor.selectedelement.id, property);
    };
}

grapheditor方法列表:

  • load(data):用于加载数据,data的结构参考index.js。

node节点的属性如下:

color:节点填充颜色
edgecolor:节点边框颜色
shape:“rect”为矩形,“rhomb”为菱形,“capsule”为胶囊
id:节点编号
index:节点层级
label:文字内容
fontsize:文字大小
size:节点的长和宽,例如“100*50”
type:“node”
x:节点x轴坐标
y:节点y轴坐标
customproperties:自定义属性,用于保存业务相关数据
 
line线条的属性如下:
color:线条颜色
id:线条编号
index:线条层级
label:文字内容
fontsize:文字大小
type:“line”
source:线条起始节点的编号
target:线条结束节点的编号
fromconorder:起始节点对应的锚点编号
toconorder:结束节点对应的锚点编号
startpoint:起始点坐标,用于无起始节点情况
endpoint:结束点坐标,用于无结束节点情况
inflexionpoint:线条拐点集合
  • update(id,property)

id:元素的编号

property:{ name: 要更新的属性名称, value:更新的值 }

grapheditor事件列表:

  • selectedelement:选中任何canvas元素触发,事件对象的element属性存放选中的元素
  • click:点击canvas容器触发
  • undo:撤销操作触发
  • redo:重做操作触发
  • save:保存操作触发,事件对象的data属性存放画布中所有的元素,编辑器对象的data属性也包含画布所有元素

grapheditor快捷键列表:

  • delete:删除画布上的元素
  • ctrl+z:撤销
  • ctrl+y:重做
  • ctrl+s:保存

 demo下载地址:https://files.cnblogs.com/files/lixincloud/grapheditordemo.rar