From 7fead8c0d9f49b727dcd8b4bce3d1438f3cf5758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Vachon?= Date: Tue, 10 Feb 2015 12:22:28 -0500 Subject: [PATCH] Added custom tables support --- app/app.js | 3 ++- app/components/config/config.json | 14 +++++++++- app/custom_views/custom_views.html | 7 +++++ app/custom_views/custom_views.js | 42 ++++++++++++++++++++++++++++++ app/index.html | 1 + 5 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 app/custom_views/custom_views.html create mode 100644 app/custom_views/custom_views.js diff --git a/app/app.js b/app/app.js index 34f1bad..4494c7c 100644 --- a/app/app.js +++ b/app/app.js @@ -20,7 +20,8 @@ angular.module('adagios', [ 'adagios.config', 'adagios.view.dashboard', 'adagios.view.hosts', - 'adagios.view.services' + 'adagios.view.services', + 'adagios.view.custom' ]) .config(['$routeProvider', function ($routeProvider) { diff --git a/app/components/config/config.json b/app/components/config/config.json index 20c5595..1c9e985 100644 --- a/app/components/config/config.json +++ b/app/components/config/config.json @@ -13,5 +13,17 @@ "cells": ["host", "service_check", "duration", "last_check"], "apiName": "services", "filters": {} - } + }, + "customViewsConfig": { + "customView1": { + "cells": ["hosts_host", "host_address", "duration", "last_check", "host_status"], + "apiName": "hosts", + "filters": {} + }, + "customView2": { + "cells": ["host", "service_check", "duration", "last_check"], + "apiName": "services", + "filters": {} + } + } } diff --git a/app/custom_views/custom_views.html b/app/custom_views/custom_views.html new file mode 100644 index 0000000..c254d9b --- /dev/null +++ b/app/custom_views/custom_views.html @@ -0,0 +1,7 @@ +
+ +

Custom View

+ + + +
diff --git a/app/custom_views/custom_views.js b/app/custom_views/custom_views.js new file mode 100644 index 0000000..74bb0c3 --- /dev/null +++ b/app/custom_views/custom_views.js @@ -0,0 +1,42 @@ +'use strict'; + +angular.module('adagios.view.custom', ['ngRoute', + 'adagios.tactical.status_overview', + 'adagios.tactical.current_health', + 'adagios.tactical.top_alert_producers', + 'adagios.table' + ]) + + .value('customViewsConfig', {}) + + .config(['$routeProvider', function ($routeProvider) { + $routeProvider.when('/customViews', { + templateUrl: 'custom_views/custom_views.html', + controller: 'CustomViewsCtrl' + }); + }]) + + .controller('CustomViewsCtrl', [ '$scope', '$routeParams', 'customViewsConfig', + function ($scope, $routeParams, customViewsConfig) { + var viewName = ""; + + if (!!$routeParams.view) { + viewName = $routeParams.view; + } else { + console.log("ERROR : 'view' GET parameter must be the custom view name"); + return; + } + + $scope.customViewCells = customViewsConfig[viewName].cells.join(); + $scope.customViewApiName = customViewsConfig[viewName].apiName; + $scope.customViewFilters = customViewsConfig[viewName].filters; + }]) + + .run(['readConfig', 'customViewsConfig', function (readConfig, customViewsConfig) { + var viewsConfig = readConfig.data.customViewsConfig; + + angular.forEach(viewsConfig, function(config, view) { + customViewsConfig[view] = config; + }); + + }]); diff --git a/app/index.html b/app/index.html index 4735ec4..f24ff73 100644 --- a/app/index.html +++ b/app/index.html @@ -55,6 +55,7 @@ +