g6展示流程圖

要求根據(jù)數(shù)據(jù)生成結(jié)構(gòu)圖荧缘,花了點(diǎn)時(shí)間用的g6


法人.png
<template>
  <div class="g6-wrapper">
    <div id="mountNode"></div>
  </div>
</template>
<script type='text/ecmascript-6'>
import G6 from "@antv/g6";
import dagre from "dagre"
// import g6Data from "./textData.js";
import {getTreeSceneProcessList} from "@/api/scene.js";
export default {
  props: ['sceneId'],
  data() {
    return {
      g6Data :[]
    };
  },
  mounted() {
    this.getTreeSceneProcessList();
    // this.init();
  },
  methods: {
    init() {
      this.$nextTick(() => {
        // 得到流程圖繪制對(duì)象
        var g = new dagre.graphlib.Graph();
        /**
         * g.setDefaultEdgeLabel不能省去灭美,否則會(huì)報(bào)錯(cuò)
         * Error in nextTick: "TypeError: Cannot set property 'points' of undefined"
         */
        g.setDefaultEdgeLabel(function() {
          return {};
        });
        g.setGraph({
          rankdir: "TB" //控制方向top-bottom
        });
        //繪制節(jié)點(diǎn)
        this.g6Data.nodes.forEach(node => {
          let len = node.processName.length,calcStrLen = 8,ellipsis = '…';
          let tempLabel= node.processName.substring(0,calcStrLen);
          if(len>8){
            tempLabel += ('\n' +  node.processName.substring(calcStrLen,2*calcStrLen));
          }
          if(len>16){
            tempLabel += ellipsis;
          }
          node.id = node.processRelateId;
          node.label = tempLabel;
          g.setNode(node.processRelateId, {
            width: 150,
            height: 50
          });
        });
        //繪制連接
        this.g6Data.edges.forEach(edge => {
          g.setEdge(edge.source, edge.target);
        });
        dagre.layout(g);
        var coord = 0;
        //g.nodes()返回圖中節(jié)點(diǎn)的 id 數(shù)組
        g.nodes().forEach((node, i) =>{
          coord = g.node(node);
          this.g6Data.nodes[i].x = coord.x;
          this.g6Data.nodes[i].y = coord.y;
        });
        //g.edges()返回圖中所有的邊
        g.edges().forEach((edge, i)=> {
          coord = g.edge(edge);
          this.g6Data.edges[i].startPoint = coord.points[0];
          this.g6Data.edges[i].endPoint = coord.points[coord.points.length ];
          this.g6Data.edges[i].controlPoints = coord.points.slice(1,coord.points.length);
        });
        G6.registerNode(
          "operation",
          {
            drawShape: function draw(cfg, group){
              var rect = group.addShape("rect", {
                attrs: {
                  x: -75,
                  y: -20,
                  width: 150,
                  height: 60,
                  radius: 10,
                  stroke: "#BDC3CC",
                  fill: "#fff",
                  fillOpacity: 0.45,
                  lineWidth: 2
                }
              });
              group.addShape('circle', {
                attrs: {
                  x: -53,
                  y: 10,
                  r: 15,
                  fill: '#7D8998',
                },
                name: 'circle-shape',
              });
              group.addShape("text", {
                attrs: {
                  text: 'L' + cfg.processLevel  || "",
                  x: -60,
                  y: 10,
                  fill: "#fff",
                  fontSize:14,
                  textAlign: "left",
                  textBaseline: "middle"
                }
              });
              // const _text = group.addShape("text", {
              //   attrs: {
              //     text: cfg.processName,
              //     x: -30,
              //     y: 9,
              //     fill: "#595959",
              //     fontSize:10,
              //     textAlign: "left",
              //     textBaseline: "middle"
              //   }
              // });
              return rect;
            }
          },"single-shape"
        );
        var graph = new G6.Graph({
          container: "mountNode",
          width: window.innerWidth*0.79, 
          height: 600,
          pixelRatio: 2,
          // fitView: true,
          // fitViewPadding:80,
          modes: {
            default: [
              "drag-canvas",'zoom-canvas',
              {
                type: 'tooltip',
                formatText: function formatText(model) {
                  return model.processName;
                }
              }
            ]
          },
          defaultNode: {
            type: "operation",
            labelCfg: {
              style: {
                fill: "#595959",
                fontSize: 12,
                textAlign: "left",
                textBaseline: "middle",
                x:-30,
                y:9
              }
            }
          },
          defaultEdge: {
            type: "polyline",
            style: {
              stroke: '#999',
              lineWidth:1
            }
          }
        });
        graph.data(this.g6Data);
        graph.render();
        graph.on('node:click', (evt)=> {
          const shape = evt.target;
          const node = evt.item;
            console.log(shape,node)
            // this.$emit('nextstep');
        });
        graph.on('node:mouseenter', function(evt) {
          const node = evt.item;
          graph.setItemState(node, 'hover', true);
          graph.updateItem(node, {
            style:{
              fill: '#ecf5ff',
              stroke: '#0091FF',
              lineWidth:1
            },
            labelCfg: {
              style: {
                fill: '#0091FF',
                fontSize: 12,
                textAlign: "left",
                textBaseline: "middle",
                x:-30,
                y:9
              }
            },
          });
        });
        graph.on('node:mouseleave', function(evt) {
          const node = evt.item;
          graph.setItemState(node, 'hover', false);
          graph.updateItem(node, {
            style:{
              fill: '#fff',
              stroke: '#BDC3CC',
              lineWidth:2
            },
            labelCfg: {
              style: {
                fill: "#595959",
                fontSize: 12,
                textAlign: "left",
                textBaseline: "middle",
                x:-30,
                y:9
              },
            },
          });
        });
      });
    },
    getTreeSceneProcessList(){
      getTreeSceneProcessList('b01311175e8c11eaaf620050568b17c3').then(res=>{
        console.log(res)
        this.g6Data = res;
        this.init();
      })
    }
  }
};
</script>
<style lang='less' scoped>
.g6-wrapper {
  width: 100%;
  height: 600px;
  border: 1px solid #999;
}
</style>
<style lang="less">
.g6-wrapper {
  // 由于 G6 沒有內(nèi)置任何 tooltip 的樣式,用戶需要自己定義樣式
  .g6-tooltip {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-size: 12px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 8px;
    box-shadow: rgb(174, 174, 174) 0px 0px 10px;
  }
  .node-shape{
    white-space:wrap;
    cursor:pointer;
  }
}
</style>

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末擒权,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子阁谆,更是在濱河造成了極大的恐慌碳抄,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件场绿,死亡現(xiàn)場(chǎng)離奇詭異纳鼎,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)裳凸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門贱鄙,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人姨谷,你說我怎么就攤上這事逗宁。” “怎么了梦湘?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵瞎颗,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我捌议,道長(zhǎng)哼拔,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任瓣颅,我火速辦了婚禮倦逐,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘宫补。我一直安慰自己檬姥,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布粉怕。 她就那樣靜靜地躺著健民,像睡著了一般。 火紅的嫁衣襯著肌膚如雪贫贝。 梳的紋絲不亂的頭發(fā)上秉犹,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天蛉谜,我揣著相機(jī)與錄音,去河邊找鬼崇堵。 笑死型诚,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的筑辨。 我是一名探鬼主播俺驶,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼棍辕!你這毒婦竟也來了暮现?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤楚昭,失蹤者是張志新(化名)和其女友劉穎栖袋,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體抚太,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡塘幅,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了尿贫。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片电媳。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖庆亡,靈堂內(nèi)的尸體忽然破棺而出匾乓,到底是詐尸還是另有隱情,我是刑警寧澤又谋,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布拼缝,位于F島的核電站,受9級(jí)特大地震影響彰亥,放射性物質(zhì)發(fā)生泄漏咧七。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一任斋、第九天 我趴在偏房一處隱蔽的房頂上張望继阻。 院中可真熱鬧,春花似錦仁卷、人聲如沸穴翩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至歉嗓,卻和暖如春丰介,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工哮幢, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留带膀,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓橙垢,卻偏偏與公主長(zhǎng)得像垛叨,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子柜某,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容