discourse/vendor/gems/message_bus/assets/application.js

80 lines
1.8 KiB
JavaScript
Raw Normal View History

2013-02-15 03:23:40 -05:00
window.App = Ember.Application.createWithMixins({
start: function(){
MessageBus.start();
}
});
window.App.start();
App.IndexRoute = Ember.Route.extend({
setupController: function(controller) {
model = App.IndexModel.create();
model.ensureSubscribed();
controller.set('content', model);
2013-02-15 03:23:40 -05:00
}
});
App.IndexView = Ember.View.extend({});
App.Process = Ember.View.extend({
uniqueId: function(){
return this.get('hostname') + this.get('pid');
}.property('hostname', 'pid'),
hup: function(){
$.post("/message-bus/_diagnostics/hup/" + this.get('hostname') + "/" + this.get('pid'));
}
2013-02-15 03:23:40 -05:00
});
App.IndexModel = Ember.Object.extend({
disabled: function(){
return this.get("discovering") ? "disabled" : null;
}.property("discovering"),
ensureSubscribed: function() {
var processes;
var _this = this;
if(this.get("subscribed")) { return; }
MessageBus.callbackInterval = 500;
MessageBus.subscribe("/_diagnostics/process-discovery", function(data){
processes = _this.get('processes');
processes.pushObject(App.Process.create(data));
processes = processes.sort(function(a,b){
return a.get('uniqueId') < b.get('uniqueId') ? -1 : 1;
});
2013-02-25 11:42:20 -05:00
// somewhat odd ...
_this.set('processes', null);
_this.set('processes', processes);
});
this.set("subscribed", true);
},
2013-02-15 03:23:40 -05:00
discover: function(){
var _this = this;
this.set('processes', Em.A());
2013-02-25 11:42:20 -05:00
this.ensureSubscribed();
2013-02-15 03:23:40 -05:00
this.set("discovering", true);
Ember.run.later(function(){
_this.set("discovering", false);
2013-02-15 20:14:52 -05:00
}, 1 * 1000);
2013-02-15 03:23:40 -05:00
$.post("/message-bus/_diagnostics/discover");
}
});
App.IndexController = Ember.ObjectController.extend({
discover: function(){
this.get("content").discover();
},
hup: function(process) {
process.hup();
2013-02-15 03:23:40 -05:00
}
});