[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / controller / dictionaryGridController / DescriptiveScopeDictGridController.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 app.controller('descriptiveDictGridController', function ($scope, PolicyAppService, modalService, $modal){
21     $( "#dialog" ).hide();
22                 
23     PolicyAppService.getData('getDictionary/get_DescriptiveScope').then(function (data) {
24         var j = data;
25         $scope.data = JSON.parse(j.data);
26         console.log($scope.data);
27         $scope.descriptiveScopeDictionaryDatas = JSON.parse($scope.data.descriptiveScopeDictionaryDatas);
28         console.log($scope.descriptiveScopeDictionaryDatas);
29     }, function (error) {
30         console.log("failed");
31     });
32
33     PolicyAppService.getData('get_LockDownData').then(function(data){
34                  var j = data;
35                  $scope.data = JSON.parse(j.data);
36                  $scope.lockdowndata = JSON.parse($scope.data.lockdowndata);
37                  if($scope.lockdowndata[0].lockdown == true){
38                          $scope.descriptiveDictionaryGrid.columnDefs[0].visible = false;
39                          $scope.gridApi.grid.refresh();
40                  }else{
41                          $scope.descriptiveDictionaryGrid.columnDefs[0].visible = true;
42                          $scope.gridApi.grid.refresh();
43                  }
44          },function(error){
45                  console.log("failed");
46          });
47         
48     $scope.descriptiveDictionaryGrid = {
49         data : 'descriptiveScopeDictionaryDatas',
50         enableFiltering: true,
51         exporterCsvFilename: 'SearchCriteria.csv',
52         enableGridMenu: true,
53         enableSelectAll: true,
54         columnDefs: [{
55             field: 'id', enableFiltering: false, headerCellTemplate: '' +
56             '<button id=\'New\' ng-click="grid.appScope.createNewDescriptiveScopeWindow()" class="btn btn-success">' + 'Create</button>',
57             cellTemplate:
58             '<button  type="button"  class="btn btn-primary"  ng-click="grid.appScope.editDescriptiveScopeWindow(row.entity)"><i class="fa fa-pencil-square-o"></i></button> ' +
59             '<button  type="button"  class="btn btn-danger"  ng-click="grid.appScope.deleteDescriptiveScope(row.entity)" ><i class="fa fa-trash-o"></i></button> ',  width: '8%'
60         },{ field: 'scopeName', displayName : 'Descriptive Scope Name', sort: { direction: 'asc', priority: 0 }},
61             { field: 'search', displayName : 'Search Criteria' },
62             { field: 'description' },
63             {field: 'userCreatedBy.userName', displayName : 'Created By' },
64             {field: 'userModifiedBy.userName', displayName : 'Modified By'},
65             {field: 'createdDate',type: 'date', cellFilter: 'date:\'yyyy-MM-dd\''  },
66             {field: 'modifiedDate',type: 'date', cellFilter: 'date:\'yyyy-MM-dd\''  }
67         ],
68         exporterMenuPdf: false,
69         exporterPdfDefaultStyle: {fontSize: 9},
70         exporterPdfTableStyle: {margin: [30, 30, 30, 30]},
71         exporterPdfTableHeaderStyle: {fontSize: 10, bold: true, italics: true, color: 'red'},
72         exporterPdfHeader: { text: "My Header", style: 'headerStyle' },
73         exporterPdfFooter: function ( currentPage, pageCount ) {
74          return { text: currentPage.toString() + ' of ' + pageCount.toString(), style: 'footerStyle' };
75         },
76         exporterPdfCustomFormatter: function ( docDefinition ) {
77          docDefinition.styles.headerStyle = { fontSize: 22, bold: true };
78          docDefinition.styles.footerStyle = { fontSize: 10, bold: true };
79          return docDefinition;
80         },
81         exporterFieldCallback: function(grid, row, col, input) {
82                         if( col.name == 'createdDate' || col.name == 'modifiedDate') {
83                                 var date = new Date(input);
84                                 return date.toString("yyyy-MM-dd HH:MM:ss a");
85                         } else {
86                                 return input;
87                         }
88                 },
89         exporterPdfOrientation: 'portrait',
90         exporterPdfPageSize: 'LETTER',
91         exporterPdfMaxGridWidth: 500,
92         exporterCsvLinkElement: angular.element(document.querySelectorAll(".custom-csv-link-location")),
93         onRegisterApi: function(gridApi){
94                 $scope.gridApi = gridApi;
95         }
96     };
97
98     $scope.editDescriptiveScope = null;
99     $scope.createNewDescriptiveScopeWindow = function(){
100         $scope.editDescriptiveScope = null;
101         var modalInstance = $modal.open({
102                 backdrop: 'static', keyboard: false,
103             templateUrl : 'add_descriptiveScope_popup.html',
104             controller: 'editDescriptiveScopeController',
105             resolve: {
106                 message: function () {
107                     var message = {
108                         descriptiveScopeDictionaryDatas: $scope.editDescriptiveScope
109                     };
110                     return message;
111                 }
112             }
113         });
114         modalInstance.result.then(function(response){
115             console.log('response', response);
116             $scope.descriptiveScopeDictionaryDatas=response.descriptiveScopeDictionaryDatas;
117         });
118     };
119
120     $scope.editDescriptiveScopeWindow = function(descriptiveScopeDictionaryData) {
121         $scope.editDescriptiveScope = descriptiveScopeDictionaryData;
122         var modalInstance = $modal.open({
123                 backdrop: 'static', keyboard: false,
124             templateUrl : 'add_descriptiveScope_popup.html',
125             controller: 'editDescriptiveScopeController',
126             resolve: {
127                 message: function () {
128                     var message = {
129                         descriptiveScopeDictionaryData: $scope.editDescriptiveScope
130                     };
131                     return message;
132                 }
133             }
134         });
135         modalInstance.result.then(function(response){
136             console.log('response', response);
137             $scope.descriptiveScopeDictionaryDatas = response.descriptiveScopeDictionaryDatas;
138         });
139     };
140
141     $scope.deleteDescriptiveScope = function(data) {
142         modalService.popupConfirmWin("Confirm","You are about to delete the Descriptive Scope :   "+data.scopeName+". Do you want to continue?",
143             function(){
144                 var uuu = "deleteDictionary/descriptive_dictionary/remove_descriptiveScope";
145                 var postData={data: data};
146                 $.ajax({
147                     type : 'POST',
148                     url : uuu,
149                     dataType: 'json',
150                     contentType: 'application/json',
151                     data: JSON.stringify(postData),
152                     success : function(data){
153                         $scope.$apply(function(){$scope.descriptiveScopeDictionaryDatas=data.descriptiveScopeDictionaryDatas;});
154                     },
155                     error : function(data){
156                         console.log(data);
157                         modalService.showFailure("Fail","Error while deleting: "+ data.responseText);
158                     }
159                 });
160
161             })
162     };
163 });