基於canvas的流程編輯器

来源:https://www.cnblogs.com/lixincloud/archive/2019/11/10/11831095.html
-Advertisement-
Play Games

今年由於項目上需要給客戶的流程管理系統進行升級,其中包含流程的可視化。於是在網上找一些可以用的輪子,考察了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


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 查看防火牆systemctl status firewalld重啟防火牆systemctl start firewalld 1、mysql 首先關閉防火牆 systemctl stop firewalld 1.1 檢查系統是否已經安裝過mysql rpm -qa|grep mariadb 如果查詢到 ...
  • [TOC] 聲明:本文同步發表於 MongoDB 中文社區,傳送門: "http://www.mongoing.com/archives/27310" 背景 最近線上的一個工單分析服務一直不大穩定,監控平臺時不時發出資料庫操作超時的告警。 運維兄弟溝通後,發現在每天凌晨1點都會出現若幹次的業務操作失 ...
  • 上一篇筆記將開始定義的存儲結構處理了一下,將FormItems數組中的表單項都拿到mongodb document的最外層,和以前的關係型數據類似,之不過好多列都是動態的,不固定,不過這並沒有什麼影響。結果就是方便我們更好的查詢和統計;還有一點就是轉換之後從伺服器端返回客戶端的對象也是如此,這樣更加 ...
  • 背景 現在主流的資料庫系統的故障恢復邏輯都是基於經典的ARIES協議,也就是基於undo日誌+redo日誌的來進行故障恢復。redo日誌是物理日誌,一般採用WAL(Write-Ahead-Logging)機制,所以也稱redo日誌為wal日誌,redo日誌記錄了所有數據的變更,undo日誌是邏輯日誌 ...
  • 廢話少說,直接上SQL代碼(有興趣的測試驗證一下),下麵這個查詢語句為什麼將2008-11-27的記錄查詢出來了呢?這個是同事遇到的一個問題,個人設計了一個例子。 USE AdventureWorks2014;GOSELECT * FROM [Person].[Person]WHERE Modifi... ...
  • java連接sqlserver Spring中連接sqlserver C 連接sqlserver QT連接資料庫 ...
  • 去除資料庫登錄界面的所有用戶信息 查詢姓名中第二個字與第三個字相同: 用戶授權 1 創建用戶 2 增刪改查授權 3 創建表 4 存儲過程授權 5 禁止對錶授權 6 回收許可權 7 刪除表 8 修改列 9 創建一個簡單的登錄,登錄名為:newlogin;登錄密碼:123456;預設資料庫:master, ...
  • 一、開啟慢查詢日誌首先需要瞭解四個參數: slow_query_log # 是否開啟慢查詢日誌,預設OFF,開啟則設置為 ON。 slow_query_log_file # 慢查詢日誌文件存儲位置。 log_queries_not_using_indexes # 是否把沒有使用到索引的SQL記錄到日 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...