Skip to content
Snippets Groups Projects
Commit be23f35e authored by Wes Felter's avatar Wes Felter
Browse files

UI: Remove hosts from UI when they go away

parent 2fc41f6e
No related branches found
No related tags found
No related merge requests found
......@@ -38,12 +38,15 @@ window.HostCollection = Backbone.Collection.extend({
url:hackBase + "/wm/device/",
dataType:"json",
success:function (data) {
// console.log("fetched host list: " + data.length);
console.log("fetched host list: " + data.length);
// console.log(data);
// data is a list of device hashes
var old_ids = self.pluck('id');
//console.log("old_ids" + old_ids);
_.each(data, function(h) {
h.id = h.mac[0];
old_ids = _.without(old_ids, h.id);
if (h['attachmentPoint'].length > 0) {
h.id = h.mac[0];
h.swport = _.reduce(h['attachmentPoint'], function(memo, ap) {
return memo + ap.switchDPID + "-" + ap.port + " "}, "");
//console.log(h.swport);
......@@ -51,6 +54,12 @@ window.HostCollection = Backbone.Collection.extend({
self.add(h, {silent: true});
}
});
// old_ids now holds hosts that no longer exist; remove them
console.log("old_ids" + old_ids);
_.each(old_ids, function(h) {
console.log("---removing host " + h);
self.remove({id:h});
});
self.trigger('add'); // batch redraws
}
});
......
......@@ -36,6 +36,7 @@ window.HostListView = Backbone.View.extend({
this.template = _.template(tpl.get('host-list'));
this.model.bind("change", this.render, this);
this.model.bind("add", this.render, this);
this.model.bind("remove", this.render, this);
},
render:function (eventName) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment