X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Femuvim%2Fdashboard%2Fjs%2Fgraph.js;h=b158bf0fd9e083dbb29ecf6378234fd5f626b78b;hb=0a8c3c754c3ca5d1d34ec2dde21423524a32559c;hp=daf4e4a83a85ccf1fd6568a1121d796786a50ca3;hpb=5f5fd4441825797d7bf245d6abebb2ee05f8af5d;p=osm%2Fvim-emu.git diff --git a/src/emuvim/dashboard/js/graph.js b/src/emuvim/dashboard/js/graph.js index daf4e4a..b158bf0 100755 --- a/src/emuvim/dashboard/js/graph.js +++ b/src/emuvim/dashboard/js/graph.js @@ -12,7 +12,6 @@ var force = d3.layout.force() .charge(-100) .size([width, height]); -//d3.json("js/graph.json", function(error, json) { d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) { if (error) throw error; @@ -31,14 +30,8 @@ d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) .enter().append("g") .attr("class", "node") .call(force.drag) - .on("click", click); + .on("dblclick", dblclick) - //node.append("image") - // .attr("xlink:href", "https://github.com/favicon.ico") - // .attr("x", -8) - // .attr("y", -8) - // .attr("width", 16) - // .attr("height", 16); node.append("circle") .attr("r", 10) .style("fill", function(d) { return color(d.group); }); @@ -57,17 +50,17 @@ d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }); }); - // action to take on mouse click - function click() { - d3.select(this).select("text").transition() - .duration(750) - .attr("x", 22) - .style("stroke", "lightsteelblue") - .style("stroke-width", ".5px") - .style("font", "20px sans-serif"); - d3.select(this).select("circle").transition() - .duration(750) - .attr("r", 16); + // action to take on double mouse click, call rest api to start xterm + function dblclick() { + var vnf_name = d3.select(this).text() + console.debug(vnf_name) + var rest_url = "http://127.0.0.1:5001/restapi/monitor/term?vnf_list=" + vnf_name + + d3.json(rest_url, function(error, json) { + if (error) throw error; + console.debug(json) + }); } + }); \ No newline at end of file