2  * ============LICENSE_START=======================================================
 
   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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  20 app.controller('tagListDictGridController', function ($scope, PolicyAppService, modalService, $modal){
 
  21     $( "#dialog" ).hide();
 
  23     PolicyAppService.getData('getDictionary/get_TagListData').then(function (data) {
 
  25         $scope.data = JSON.parse(j.data);
 
  26         console.log($scope.data);
 
  27         $scope.fwTagDictionaryDatas = JSON.parse($scope.data.fwTagDictionaryDatas);
 
  28         console.log($scope.fwTagDictionaryDatas);
 
  30         console.log("failed");
 
  33     PolicyAppService.getData('get_LockDownData').then(function(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.tagListDictionaryGrid.columnDefs[0].visible = false;
 
  39                          $scope.gridApi.grid.refresh();
 
  41                          $scope.tagListDictionaryGrid.columnDefs[0].visible = true;
 
  42                          $scope.gridApi.grid.refresh();
 
  45                  console.log("failed");
 
  48     $scope.tagListDictionaryGrid = {
 
  49         data : 'fwTagDictionaryDatas',
 
  50         enableFiltering: true,
 
  51         exporterCsvFilename: 'FWTag.csv',
 
  53         enableSelectAll: true,
 
  55             field: 'id', enableFiltering: false, headerCellTemplate: '' +
 
  56             '<button id=\'New\' ng-click="grid.appScope.createNewFWTagWindow()" class="btn btn-success">' + 'Create</button>',
 
  58             '<button  type="button"  class="btn btn-primary"  ng-click="grid.appScope.editFWTagWindow(row.entity)"><i class="fa fa-pencil-square-o"></i></button> ' +
 
  59             '<button  type="button"  class="btn btn-danger"  ng-click="grid.appScope.deleteFWTag(row.entity)" ><i class="fa fa-trash-o"></i></button> ',  width: '8%'
 
  60         },{ field: 'fwTagName', displayName : 'Tag Name', sort: { direction: 'asc', priority: 0 }},
 
  61             { field: 'tagValues', displayName : 'Values' },
 
  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\''  }
 
  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' };
 
  76         exporterPdfCustomFormatter: function ( docDefinition ) {
 
  77          docDefinition.styles.headerStyle = { fontSize: 22, bold: true };
 
  78          docDefinition.styles.footerStyle = { fontSize: 10, bold: true };
 
  81         exporterPdfOrientation: 'portrait',
 
  82         exporterPdfPageSize: 'LETTER',
 
  83         exporterPdfMaxGridWidth: 500,
 
  84         exporterCsvLinkElement: angular.element(document.querySelectorAll(".custom-csv-link-location")),
 
  85         onRegisterApi: function(gridApi){
 
  86                 $scope.gridApi = gridApi;
 
  90     $scope.editFWTag = null;
 
  91     $scope.createNewFWTagWindow = function(){
 
  92         $scope.editFWTag = null;
 
  93         var modalInstance = $modal.open({
 
  94                 backdrop: 'static', keyboard: false,
 
  95             templateUrl : 'add_fwTag_popup.html',
 
  96             controller: 'editFWTagListController',
 
  98                 message: function () {
 
 100                                 fwTagDictionaryDatas: $scope.editFWTag
 
 106         modalInstance.result.then(function(response){
 
 107             console.log('response', response);
 
 108             $scope.fwTagDictionaryDatas=response.fwTagDictionaryDatas;
 
 112     $scope.editFWTagWindow = function(fwTagDictionaryDatas) {
 
 113         $scope.editFWTag = fwTagDictionaryDatas;
 
 114         var modalInstance = $modal.open({
 
 115                 backdrop: 'static', keyboard: false,
 
 116             templateUrl : 'add_fwTag_popup.html',
 
 117             controller: 'editFWTagListController',
 
 119                 message: function () {
 
 121                         fwTagDictionaryDatas: $scope.editFWTag
 
 127         modalInstance.result.then(function(response){
 
 128             console.log('response', response);
 
 129             $scope.fwTagDictionaryDatas = response.fwTagDictionaryDatas;
 
 133     $scope.deleteFWTag = function(data) {
 
 134         modalService.popupConfirmWin("Confirm","You are about to delete the tag:  "+data.fwTagName+". Do you want to continue?",
 
 136                 var uuu = "deleteDictionary/fw_dictionary/remove_tagList";
 
 137                 var postData={data: data};
 
 142                     contentType: 'application/json',
 
 143                     data: JSON.stringify(postData),
 
 144                     success : function(data){
 
 145                         $scope.$apply(function(){$scope.fwTagDictionaryDatas=data.fwTagDictionaryDatas;});
 
 147                     error : function(data){
 
 149                         modalService.showFailure("Fail","Error while deleting: "+ data.responseText);