blob: 90616b1e49155301e08c0af46bd316d3de6de9f6 [file] [log] [blame]
Michael Davis994a93b2017-04-18 10:01:04 -05001/**
Iftekharul Islamcd789502017-04-19 14:37:55 -05002 * Controller for sensors-overview
Michael Davis994a93b2017-04-18 10:01:04 -05003 *
Iftekharul Islamcd789502017-04-19 14:37:55 -05004 * @module app/serverHealth
5 * @exports sensorsOverviewController
6 * @name sensorsOverviewController
Michael Davis994a93b2017-04-18 10:01:04 -05007 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
Michael Davis994a93b2017-04-18 10:01:04 -050012 angular
13 .module('app.overview')
Iftekharul Islamcd789502017-04-19 14:37:55 -050014 .controller('sensorsOverviewController', [
Michael Davis994a93b2017-04-18 10:01:04 -050015 '$scope',
16 '$log',
17 '$window',
18 'APIUtils',
19 'dataService',
20 function($scope, $log, $window, APIUtils, dataService, userModel){
21 $scope.dataService = dataService;
22
23 $scope.dropdown_selected = false;
24
Iftekharul Islamcd789502017-04-19 14:37:55 -050025 $scope.$log = $log;
Iftekharul Islamd2269e22017-05-02 09:32:45 -050026 $scope.customSearch = "";
27 $scope.searchTerms = [];
28 $scope.selectedSeverity = {
29 all: true,
30 normal: false,
31 warning: false,
32 critical: false
33 };
34 $scope.export_name = "sensors.json";
Michael Davis428375e2017-08-01 15:48:34 -050035 $scope.loading = false;
Iftekharul Islamd2269e22017-05-02 09:32:45 -050036 $scope.jsonData = function(data){
37 var dt = {};
38 data.data.forEach(function(item){
39 dt[item.original_data.key] = item.original_data.value;
40 });
41 return JSON.stringify(dt);
42 };
43
44 $scope.doSearchOnEnter = function (event) {
45 var search = $scope.customSearch.replace(/^\s+/g,'').replace(/\s+$/g,'');
46 if (event.keyCode === 13 &&
47 search.length >= 2) {
48 $scope.searchTerms = $scope.customSearch.split(" ");
49 }else{
50 if(search.length == 0){
51 $scope.searchTerms = [];
52 }
53 }
54 };
55
56 $scope.doSearchOnClick = function() {
57 var search = $scope.customSearch.replace(/^\s+/g,'').replace(/\s+$/g,'');
58 if (search.length >= 2) {
59 $scope.searchTerms = $scope.customSearch.split(" ");
60 }else{
61 if(search.length == 0){
62 $scope.searchTerms = [];
63 }
64 }
65 }
66
67 $scope.toggleSeverityAll = function(){
Iftekharul Islam8947e702017-07-27 10:28:07 -050068
69 if($scope.selectedSeverity.all !== true){
70 $scope.selectedSeverity.all = !$scope.selectedSeverity.all;
71 }
Iftekharul Islamd2269e22017-05-02 09:32:45 -050072
73 if($scope.selectedSeverity.all){
74 $scope.selectedSeverity.normal = false;
75 $scope.selectedSeverity.warning = false;
76 $scope.selectedSeverity.critical = false;
77 }
78 }
79
80 $scope.toggleSeverity = function(severity){
81 $scope.selectedSeverity[severity] = !$scope.selectedSeverity[severity];
82
83 if($scope.selectedSeverity.normal &&
84 $scope.selectedSeverity.warning &&
85 $scope.selectedSeverity.critical){
86 $scope.selectedSeverity.all = true;
87 $scope.selectedSeverity.normal = false;
88 $scope.selectedSeverity.warning = false;
89 $scope.selectedSeverity.critical = false;
90 }else{
91 $scope.selectedSeverity.all = false;
92 }
93 }
94
95 $scope.filterBySeverity = function(sensor){
96 if($scope.selectedSeverity.all) return true;
97
98 return( (sensor.severity_flags.normal && $scope.selectedSeverity.normal) ||
99 (sensor.severity_flags.warning && $scope.selectedSeverity.warning) ||
100 (sensor.severity_flags.critical && $scope.selectedSeverity.critical)
101 );
102 }
103 $scope.filterBySearchTerms = function(sensor){
104
105 if(!$scope.searchTerms.length) return true;
106
107 for(var i = 0, length = $scope.searchTerms.length; i < length; i++){
108 if(sensor.search_text.indexOf($scope.searchTerms[i].toLowerCase()) == -1) return false;
109 }
110 return true;
111 }
112
113 $scope.loadSensorData = function(){
Michael Davis428375e2017-08-01 15:48:34 -0500114 $scope.loading = true;
Iftekharul Islamd2269e22017-05-02 09:32:45 -0500115 APIUtils.getAllSensorStatus(function(data, originalData){
Iftekharul Islamd2269e22017-05-02 09:32:45 -0500116 $scope.data = data;
117 $scope.originalData = originalData;
Iftekharul Islamc1535922017-06-19 12:49:04 -0500118 dataService.sensorData = data;
Iftekharul Islamd2269e22017-05-02 09:32:45 -0500119 $scope.export_data = JSON.stringify(originalData);
Michael Davis428375e2017-08-01 15:48:34 -0500120 $scope.loading = false;
Iftekharul Islamd2269e22017-05-02 09:32:45 -0500121 });
122 };
123
124 $scope.loadSensorData();
Michael Davis994a93b2017-04-18 10:01:04 -0500125 }
126 ]
127 );
128
Iftekharul Islamcd789502017-04-19 14:37:55 -0500129})(angular);