Resolved the Policy GUI Javascript issues
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / controller / dictionaryGridController / FWParentListDictGridController.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('parentDictGridController', function ($scope, PolicyAppService,modalService, $modal){
21         $( "#dialog" ).hide();
22         
23         PolicyAppService.getData('getDictionary/get_FWDictionaryListData').then(function (data) {
24                 var j = data;
25                 $scope.data = JSON.parse(j.data);
26                 console.log($scope.data);
27                 $scope.fwDictListDictionaryDatas = JSON.parse($scope.data.fwDictListDictionaryDatas);
28                 console.log($scope.fwDictListDictionaryDatas);
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.parentDictionaryGrid.columnDefs[0].visible = false;
39                          $scope.gridApi.grid.refresh();
40                  }else{
41                          $scope.parentDictionaryGrid.columnDefs[0].visible = true;
42                          $scope.gridApi.grid.refresh();
43                  }
44          },function(error){
45                  console.log("failed");
46          });
47
48         $scope.parentDictionaryGrid = {
49                         data : 'fwDictListDictionaryDatas',
50                         enableFiltering: true,
51                         exporterCsvFilename: 'ParentList.csv',
52                         enableSelectAll: true,
53                         columnDefs: [{
54                                 field: 'id', enableFiltering: false, headerCellTemplate: '' +
55                                 '<button id=\'New\' ng-click="grid.appScope.createNewFWParentListWindow()" class="btn btn-success">' + 'Create</button>',
56                                 cellTemplate:
57                                         '<button  type="button"  class="btn btn-primary"  ng-click="grid.appScope.editFWParentListWindow(row.entity)"><i class="fa fa-pencil-square-o"></i></button> ' +
58                                         '<button  type="button"  class="btn btn-danger"  ng-click="grid.appScope.deleteFWParentList(row.entity)" ><i class="fa fa-trash-o"></i></button> ',  width: '8%'
59                         },{ field: 'parentItemName', displayName : 'Parent Name', sort: { direction: 'asc', priority: 0 }},
60                         { field: 'description', displayName : 'Description' },
61                         { field: 'addressList', displayName : 'Address List' },
62                         { field: 'serviceList', displayName : 'Service List' }
63                         ],
64                         exporterMenuPdf: false,
65                         exporterPdfDefaultStyle: {fontSize: 9},
66                         exporterPdfTableStyle: {margin: [30, 30, 30, 30]},
67                         exporterPdfTableHeaderStyle: {fontSize: 10, bold: true, italics: true, color: 'red'},
68                         exporterPdfHeader: { text: "My Header", style: 'headerStyle' },
69                         exporterPdfFooter: function ( currentPage, pageCount ) {
70                                 return { text: currentPage.toString() + ' of ' + pageCount.toString(), style: 'footerStyle' };
71                         },
72                         exporterPdfCustomFormatter: function ( docDefinition ) {
73                                 docDefinition.styles.headerStyle = { fontSize: 22, bold: true };
74                                 docDefinition.styles.footerStyle = { fontSize: 10, bold: true };
75                                 return docDefinition;
76                         },
77                         exporterPdfOrientation: 'portrait',
78                         exporterPdfPageSize: 'LETTER',
79                         exporterPdfMaxGridWidth: 500,
80                         exporterCsvLinkElement: angular.element(document.querySelectorAll(".custom-csv-link-location")),
81                         onRegisterApi: function(gridApi){
82                                 $scope.gridApi = gridApi;
83                         }
84         };
85
86         $scope.editParentList = null;
87         $scope.createNewFWParentListWindow = function(){
88                 $scope.editParentList = null;
89                 var modalInstance = $modal.open({
90                         backdrop: 'static', keyboard: false,
91                         templateUrl : 'add_fwParentList_popup.html',
92                         controller: 'editFWParentListController',
93                         resolve: {
94                                 message: function () {
95                                         var message = {
96                                                         fwDictListDictionaryDatas: $scope.editParentList
97                                         };
98                                         return message;
99                                 }
100                         }
101                 });
102                 modalInstance.result.then(function(response){
103                         console.log('response', response);
104                         $scope.fwDictListDictionaryDatas=response.fwDictListDictionaryDatas;
105                 });
106         };
107
108         $scope.editFWParentListWindow = function(fwDictListDictionaryData) {
109                 $scope.editParentList = fwDictListDictionaryData;
110                 var modalInstance = $modal.open({
111                         backdrop: 'static', keyboard: false,
112                         templateUrl : 'add_fwParentList_popup.html',
113                         controller: 'editFWParentListController',
114                         resolve: {
115                                 message: function () {
116                                         var message = {
117                                                         fwDictListDictionaryData: $scope.editParentList
118                                         };
119                                         return message;
120                                 }
121                         }
122                 });
123                 modalInstance.result.then(function(response){
124                         console.log('response', response);
125                         $scope.fwDictListDictionaryDatas = response.fwDictListDictionaryDatas;
126                 });
127         };
128
129         $scope.deleteFWParentList = function(data) {
130                 modalService.popupConfirmWin("Confirm","You are about to delete the Parent List:  "+data.parentItemName+". Do you want to continue?",
131                                 function(){
132                         var uuu = "deleteDictionary/fw_dictionary/remove_FWDictionaryList";
133                         var postData={data: data};
134                         $.ajax({
135                                 type : 'POST',
136                                 url : uuu,
137                                 dataType: 'json',
138                                 contentType: 'application/json',
139                                 data: JSON.stringify(postData),
140                                 success : function(data){
141                                         $scope.$apply(function(){$scope.fwDictListDictionaryDatas=data.fwDictListDictionaryDatas;});
142                                 },
143                                 error : function(data){
144                                         console.log(data);
145                                         modalService.showFailure("Fail","Error while deleting: "+ data.responseText);
146                                 }
147                         });
148
149                 })
150         };
151
152 });