X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Femuvim%2Fdashboard%2Fjs%2Fgraph.js;h=b158bf0fd9e083dbb29ecf6378234fd5f626b78b;hb=fe68c220a6d415a7a8980a290ecb68b17c00b02f;hp=58588334d4de1b73823c6dd22a5cc0af373f506c;hpb=807be58fa7a13781cdd895a9ab4694c426c00395;p=osm%2Fvim-emu.git diff --git a/src/emuvim/dashboard/js/graph.js b/src/emuvim/dashboard/js/graph.js index 5858833..b158bf0 100755 --- a/src/emuvim/dashboard/js/graph.js +++ b/src/emuvim/dashboard/js/graph.js @@ -30,6 +30,7 @@ d3.json("http://127.0.0.1:5001/restapi/network/d3jsgraph", function(error, json) .enter().append("g") .attr("class", "node") .call(force.drag) + .on("dblclick", dblclick) node.append("circle") .attr("r", 10) @@ -49,5 +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 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