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

因最近公司项目用到流程图,网上找了些资料,自己写写,总结下

  1. 效果展示

  1. 使用dagre-d3

需要安装dagre-d3库,d3的流程图库。

  1. 代码示例(封装组件)

//得到流程图绘制对象

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

     // 控制方向

     rankdir: this.direction

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

//绘制节点

this.graph.setNode()

//绘制连接

this.graph.setEdge()

温馨提示:详细使用可以去官网查询


<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 画节点
         */
        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 () {
            //一个脚本节点时:不渲染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 节点图************************/
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.组件调用


<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: '节点3',
                        operator: 'BashOperator'
                    }
                },
                {
                    id: 'e5',
                    state: 'failed',
                    value: {
                        label: '节点4',
                        operator: 'BashOperator'
                    }
                },
                {
                    id: 'e6',
                    state: 'upstream_failed',
                    value: {
                        label: '结束',
                        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>

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

推荐阅读更多精彩内容