Draft of React test
[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.ispropertyExplorer = false;
42             $rootScope.parameters;
43             $scope.orientation = "horizontal";
44             $rootScope.ispropertyExplorer = false;
45             $rootScope.isActive = true;
46             $rootScope.models = [];
47             $scope.selectedParent = {};
48             $rootScope.utmModels = {};
49             $rootScope.selectedModelName;
50             $rootScope.dialogName = "";
51             $interval(function() {
52
53                     console.log("interval");
54             }, $scope.autosaveInterval);
55
56             $scope.showPalette = function() {
57
58                     console.log("showPalette");
59                     $rootScope.isModel = true;
60             };
61             $rootScope.filterRouter = 'partials/DashboardFilters.html';
62             $scope.isActivePROD = true;
63             $scope.isActiveQC = false;
64             $rootScope.reload = function(env) {
65
66                     console.log("reload");
67             };
68             $scope.showTDSSView = true;
69     } ]);
70