YARN-7022. Improve click interaction in queue topology in new YARN UI. Contributed by Abdullah Yousufi.

This commit is contained in:
Sunil G 2017-09-05 08:06:43 +05:30 committed by Xiaoyu Yao
parent 6e0d50d6ae
commit 3b1c4e4494
1 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ export default Ember.Component.extend({
var nodeEnter = node.enter().append("g") var nodeEnter = node.enter().append("g")
.attr("class", "node") .attr("class", "node")
.attr("transform", function() { return "translate(" + source.y0 + "," + source.x0 + ")"; }) .attr("transform", function() { return "translate(" + source.y0 + "," + source.x0 + ")"; })
.on("mouseover", function(d){ .on("click", function(d){
if (d.queueData.get("name") !== this.get("selected")) { if (d.queueData.get("name") !== this.get("selected")) {
document.location.href = "#/yarn-queues/" + d.queueData.get("name") + "!"; document.location.href = "#/yarn-queues/" + d.queueData.get("name") + "!";
} }
@ -145,7 +145,7 @@ export default Ember.Component.extend({
}, 100); }, 100);
}.bind(this)) }.bind(this))
.on("click", function (d) { .on("dblclick", function (d) {
document.location.href = "#/yarn-queue/" + d.queueData.get("name") + "/info"; document.location.href = "#/yarn-queue/" + d.queueData.get("name") + "/info";
}); });