D3.js的V5版本-Vue框架中使用-流程圖

因最近公司項目用到流程圖,網(wǎng)上找了些資料,自己寫寫,總結(jié)下

  1. 效果展示

  1. 使用dagre-d3

需要安裝dagre-d3庫,d3的流程圖庫市怎。

  1. 代碼示例(封裝組件)

//得到流程圖繪制對象

this.graph = new dagreD3.graphlib.Graph().setGraph({

     // 控制方向

     rankdir: this.direction

}).setDefaultEdgeLabel(function () { return {} })`

//繪制節(jié)點

this.graph.setNode()

//繪制連接

this.graph.setEdge()

溫馨提示:詳細使用可以去官網(wǎng)查詢


<template lang="pug">
  div.dagre-graph-container(:id="containerId")
    div.zoom-div
        button(v-for="item in directions" :key="item.prop" @click="direction = item.prop") {{item.label}}
        button.zoom(@click="zoomCtrl('in')") 縮小
        button(@click="zoomCtrl('out')") 擴大
    svg.dagre
        g.container
</template>
<script>
/**
 * 流程圖
 */
import * as d3 from 'd3'
import dagreD3 from 'dagre-d3'
let container = null
export default {
    name: 'DagreGraph',
    props: ['nodes', 'edges'],
    data() {
        return {
            id: '',
            renderer: null,
            graph: null,
            direction: 'LR',
            directions: [
                {
                    prop: 'LR',
                    label: '從左至右'
                },
                {
                    prop: 'RL',
                    label: '從右至左'
                },
                {
                    prop: 'TB',
                    label: '從上至下'
                },
                {
                    prop: 'BT',
                    label: '從下至上'
                }
            ],
            zoom: null,
            containerId: '',
            width: 0,
            height: 0
        }
    },
    created() {
        this.containerId = this.uuid()
        this.graph = new dagreD3.graphlib.Graph().setGraph({
            rankdir: this.direction
        }).setDefaultEdgeLabel(function () { return {} })
    },
    methods: {
        uuid () {
            function s4 () {
                return Math.floor((1 + Math.random()) * 0x10000)
                    .toString(16)
                    .substring(1)
            }
            return (
                s4() + s4() + '-' + s4() + '-' + s4() +  '-' + s4() + '-' + s4() + s4() + s4()
            )
        },
        zoomCtrl (symbal) {
            let scale = symbal === 'out' ? 1.1 : 0.8
            const svg = d3.select(this.$el).select('svg.dagre')
            this.zoom.scaleBy(svg, scale)
        },
        /** 
         * @description control the canvas zoom to up or down
         */
        zoomed () {
            d3.select(this.$el).select('g.container').attr('transform', d3.event.transform)
        },
        /** 
         * @description 畫節(jié)點
         */
        strokeNodes () {
            // 獲取之前的nodes緩存并清除
            let nodes = this.graph.nodes()
            if (nodes.length) {
                nodes.forEach(
                    item => {
                        this.graph.removeNode(item)
                    }
                )
            }
            
            //通過operator來畫shape(BranchPythonMapOperator: 分支蠢古; JoinOperator:合流)
            this.nodes.forEach(
                (item) => {
                    let state = item.state ? item.state : 'no-status'
                    let shape = 'rect'
                    if (item.value.operator === 'BranchPythonMapOperator') {
                        shape = 'ellipse'
                    } else if (item.value.operator === 'JoinOperator') {
                        shape = 'circle'
                    }
                    
                    this.graph.setNode(item.id, {label: item.value.label, shape: shape, class: item.value.operator + ' dagre ' + state})
                }
            )
            this.renderer(container, this.graph)   
        },
        /** 
         * @description 畫線
         */
        strokeEdges () {
            //一個腳本節(jié)點時:不渲染eage
            if (this.nodes.length > 1) {
                this.edges.forEach(
                    (item) => {
                        if (item.label) {
                            this.graph.setEdge(item.from, item.to, {label: item.label})   
                        } else {
                            this.graph.setEdge(item.from, item.to)   
                        }         
                    }
                )
                this.renderer(container, this.graph)  
            }      
        }
    },
    mounted () {
        this.width = document.getElementById(this.containerId).clientWidth
        this.height = document.getElementById(this.containerId).clientHeight
        // eslint-disable-next-line
        this.renderer = new dagreD3.render()
        const svg = d3.select(this.$el).select('svg.dagre')
            .attr('width', this.width)
            .attr('height', this.height)
        container = svg.select('g.container')
        // transform
        const transform = d3.zoomIdentity.translate(this.width / 3, this.height / 6).scale(1)    
        this.zoom = d3.zoom()
            .scaleExtent([1 / 2, 8])
            .on('zoom', this.zoomed)
        container.transition().duration(750).call(this.zoom.transform, transform)
        svg.call(this.zoom)
 
        this.strokeNodes()
        this.strokeEdges()
    },
    watch: {
        nodes () {
            this.strokeNodes()              
        },
        edges () {
            this.strokeEdges()
        },
        direction () {
            this.graph.setGraph({
                rankdir: this.direction
            })
            this.renderer(container, this.graph)
        }
    }
}
</script>
<style lang="scss">
.edgePath path {
  stroke: #333;
  fill: #333;
  stroke-width: 1.5px;
}
/************ 圖表變量 ***************/
$fail: #f77d6b;
$success: #61b2e4;
$running: #87d86f;
$skipped: #faec91;
$queued: #43e3ed;
$retry: #f8b96c;
$no-status: #fff;
$upstream_failed: rgb(163, 108, 108);
/**************** dagre 節(jié)點圖************************/
g.node.dagre {
    tspan {
        fill: #fff;
        cursor: pointer;
    }
    &.no-status {
        rect {
            stroke: #333;
            fill: #fff;
        }
        ellipse {
            stroke: #333;
            fill: #fff;
        }
        circle {
            stroke: #333;
            fill: #fff;
        }
        tspan {
            fill: #333;
        }
    }
    &.success {
        rect {
            stroke: #fff;
            fill: $success;
        }
        ellipse {
            stroke: #fff;
            fill: $success;
        }
        circle {
            stroke: #fff;
            fill: $success;
        }
    }
    &.failed {
        rect {
            stroke: #fff;
            fill: $fail;
        }
        ellipse {
            stroke: #fff;
            fill: $fail;
        }
        circle {
            stroke: #fff;
            fill: $fail;
        }
    }
    &.upstream_failed {
        rect {
            stroke: #fff;
            fill: $upstream_failed;
        }
        ellipse {
            stroke: #fff;
            fill: $upstream_failed;
        }
        circle {
            stroke: #fff;
            fill: $upstream_failed;
        }
    }
    &.running {
        rect {
            stroke: #fff;
            fill: $running;
        }
        ellipse {
            stroke: #fff;
            fill: $running;
        }
        circle {
            stroke: #fff;
            fill: $running;
        }
    }
    &.skipped {
        rect {
            stroke: #fff;
            fill: $skipped;
        }
        ellipse {
            stroke: #fff;
            fill: $skipped;
        }
        circle {
            stroke: #fff;
            fill: $skipped;
        }
    }
    &.queued {
        rect {
            stroke: #fff;
            fill: $queued;
        }
        ellipse {
            stroke: #fff;
            fill: $queued;
        }
        circle {
            stroke: #fff;
            fill: $queued;
        }
    }
    &.BashOperator {
        &:hover {
            & > rect {
                cursor: pointer;
                fill: #7cc9fa;
            }  
        }
    }
    &.BranchPythonMapOperator {
        &:hover {
            & > ellipse {
                cursor: pointer;
                fill: #c52bd3;
            }  
        }
    }
    &.JoinOperator {
        &:hover {
            & > circle {
                cursor: pointer;
                fill: #0beb8d;
            }  
        }
    }
}
.zoom {
    margin-left: 40px;
}
</style>

4.組件調(diào)用


<template lang="pug">
  div.dagre-graph-container
    Dagre-Graph(:nodes="nodes" :edges="edges")
</template>
<script>
/**
 * 流程圖
 */
import DagreGraph from './DagreGraph'
export default {
    name: 'FlowDiagram',
    data() {
        return {
           nodes: [],
           edges: []
        }
    },
    created() {
        this.init()
    },
    methods: {
        init () {
            this.nodes = [
                {
                    id: 'e1',
                    state: '',
                    value: {
                        label: '開始',
                        operator: 'BashOperator'
                    }
                },
                {
                    id: 'e2',
                    state: 'success',
                    value: {
                        label: '分支一',
                        operator: 'BranchPythonMapOperator'
                    }
                },
                {
                    id: 'e3',
                    state: 'success',
                    value: {
                        label: '分支二',
                        operator: 'BranchPythonMapOperator'
                    }
                },
                {
                    id: 'e4',
                    state: 'queued',
                    value: {
                        label: '節(jié)點3',
                        operator: 'BashOperator'
                    }
                },
                {
                    id: 'e5',
                    state: 'failed',
                    value: {
                        label: '節(jié)點4',
                        operator: 'BashOperator'
                    }
                },
                {
                    id: 'e6',
                    state: 'upstream_failed',
                    value: {
                        label: '結(jié)束',
                        operator: 'JoinOperator'
                    }
                }
            ]
            this.edges = [
                {
                    from: 'e1', 
                    to: 'e2'
                },
                {
                    from: 'e1', 
                    to: 'e3'
                },
                {
                    from: 'e2', 
                    to: 'e4',
                    label: '條件1'
                },
                {
                    from: 'e3', 
                    to: 'e5',
                    label: '條件2'
                },
                {
                    from: 'e4', 
                    to: 'e6'
                },
                {
                    from: 'e5', 
                    to: 'e6'
                }
            ]
        }
    },
    components: {
        DagreGraph
    }
}
</script>
<style lang='scss' scoped>
.dagre-graph-container {
    width: 100%;
    height: 800px;
}
</style>

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末整吆,一起剝皮案震驚了整個濱河市牢裳,隨后出現(xiàn)的幾起案子着饥,更是在濱河造成了極大的恐慌参咙,老刑警劉巖龄广,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異蕴侧,居然都是意外死亡择同,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門净宵,熙熙樓的掌柜王于貴愁眉苦臉地迎上來敲才,“玉大人,你說我怎么就攤上這事择葡〗粑洌” “怎么了?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵敏储,是天一觀的道長阻星。 經(jīng)常有香客問我,道長已添,這世上最難降的妖魔是什么妥箕? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任滥酥,我火速辦了婚禮,結(jié)果婚禮上矾踱,老公的妹妹穿的比我還像新娘恨狈。我一直安慰自己,他們只是感情好呛讲,可當我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布禾怠。 她就那樣靜靜地躺著,像睡著了一般贝搁。 火紅的嫁衣襯著肌膚如雪吗氏。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天雷逆,我揣著相機與錄音弦讽,去河邊找鬼。 笑死膀哲,一個胖子當著我的面吹牛往产,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播某宪,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼仿村,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了兴喂?” 一聲冷哼從身側(cè)響起蔼囊,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎衣迷,沒想到半個月后畏鼓,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡壶谒,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年云矫,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片汗菜。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡泼差,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出呵俏,到底是詐尸還是另有隱情堆缘,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布普碎,位于F島的核電站吼肥,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜缀皱,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一斗这、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧啤斗,春花似錦表箭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至崔拥,卻和暖如春极舔,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背链瓦。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工拆魏, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人慈俯。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓渤刃,卻偏偏與公主長得像,于是被迫代替她去往敵國和親贴膘。 傳聞我的和親對象是個殘疾皇子溪掀,可洞房花燭夜當晚...
    茶點故事閱讀 42,877評論 2 345

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