appDS2.controller('drPubListCtrl', function($scope, $log, $modal, modalService, DRPubService) { // populates the list of Data Router publishers. 'use strict'; // this object holds all app data and functions $scope.dbcapp = {}; // models for controls on screen $scope.dbcapp.tableData=[]; $scope.dbcapp.currentPageNum=1; $scope.dbcapp.totalPages=1; $scope.dbcapp.viewPerPage = 100; $scope.dbcapp.viewPerPageOptions = [ { index : 0, value : 50 }, { index : 1, value : 100 }, { index : 2, value : 500 }, { index : 3, value : 1000 }, { index : 4, value : 2500 } ]; // other $scope.dbcapp.errMsg=null; $scope.dbcapp.isDataLoading=true; $scope.dbcapp.isRequestFailed=false; /** * Answers an array of the specified size - makes Angular iteration easy. */ $scope.dbcapp.buildArraySizeN = function(num) { // $log.debug("buildArraySizeN: invoked with " + num); return new Array(num); } /** * Loads the table of data router publishers. * * Interprets the remote controller's response and copies to scope * variables. The response is either list to be assigned to tableData, or an * error to be shown. */ $scope.dbcapp.loadTable = function() { $scope.dbcapp.isDataLoading = true; DRPubService.getPubsByPage($scope.dbcapp.currentPageNum,$scope.dbcapp.viewPerPage) .then(function(jsonObj) { if (jsonObj.error) { $scope.dbcapp.isRequestFailed = true; $scope.dbcapp.errMsg = jsonObj.error; $scope.dbcapp.tableData = []; } else { $scope.dbcapp.isRequestFailed = false; $scope.dbcapp.errMsg = null; $scope.dbcapp.profileName = jsonObj.profileName; $scope.dbcapp.dmaapName = jsonObj.dmaapName; $scope.dbcapp.dcaeLocations = jsonObj.dcaeLocations; $scope.dbcapp.totalPages = jsonObj.totalPages; $scope.dbcapp.tableData = jsonObj.data; } $scope.dbcapp.isDataLoading = false; },function(error){ $log.error("drPubListCtrl.loadTable failed: " + error); $scope.dbcapp.isRequestFailed = true; $scope.dbcapp.errMsg = error; $scope.dbcapp.tableData = []; $scope.dbcapp.isDataLoading = false; }); }; /** * Shows a modal pop-up to edit a publisher. * Passes data in via an object named "message". * Always updates the table, even on failure, to discard * user-entered changes that were not persisted. */ $scope.dbcapp.editPubModalPopup = function(pub) { $scope.dbcapp.editPub = pub; var modalInstance = $modal.open({ templateUrl : 'edit_pub_popup.html', controller : 'pubPopupCtrl', windowClass: 'modal-docked', sizeClass: 'modal-small', resolve : { message : function() { var dataForPopup = { pub : $scope.dbcapp.editPub, pubList : $scope.dbcapp.tableData, dcaeList : $scope.dbcapp.dcaeLocations }; return dataForPopup; } } }); modalInstance.result.then(function(response) { if (response == null) { // $log.debug('editPubModalPopup: user closed dialog'); } else { if (response.error != null) alert('Failed to update publisher:\n' + response.error); // refresh in all cases $scope.dbcapp.loadTable(); } }); }; /** * Shows a modal pop-up to confirm deletion of a publisher. * On successful completion, updates the table. */ $scope.dbcapp.deletePubModalPopup = function(pub) { modalService.popupConfirmWin("Confirm", "Delete publisher " + pub.pubId, function() { DRPubService.deletePub(pub.pubId).then( function(response) { if (response.error != null) alert('Failed to delete publisher ' + pub.pubId + '\n' + response.error); else // success, get the updated list. $scope.dbcapp.loadTable() }, function(error) { alert('pubListCtrl failed to delete: ' + JSON.stringify(error)); }); }) }; // Populate the table on load. Note that the b2b selector code // sets the page-number value, and the change event calls load table. // Do not call this here to avoid double load: // $scope.dbcapp.loadTable(); });