jsplumb实现流程图

本篇文章介绍使用jsplumb实现的一个流程图,将实现效果和代码贴到下面,由于初次使用jsplumb,代码写的比较粗糙。

本文章的工程代码可以点击查看下载,欢迎一起讨论学习。

流程图使用工具汇总

效果图

image.png

源代码

<!DOCTYPE html>
<html lang="en">

<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>Document</title>
  <style>
    #diagramContainer {
      font-size: smaller;   
      padding: 20px;
      height: 400px;
      border: 1px solid gray;
      background: #fff;
      background-image: 
        linear-gradient(#bab5b54d 1px, transparent 0), 
        linear-gradient(90deg, #bab5b54d 1px, transparent 0), 
        linear-gradient(#bab5b54d 1px, transparent 0), 
        linear-gradient(90deg, #bab5b54d 1px, transparent 0);
      background-size: 15px 15px, 15px 15px, 75px 75px, 75px 75px;
    }

    .rectangle-size {
      position: absolute;
      text-align: center;
      line-height: 40px;
      height: 40px;
      width: 100px;
      border: 2px solid #000;
      border-radius: 5px;
    }

    .circle-size {
      position: absolute;
      text-align: center;
      line-height: 100px;
      height: 100px;
      width: 100px;
      border: 2px solid #000;
      border-radius: 50px;
    }

    .cst-label {
      background-color: white; 
      padding: 5px;
    }

    .dim-color {
      color: #a2a1a1;
      border-color: #a2a1a1;
    }
  </style>
</head>

<body>
  <div id="diagramContainer">
    <div id="alert_occur" class="rectangle-size">告警发生</div>
    <div id="alert_sync" class="rectangle-size" style="left: 200px;">告警同步</div>
    <div id="alert_storage" class="rectangle-size" style="left: 400px;" >告警入库</div>
    <div id="alert_conv" class="rectangle-size" style="left: 600px;">创建/收敛单子</div>
    <div id="alert_analysis" class="circle-size" style="left: 400px; top: 150px; background-color: #8ec2eb">告警分析</div>

    <div id="alert_ass_analysis" class="rectangle-size" style="left: 540px; top: 100px;">告警XX分析</div>
    <div id="alert_ass_sync" class="rectangle-size" style="left: 700px; top: 100px;">同步XX信息</div>
    <div id="alert_reason_analysis" name="alert_reason_analysis" class="rectangle-size" style="left:860px; top: 100px;">告警YY分析</div>
    <div id="alert_reason_sync" name="alert_reason_analysis" class="rectangle-size" style="left: 1020px; top: 100px;">同步YY分析</div>

    <div id="alert_std_analysis" name="alert_std_analysis" class="rectangle-size" style="left: 540px; top: 180px;">ZZ分析</div>
    <div id="alert_std_sync" name="alert_std_analysis" class="rectangle-size" style="left: 700px; top: 180px;">同步ZZ分析</div>

    <div id="alert_check_analysis" name="alert_check_analysis" class="rectangle-size" style="left: 540px; top: 260px;">MM分析</div>
    <div id="alert_check_sync" name="alert_check_analysis" class="rectangle-size" style="left: 700px; top: 260px;">同步MM分析</div>
  </div>
  <script src="./js/jquery-1.11.3.js"></script>
  <script src="./js/jquery-ui.js"></script>
  <script src="./js/jquery.jsplumb.js"></script>

  <script>
    /* global jsPlumb */
    function makeStyle(flag) {
      let config = {};
      config.connectorPaintStyle = {
        lineWidth: 1,
        strokeStyle: flag == 'dim' ? '#a2a1a1' : 'black',
        joinstyle: 'round',
        outlineColor: '',
        outlineWidth: ''
      };

      // 鼠标悬浮在连接线上的样式
      config.connectorHoverStyle = {
        lineWidth: 2,
        strokeStyle: '#4caf50',
        outlineWidth: 10,
        outlineColor: ''
      };

      return {
        // 端点形状
        endpoint: ['Dot', {
          radius: 6,
          fill: flag == 'dim' ? '#a2a1a1' : 'black'
        }],
        // 连接线的样式
        connectorStyle: config.connectorPaintStyle,
        connectorHoverStyle: config.connectorHoverStyle,
        // 端点的样式
        paintStyle: {
          fillStyle: flag == 'dim' ? '#a2a1a1' : 'black',
          radius: 4
        },
        hoverPaintStyle: {
          fillStyle: '#4caf50',
          strokeStyle: '#4caf50'
        },
        isSource: true,
        connector: ['Straight', {
          gap: 0,
          cornerRadius: 5,
          alwaysRespectStubs: true
        }],
        isTarget: true,
        // 设置连接点最多可以链接几条线
        maxConnections: -1,
        connectorOverlays: [
          ['Arrow', {
            width: 8,
            length: 10,
            location: 1
          }]
        ]
      };
    }
    
    let config = {
      baseStyle: makeStyle('base'),
      dimStyle: makeStyle('dim')
    };
    let connections = {};

    jsPlumb.ready(function () {
      let nodes_data = {};    
      let alert_nodes = ["alert_storage", "alert_conv", "alert_ass_analysis"]
      let analysis_nodes = ["alert_reason_analysis", "alert_std_analysis", "alert_check_analysis"];
      alert_nodes.map(item => nodes_data[item] = {
        exist: true,
        cost: (Math.random() * 10).toFixed(1)
      });
      analysis_nodes.map(item => nodes_data[item] = {
        exist: Math.random() * 10 > 3,
        cost: (Math.random() * 10).toFixed(1)
      });
      let pointStyle = config.baseStyle;

      jsPlumb.setContainer('diagramContainer');   
      jsPlumb.addEndpoint('alert_occur', {uuid: 'alert_occur_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_sync', {uuid: 'alert_sync_l', anchor: 'Left'}, pointStyle);
      jsPlumb.addEndpoint('alert_sync', {uuid: 'alert_sync_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_storage', {uuid: 'alert_storage_l', anchor: 'Left'}, pointStyle);
      jsPlumb.addEndpoint('alert_storage', {uuid: 'alert_storage_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_storage', {uuid: 'alert_storage_b', anchor: 'Bottom'}, pointStyle);
      jsPlumb.addEndpoint('alert_conv', {uuid: 'alert_conv_l', anchor: 'Left'}, pointStyle);
      jsPlumb.addEndpoint('alert_analysis', {uuid: 'alert_analysis_t', anchor: 'Top'}, pointStyle);   
      jsPlumb.addEndpoint('alert_analysis', {uuid: 'alert_analysis_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_ass_analysis', {uuid: 'alert_ass_analysis_l', anchor: 'Left'}, pointStyle);
      jsPlumb.addEndpoint('alert_ass_analysis', {uuid: 'alert_ass_analysis_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_ass_sync', {uuid: 'alert_ass_sync_l', anchor: 'Left'}, pointStyle);

      if (nodes_data.alert_reason_analysis.exist) {
        pointStyle = config.baseStyle;
      } else {
        pointStyle = config.dimStyle;
      }
      jsPlumb.addEndpoint('alert_ass_sync', {uuid: 'alert_ass_sync_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_reason_analysis', {uuid: 'alert_reason_analysis_l', anchor: 'Left'}, pointStyle);
      jsPlumb.addEndpoint('alert_reason_analysis', {uuid: 'alert_reason_analysis_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_reason_sync', {uuid: 'alert_reason_sync_l', anchor: 'Left'}, pointStyle);

      if (nodes_data.alert_std_analysis.exist) {
        pointStyle = config.baseStyle;
      } else {
        pointStyle = config.dimStyle;
      }
      jsPlumb.addEndpoint('alert_std_analysis', {uuid: 'alert_std_analysis_l', anchor: 'Left'}, pointStyle);
      jsPlumb.addEndpoint('alert_std_analysis', {uuid: 'alert_std_analysis_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_std_sync', {uuid: 'alert_std_sync_l', anchor: 'Left'}, pointStyle);

      if (nodes_data.alert_check_analysis.exist) {
        pointStyle = config.baseStyle;
      } else {
        pointStyle = config.dimStyle;
      }
      jsPlumb.addEndpoint('alert_check_analysis', {uuid: 'alert_check_analysis_l', anchor: 'Left'}, pointStyle);
      jsPlumb.addEndpoint('alert_check_analysis', {uuid: 'alert_check_analysis_r', anchor: 'Right'}, pointStyle);
      jsPlumb.addEndpoint('alert_check_sync', {uuid: 'alert_check_sync_l', anchor: 'Left'}, pointStyle);

      jsPlumb.connect({uuids: ['alert_occur_r', 'alert_sync_l']});
      let alert_storage = jsPlumb.connect({uuids: ['alert_sync_r', 'alert_storage_l']});
      alert_storage.addOverlay(['Custom', {
        create: function (component) {
          return $('<span style="background-color: white; padding: 5px;">过滤</span>');
        },
        location: 0.5
      }]);
      connections['alert_storage'] = alert_storage;

      let alert_conv = jsPlumb.connect({uuids: ['alert_storage_r', 'alert_conv_l']});
      connections['alert_conv'] = alert_conv;
   
      jsPlumb.connect({uuids: ['alert_storage_b', 'alert_analysis_t']});
      let alert_ass_analysis = jsPlumb.connect({uuids: ['alert_analysis_r', 'alert_ass_analysis_l']});
      connections['alert_ass_analysis'] = alert_ass_analysis;
      jsPlumb.connect({uuids: ['alert_ass_analysis_r', 'alert_ass_sync_l']});
      let alert_reason_analysis = jsPlumb.connect({uuids: ['alert_ass_sync_r', 'alert_reason_analysis_l']});
      connections['alert_reason_analysis'] = alert_reason_analysis;
      jsPlumb.connect({uuids: ['alert_reason_analysis_r', 'alert_reason_sync_l']});

      let alert_std_analysis = jsPlumb.connect({uuids: ['alert_analysis_r', 'alert_std_analysis_l']});
      connections['alert_std_analysis'] = alert_std_analysis;
      jsPlumb.connect({uuids: ['alert_std_analysis_r', 'alert_std_sync_l']});

      let alert_check_analysis = jsPlumb.connect({uuids: ['alert_analysis_r', 'alert_check_analysis_l']});
      connections['alert_check_analysis'] = alert_check_analysis;
      jsPlumb.connect({uuids: ['alert_check_analysis_r', 'alert_check_sync_l']});

      jsPlumb.draggable(
        $(".rectangle-size,.circle-size"), 
        {containment: 'diagramContainer'}
      );

      console.info(nodes_data);
      displayTimeCost(nodes_data);
    });

    function displayTimeCost(nodes_data) {
      for (let con in nodes_data) {
        debugger
        if (!nodes_data[con].exist) {
          $(`[name=${con}]`).addClass('dim-color');
          continue;
        }

        let color = nodes_data[con].cost > 1 ? 'crimson' : '#4CAF50';
        connections[con].addOverlay(['Custom', {
          create: function (component) {
            return $(`<p style="color: white; background-color: ${color}; padding: 2px; border-radius: 5px; margin-left: 100px; margin-top: 18px; font-size: xx-small;">耗时${nodes_data[con].cost}s</p>`);
          },
          location: 1,
          id: con
        }]);
      }
    }
  </script>
</body>

</html>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,400评论 25 707
  • 用两张图告诉你,为什么你的 App 会卡顿? - Android - 掘金 Cover 有什么料? 从这篇文章中你...
    hw1212阅读 12,680评论 2 59
  • 我心中的颜色 没有对与错 只有黑和白 纵使外面翠红柳绿 万物妖娆 我这片土地 只长出了黑和白 白的素默无语 黑的一...
    春风三月阅读 277评论 0 0
  • 12.29 姓名:韩艾辰 第120天 【学习:30分钟】 【冥想(静定):50分钟】 【三时书:3次】 【找到/服...
    韩艾辰阅读 179评论 0 0
  • 不害怕失去,不期盼得到,不追悔过去,不担忧未来。 今天下午听到一个消息,如果是一两年之前的心态,我一定会站都站不起...
    行动派小金姐阅读 116评论 0 0