Reformat Dashboard code
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / DashboardCtrl.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License"); 
9  * you may not use this file except in compliance with the License. 
10  * You may obtain a copy of the License at
11  * 
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software 
15  * distributed under the License is distributed on an "AS IS" BASIS, 
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
17  * See the License for the specific language governing permissions and 
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * 
22  */
23 'use strict';
24 angular.module('clds-app').controller(
25 'DashboardCtrl',
26 [
27     '$scope',
28     '$rootScope',
29     '$resource',
30     '$http',
31     '$timeout',
32     '$location',
33     '$interval',
34     function($scope, $rootScope, $resource, $http, $timeout, $location, $interval) {
35
36             console.log("//////////////DashboardCtrl");
37             $scope.autosaveInterval = 1800000;
38             $rootScope.isModel = false;
39             $rootScope.isPalette = false;
40             $rootScope.isTestSet = false;
41             $rootScope.isRequirementCoverage = false;
42             $rootScope.ispropertyExplorer = false;
43             $rootScope.parameters;
44             $scope.orientation = "horizontal";
45             $rootScope.ispropertyExplorer = false;
46             $rootScope.isActive = true;
47             $rootScope.models = [];
48             $scope.selectedParent = {};
49             $rootScope.utmModels = {};
50             $rootScope.selectedModelName;
51             $rootScope.dialogName = "";
52             $interval(function() {
53
54                     console.log("interval");
55             }, $scope.autosaveInterval);
56             $rootScope.onSelectActivityModel = function(obj) {
57
58                     console.log("onSelectActivityModel");
59                     $rootScope.isPalette = true;
60                     $rootScope.isTestSet = false;
61                     $rootScope.isRequirementCoverage = false;
62                     $rootScope.ispropertyExplorer = false;
63                     $("#activity_modeler").prev().css("display", "block");
64                     $('div').find('.k-expand-next').click();
65                     if (obj == undefined) {
66                             document.getElementById("modeler_name").textContent = "Activity Modeler";
67                     } else {
68                             selected_model = obj;
69                             document.getElementById("modeler_name").textContent = "Activity Modeler" + "  - " + selected_model;
70                     }
71                     $rootScope.modelName = selected_model;
72                     $rootScope.modeltestset = list_model_test_sets[selected_model];
73                     if (list_model_schema_extensions[selected_model] == null) {
74                             if (list_model_schema_extensions[$rootScope.utmModels.name] != null) {
75                                     list_model_schema_extensions[selected_model] = jQuery.extend(true, {},
76                                     list_model_schema_extensions[$rootScope.utmModels.name]);
77                             } else {
78                                     list_model_schema_extensions[selected_model] = {};
79                             }
80                     }
81                     $rootScope.initProjectExplorer();
82                     changecolor(selected_model);
83             };
84             $scope.selectActivityTestSet = function() {
85
86                     console.log("selectActivityTestSet");
87                     $rootScope.isPalette = false;
88                     $rootScope.isRequirementCoverage = false;
89                     $rootScope.isTestset = true;
90                     document.getElementById("modeler_name").textContent = "UTM Test Set";
91                     $('div').find('.k-collapse-next').click();
92                     $rootScope.modeltestset = list_model_test_sets[selected_model];
93                     $rootScope.$apply();
94             };
95             $scope.showPalette = function() {
96
97                     console.log("showPalette");
98                     $rootScope.isModel = true;
99             };
100             $rootScope.filterRouter = 'partials/DashboardFilters.html';
101             $scope.isActivePROD = true;
102             $scope.isActiveQC = false;
103             $rootScope.reload = function(env) {
104
105                     console.log("reload");
106             };
107             $scope.showTDSSView = true;
108     } ]);
109 function changecolor(selected_model) {
110
111         console.log("changecolor");
112         var i = 0;
113         // var modelNames =[];
114         $(".models").each(function(i) {
115
116                 console.log("each");
117                 var model_value = $(this).text().trim();
118                 // modelName.push(model_value);
119                 if (model_value == selected_model || model_value == "") {
120                         $(this).addClass("selectedcolor");
121                 } else {
122                         $(this).removeClass("selectedcolor");
123                 }
124                 i++;
125         });
126 }