open-consul/ui/javascripts/app.js

159 lines
4.0 KiB
JavaScript
Raw Normal View History

2014-04-23 18:01:42 +00:00
window.App = Ember.Application.create({
rootElement: "#app",
LOG_TRANSITIONS: true,
currentPath: ''
});
2014-04-21 20:36:50 +00:00
App.Router.map(function() {
2014-04-23 18:01:42 +00:00
this.route("index", { path: "/" });
this.route("services", { path: "/:dc/services" });
this.route("nodes", { path: "/:dc/nodes" });
this.route("node", { path: "/:dc/nodes/:name" });
this.route("kv", { path: "/:dc/kv" });
});
2014-04-23 22:51:06 +00:00
//
// The main controller for the application. To use this in other
// controller you have to use the needs api
//
2014-04-23 18:01:42 +00:00
App.ApplicationController = Ember.Controller.extend({
2014-04-23 22:51:06 +00:00
//
// Sets the current datacenter to be used when linking. DC is
// a required parameter in the routes, above, and we need
// to know our scope. This is so #link-to 'node' dc node-name
// works.
//
2014-04-23 18:01:42 +00:00
setDc: function(dc) {
localStorage.setItem("current_dc", dc);
},
2014-04-23 22:51:06 +00:00
//
// Retrieves the current datacenter set by this.setDc from
// localstorage. returns null if the dc has not been set.
//
2014-04-23 18:01:42 +00:00
getDc: function() {
return localStorage.getItem("current_dc");
}.property("getDc")
});
2014-04-23 22:51:06 +00:00
//
// path: /:dc/services
//
2014-04-23 18:01:42 +00:00
App.ServicesController = Ember.Controller.extend({
needs: ['application']
})
2014-04-23 22:51:06 +00:00
//
// Superclass to be used by all of the main routes below. All routes
// but the IndexRoute share the need to have a datacenter set.
//
//
2014-04-23 18:01:42 +00:00
App.BaseRoute = Ember.Route.extend({
2014-04-23 22:51:06 +00:00
//
// When activating the base route, if we don't have a datacenter set,
// transition the user to the index route to choose a datacenter.
//
2014-04-23 18:01:42 +00:00
activate: function() {
var controller = this.controllerFor('application');
if (controller.getDc === null) {
this.transitionTo('index');
};
}
2014-04-21 20:36:50 +00:00
});
2014-04-23 22:51:06 +00:00
//
// The route for choosing datacenters, typically the first route loaded.
//
// Note: This *does not* extend from BaseRoute as that could cause
// and loop of transitions.
//
2014-04-21 20:36:50 +00:00
App.IndexRoute = Ember.Route.extend({
model: function() {
2014-04-23 18:01:42 +00:00
return window.fixtures.dcs;
},
afterModel: function(dcs, transition) {
if (dcs.get('length') === 1) {
this.get('controllers.application').setDc(dcs[0])
this.transitionTo('services', dcs[0]);
}
}
});
2014-04-23 22:51:06 +00:00
//
// path: /
//
// The index is for choosing datacenters.
//
2014-04-23 18:01:42 +00:00
App.IndexController = Ember.Controller.extend({
needs: ['application'],
actions: {
2014-04-23 22:51:06 +00:00
//
// selectDc is called with the datacenter name to be set for
// future actions within the application. It's a namespace, essentially.
//
// See ApplicationController#setDc
//
2014-04-23 18:01:42 +00:00
selectDc: function(dc) {
this.get('controllers.application').setDc(dc)
this.transitionToRoute('services', dc)
}
}
});
2014-04-23 22:51:06 +00:00
//
// A Consul service.
//
2014-04-23 18:01:42 +00:00
App.Service = Ember.Object.extend({
2014-04-23 22:51:06 +00:00
//
// The number of failing checks within the service.
//
2014-04-23 18:01:42 +00:00
failingChecks: function() {
return this.get('Checks').filterBy('Status', 'critical').get('length');
}.property('failingChecks'),
2014-04-23 22:51:06 +00:00
//
// The number of passing checks within the service.
//
2014-04-23 18:01:42 +00:00
passingChecks: function() {
return this.get('Checks').filterBy('Status', 'passing').get('length');
}.property('passingChecks'),
2014-04-23 22:51:06 +00:00
//
// The formatted message returned for the user which represents the
// number of checks failing or passing. Returns `1 passing` or `2 failing`
//
2014-04-23 18:01:42 +00:00
checkMessage: function() {
if (this.get('hasFailingChecks') === false) {
return this.get('passingChecks') + ' passing';
} else {
return this.get('failingChecks') + ' failing';
}
}.property('checkMessage'),
2014-04-23 22:51:06 +00:00
//
// Boolean of whether or not there are failing checks in the service.
// This is used to set color backgrounds and so on.
//
2014-04-23 18:01:42 +00:00
hasFailingChecks: function() {
return (this.get('failingChecks') > 0);
}.property('hasFailingChecks')
});
2014-04-23 22:51:06 +00:00
//
// Display all the services, allow to drill down into the specific services.
//
2014-04-23 18:01:42 +00:00
App.ServicesRoute = App.BaseRoute.extend({
model: function() {
return [App.Service.create(window.fixtures.services[0]), App.Service.create(window.fixtures.services[1])];
2014-04-21 20:36:50 +00:00
}
});
2014-04-23 18:01:42 +00:00
2014-04-23 22:51:06 +00:00
//
// Services
//
2014-04-23 18:01:42 +00:00
App.ServicesView = Ember.View.extend({
layoutName: 'default_layout'
})