未验证 提交 4a0511d4 编写于 作者: D daminglu 提交者: GitHub

Add 'Node Info' part to config panel once a node is clicked. (#358)

上级 6723bd83
...@@ -5,12 +5,15 @@ ...@@ -5,12 +5,15 @@
:fitScreen="fitScreen" :fitScreen="fitScreen"
:download="download" :download="download"
:scale="config.scale" :scale="config.scale"
:curNode="curNode"
@curNodeUpdated="curNode = $event"
></ui-chart> ></ui-chart>
</div> </div>
<div class="visual-dl-page-right"> <div class="visual-dl-page-right">
<div class="visual-dl-page-config-container"> <div class="visual-dl-page-config-container">
<ui-config <ui-config
:config="config" :config="config"
:curNode="curNode"
@fitScreen="handleFitScreen" @fitScreen="handleFitScreen"
@download="handleDownload" @download="handleDownload"
></ui-config> ></ui-config>
...@@ -37,7 +40,8 @@ export default { ...@@ -37,7 +40,8 @@ export default {
scale: 0.5 scale: 0.5
}, },
fitScreen: {fitScreen: false}, fitScreen: {fitScreen: false},
download: {download: false} download: {download: false},
curNode: {}
} }
}, },
mounted() { mounted() {
...@@ -45,11 +49,11 @@ export default { ...@@ -45,11 +49,11 @@ export default {
}, },
methods: { methods: {
handleFitScreen() { handleFitScreen() {
this.fitScreen = {fitScreen: true} this.fitScreen = {fitScreen: true};
this.config.scale = 0.5; this.config.scale = 0.5;
}, },
handleDownload() { handleDownload() {
this.download = {fitScreen: true} this.download = {fitScreen: true};
} }
} }
}; };
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
import * as dagreD3 from 'dagre-d3'; import * as dagreD3 from 'dagre-d3';
export default { export default {
props: ['fitScreen', 'download', 'scale'], props: ['fitScreen', 'download', 'scale', 'curNode'],
computed: { computed: {
computedWidth() { computedWidth() {
let scale = this.scale; let scale = this.scale;
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
}, },
mounted() { mounted() {
this.getOriginChartsData(); this.getOriginChartsData();
let chartScope = this;
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;
...@@ -131,6 +131,26 @@ ...@@ -131,6 +131,26 @@
// adjust viewBox so that the whole graph can be shown, with scroll bar // adjust viewBox so that the whole graph can be shown, with scroll bar
svg.attr('viewBox', '0 0 ' + g.graph().width + ' ' + g.graph().height); svg.attr('viewBox', '0 0 ' + g.graph().width + ' ' + g.graph().height);
svg.selectAll(".node").on("click", function(d, i){
this.curNode = g.node(d);
var nodeType = this.curNode.class;
var nodeInfo = null;
if (nodeType === "operator") {
var opIndex = d.slice(7); // remove prefix "opNode_"
nodeInfo = data.node[opIndex];
} else if (nodeType === "input") {
nodeInfo = data.input[d-1];
} else {
nodeInfo = "output";
}
chartScope.$emit('curNodeUpdated',
{
'nodeType': nodeType,
'nodeInfo': nodeInfo
});
});
}); });
}, },
...@@ -175,7 +195,7 @@ ...@@ -175,7 +195,7 @@
}, },
addDragEventForImg() { addDragEventForImg() {
let that = this; let chartScope = this;
// target elements with the "draggable" class // target elements with the "draggable" class
interact('.draggable').draggable({ interact('.draggable').draggable({
// enable inertial throwing // enable inertial throwing
...@@ -186,8 +206,8 @@ ...@@ -186,8 +206,8 @@
dragMovelHandler(event, (target, x, y) => { dragMovelHandler(event, (target, x, y) => {
tansformElement(target, x, y); tansformElement(target, x, y);
// compute the proportional value // compute the proportional value
let triggerEl = that.getBigImgEl(); let triggerEl = chartScope.getBigImgEl();
let relativeEl = that.getSmallImgDragHandler(); let relativeEl = chartScope.getSmallImgDragHandler();
relativeMove({triggerEl, x, y}, relativeEl); relativeMove({triggerEl, x, y}, relativeEl);
}); });
...@@ -213,8 +233,8 @@ ...@@ -213,8 +233,8 @@
dragMovelHandler(event, (target, x, y) => { dragMovelHandler(event, (target, x, y) => {
tansformElement(target, x, y); tansformElement(target, x, y);
// compute the proportional value // compute the proportional value
let triggerEl = that.getSmallImgEl(); let triggerEl = chartScope.getSmallImgEl();
let relativeEl = that.getBigImgEl(); let relativeEl = chartScope.getBigImgEl();
relativeMove({triggerEl, x, y}, relativeEl); relativeMove({triggerEl, x, y}, relativeEl);
}); });
...@@ -245,6 +265,9 @@ ...@@ -245,6 +265,9 @@
rx: 10; rx: 10;
ry: 10; ry: 10;
.node
cursor: pointer
.output .output
fill: #c38d9e fill: #c38d9e
......
<template> <template>
<div class="visual-dl-graph-config-com"> <div class="visual-dl-graph-config-com">
<v-btn <div class="graph-config-upper">
class="visual-dl-graph-config-button" <v-btn
color="primary" class="visual-dl-graph-config-button"
@click="handleFitScreen" color="primary"
dark> @click="handleFitScreen"
<v-icon style="margin-right: 6px" size="20">fullscreen</v-icon> dark>
Fit &nbsp; to &nbsp; screen <v-icon style="margin-right: 6px" size="20">fullscreen</v-icon>
</v-btn> Fit &nbsp; to &nbsp; screen
</v-btn>
<v-btn <v-btn
class="visual-dl-graph-config-button" class="visual-dl-graph-config-button"
color="primary" color="primary"
@click="handleDownload" @click="handleDownload"
dark> dark>
<v-icon style="margin-right: 6px">file_download</v-icon> <v-icon style="margin-right: 6px">file_download</v-icon>
Download image Download image
</v-btn> </v-btn>
<v-slider <v-slider
label="Scale" label="Scale"
max="1" max="1"
min="0.1" min="0.1"
step="0.1" step="0.1"
v-model="config.scale" v-model="config.scale"
dark></v-slider> dark></v-slider>
</div>
<div class="node-info">
<h3>Node Info: </h3>
<div v-if="curNode.nodeType === 'input'">
<div>Node Type: {{ curNode.nodeType }}</div>
<div>Name: {{curNode.nodeInfo.name}}</div>
<div>Shape: {{curNode.nodeInfo.shape}}</div>
<div>Data Type: {{curNode.nodeInfo.data_type}}</div>
</div>
<div v-else-if="curNode.nodeType === 'output'">
<div>Node Type: {{ curNode.nodeType }}</div>
</div>
<div v-else-if="curNode.nodeType === 'operator'">
<div>Node Type: {{ curNode.nodeType }}</div>
<div>Input: {{curNode.nodeInfo.input}}</div>
<div>Operator Type: {{curNode.nodeInfo.opType}}</div>
<div>Output: {{curNode.nodeInfo.output}}</div>
</div>
<div v-else>
</div>
</div>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
props:['config'], props:['config', 'curNode'],
methods: { methods: {
handleFitScreen() { handleFitScreen() {
this.$emit('fitScreen') this.$emit('fitScreen')
...@@ -55,4 +79,8 @@ export default { ...@@ -55,4 +79,8 @@ export default {
.sm-icon .sm-icon
width 36px width 36px
height 26px height 26px
.graph-config-upper
height 400px
</style> </style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册