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