未验证 提交 39a95f5c 编写于 作者: D daminglu 提交者: GitHub

2nd PR on Interactive Graph 0.0.3 (#348)

上级 37a3559a
...@@ -16,10 +16,13 @@ ...@@ -16,10 +16,13 @@
"csshint": "^0.3.3", "csshint": "^0.3.3",
"cytoscape": "^3.2.11", "cytoscape": "^3.2.11",
"cytoscape-dagre": "^2.2.0", "cytoscape-dagre": "^2.2.0",
"d3": "^4.7.4",
"d3-format": "^1.2.1", "d3-format": "^1.2.1",
"dagre": "^0.8.2", "dagre": "^0.8.2",
"dagre-d3": "^0.6.1",
"echarts": "^3.8.5", "echarts": "^3.8.5",
"file-saver": "^1.3.3", "file-saver": "^1.3.3",
"graphlib": "^1.0.5",
"htmlcs": "^0.4.1", "htmlcs": "^0.4.1",
"lesslint": "^1.0.2", "lesslint": "^1.0.2",
"lodash": "^4.17.4", "lodash": "^4.17.4",
...@@ -67,15 +70,15 @@ ...@@ -67,15 +70,15 @@
"stylus": "^0.54.5", "stylus": "^0.54.5",
"stylus-loader": "^3.0.1", "stylus-loader": "^3.0.1",
"url-loader": "^0.5.8", "url-loader": "^0.5.8",
"webpack": "^2.4.1", "vue-jest": "^1.0.2",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^2.7.0",
"webpack-dev-middleware": "^1.12.1", "webpack-dev-middleware": "^1.12.1",
"webpack-dev-server": "^2.4.2", "webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.19.1", "webpack-hot-middleware": "^2.19.1",
"webpack-merge": "^4.1.0", "webpack-merge": "^4.1.0",
"yargs": "^8.0.2", "yargs": "^8.0.2"
"vue-jest": "^1.0.2",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2"
} }
} }
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
<div class="visual-dl-page-container"> <div class="visual-dl-page-container">
<div class="visual-dl-page-left"> <div class="visual-dl-page-left">
<ui-chart <ui-chart
:fitScreen="fitScreen" :fitScreen="fitScreen"
:download="download" :download="download"
:scale="config.scale" :scale="config.scale"
></ui-chart> ></ui-chart>
</div> </div>
<div class="visual-dl-page-right"> <div class="visual-dl-page-right">
...@@ -24,6 +24,7 @@ import autoAdjustHeight from '../common/util/autoAdjustHeight'; ...@@ -24,6 +24,7 @@ import autoAdjustHeight from '../common/util/autoAdjustHeight';
import Config from './ui/Config' import Config from './ui/Config'
import Chart from './ui/Chart'; import Chart from './ui/Chart';
export default { export default {
components: { components: {
'ui-config': Config, 'ui-config': Config,
......
<template> <template>
<div class="visual-dl-graph-charts"> <div class="visual-dl-graph-charts">
<div id="container" class="cy draggable" ref="draggable"></div> <svg class="visual-dl-page-left">
<g/>
</svg>
</div> </div>
</template> </template>
<script> <script>
...@@ -16,8 +18,11 @@ ...@@ -16,8 +18,11 @@
// https://github.com/taye/interact.js // https://github.com/taye/interact.js
import interact from 'interactjs'; import interact from 'interactjs';
import cytoscape from 'cytoscape';
import dagre from 'cytoscape-dagre'; // for d3 drawing
import * as d3 from "d3";
import * as dagre from "dagre";
import * as dagreD3 from 'dagre-d3';
export default { export default {
props: ['fitScreen', 'download', 'scale'], props: ['fitScreen', 'download', 'scale'],
...@@ -30,8 +35,6 @@ ...@@ -30,8 +35,6 @@
data() { data() {
return { return {
myCY: null, myCY: null,
width: 800,
height: 600,
graphUrl: '', graphUrl: '',
}; };
}, },
...@@ -50,121 +53,73 @@ ...@@ -50,121 +53,73 @@
} }
}, },
mounted() { mounted() {
var that = this;
this.getOriginChartsData(); this.getOriginChartsData();
cytoscape.use( dagre );
getPluginGraphsGraph().then(({errno, data}) => {
getPluginGraphsGraph().then(({errno, data}) => {
var raw_data = data.data; var raw_data = data.data;
var data = raw_data; var data = raw_data;
var graph_data = { // d3 svg drawing
nodes: [], var g = new dagreD3.graphlib.Graph()
edges: [] .setGraph({})
}; .setDefaultEdgeLabel(function() { return {}; });
var render = new dagreD3.render();
var node_names = []; var nodeKeys = [];
for (var i = 0; i < data.input.length; ++i) {
graph_data.nodes.push({
data: {id: data.input[i].name, node_data: data.input[i].name}
});
node_names.push(data.input[i].name);
}
for (var i = 0; i < data.edges.length; ++i) {
var source = data.edges[i].source;
var target = data.edges[i].target;
if (node_names.includes(source) === false) { var buildInputNodeLabel = function(inputNode) {
graph_data.nodes.push({ var nodeLabel = inputNode['data_type'] + ': ' + inputNode['shape'].join('x');
data: {id: source, node_data:source} return nodeLabel + ' '.repeat(Math.floor(nodeLabel.length/5));
}); };
node_names.push(source);
}
if (node_names.includes(target) === false) { // add input nodes
var node_data = target; for (var i=0; i<data['input'].length; ++i) {
if (target.includes('node_')) { var curInputNode = data['input'][i];
// it is an operator node var nodeKey = curInputNode['name'];
var node_id = target.substring(5); g.setNode(
node_data = data.node[node_id].opType; nodeKey,
{
label: buildInputNodeLabel(curInputNode),
class: "input"
} }
graph_data.nodes.push({ );
data: {id: target, node_data:node_data} nodeKeys.push(nodeKey);
});
node_names.push(target);
}
graph_data.edges.push({
data: {source: source, target: target}
});
} }
// >> cy // add operator nodes then add edges from inputs to operator and from operator to output
var cy = cytoscape({ for (var i=0; i<data['node'].length; ++i) {
container: document.getElementById('container'), var curOperatorNode = data['node'][i];
var nodeKey = 'opNode_' + i;
boxSelectionEnabled: false,
autounselectify: true,
layout: {
name: 'dagre'
},
style: [ // add operator node
var curOpLabel = curOperatorNode['opType'];
g.setNode(
nodeKey,
{ {
selector: 'node', label: curOpLabel + ' '.repeat(Math.floor(curOpLabel.length/5)),
style: { class: "operator"
'width': 40,
'height': 40,
'content': 'data(node_data)',
'text-opacity': 0.5,
'text-valign': 'center',
'text-halign': 'right',
'background-color': '#11479e'
}
},
{
selector: 'edge',
style: {
'curve-style': 'bezier',
'width': 6,
'target-arrow-shape': 'triangle',
'line-color': '#9dbaea',
'target-arrow-color': '#9dbaea'
}
} }
], );
elements: graph_data, nodeKeys.push(nodeKey);
});
this.myCY = cy;
cy.nodes().forEach(function(node){ // add output node
if (node.id().includes('node_')) { var outputNodeKey = curOperatorNode['output'][0];
node.style('width', '80px'); g.setNode(
node.style('height', '36px'); outputNodeKey,
node.style('shape', 'roundrectangle'); {
node.style('background-color', '#158c96'); label: outputNodeKey + ' '.repeat(Math.floor(outputNodeKey.length/5)),
node.style('text-valign', 'center'); class: "output"
node.style('text-halign', 'center'); }
);
nodeKeys.push(outputNodeKey);
// add edges from inputs to node and from node to output
for (var e=0; e<curOperatorNode['input'].length; ++e) {
g.setEdge(curOperatorNode['input'][e], nodeKey);
} }
g.setEdge(nodeKey, curOperatorNode['output'][0]);
}
let collapsed = true; render(d3.select("svg g"), g);
node.on('tap', function(evt){
if (node.id().includes('node_')) {
collapsed = !collapsed;
if (!collapsed) {
node.style('width', '120px');
node.style('height', '54px');
} else {
node.style('width', '80px');
node.style('height', '36px');
}
}
});
});
}); });
}, },
...@@ -259,13 +214,27 @@ ...@@ -259,13 +214,27 @@
}; };
</script> </script>
<style lang="stylus"> <style lang="stylus">
.cy .node rect
height: 100% .node circle
width: 70% .node ellipse
position: absolute .node polygon
top: 0px stroke: #333
left: 0px fill: #fff
stroke-width: 1.5px
.edgePath path.path
stroke: #333
fill: none
stroke-width: 1.5px
.operator
fill: red
.output
fill: green
.input
fill: purple
.visual-dl-graph-charts .visual-dl-graph-charts
width inherit width inherit
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册