From 6beb446925c967aca92f5513adf36c5db77c00d6 Mon Sep 17 00:00:00 2001 From: TATTAVARADA Date: Thu, 27 Apr 2017 07:53:18 -0400 Subject: [PORTAL-7] Rebase This rebasing includes common libraries and common overlays projects abstraction of components Change-Id: Ia1efa4deacdc5701e6205104ac021a6c80ed60ba Signed-off-by: st782s --- .../scripts/DS2-controllers/admin-controller.js | 940 +++++++++++++++++++++ 1 file changed, 940 insertions(+) create mode 100644 ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-controllers/admin-controller.js (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-controllers/admin-controller.js') diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-controllers/admin-controller.js b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-controllers/admin-controller.js new file mode 100644 index 00000000..8d664fcb --- /dev/null +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/app/fusion/scripts/DS2-controllers/admin-controller.js @@ -0,0 +1,940 @@ +appDS2.controller('adminController', function($scope, $http,AdminService, $modal, $routeParams, $rootScope){ + + $scope.totalPages = 5; + $scope.viewPerPage = 8; + $scope.searchString = ""; + $scope.currentPage = 1; + $scope.nextSort=""; + $scope.showLoader = false; + $scope.tableData=[]; + $scope.routeRoleId = $routeParams.roleId; + $scope.regions = []; + /*function*/ + $scope.getFunctionList = function(){ + $scope.tableData.length=0; + AdminService.getRoleFunctionList().then(function(data){ + var j = data; + $scope.data = JSON.parse(j.data); + $scope.tableData =JSON.parse($scope.data.availableRoleFunctions); + },function(error){ + console.log("failed"); + }); + } + + $scope.getCacheRegionsList = function(){ + // $scope.regions.length=0; + AdminService.getCacheRegions().then(function(data){ + var j = data; + $scope.data = JSON.parse(j.data); + /* for(var i = 0; i< $scope.data.length; i++){ + if($scope.data[i].cacheName !== '[object Object]'){ + $scope.regions.push($scope.data[i]); + } + }*/ + $scope.regions =$scope.data; + },function(error){ + console.log("failed"); + //reloadPageOnce(); + }); + } + + + $scope.delRoleFunc = function(roleData){ + AdminService.delRoleFunctionList(roleData).then(function(msg){ + var message = msg; + if(message.data!=null && message.data!=''){ + var status = message.data; + if(status=='"success"'){ + $scope.successPopUp(); + $scope.getFunctionList(); + }else{ + $scope.errorPopUp(''); + } + } + + },function(error){ + + }); + } + + $scope.saveRoleFunction = function(roleData){ + AdminService.saveRoleFunctionList(roleData).then(function(msg){ + var message = msg; + if(message.data!=null && message.data!=''){ + var status = message.data; + if(status=='"success"'){ + $scope.successPopUp(); + $scope.getFunctionList(); + }else{ + $scope.errorPopUp(''); + } + } + + },function(error){ + + }); + } + + $scope.addRoleFunction = function(roleData){ + AdminService.addRoleFunctionList(roleData).then(function(msg){ + var message = msg; + if(message.data!=null && message.data!=''){ + var status = message.data; + if(status=='"success"'){ + $scope.successPopUp(); + $scope.getFunctionList(); + }else if(status=='"code exists"'){ + $scope.errorPopUp('Code already exists'); + $scope.getFunctionList(); + }else{ + $scope.errorPopUp(''); + } + } + + },function(error){ + + }); + } + /*init*/ + $scope.getFunctionList(); + $scope.getCacheRegionsList(); + /*popup*/ + var ModalInstanceCtrl = function ($scope, $modalInstance, items, AdminService,$rootScope) { + $scope.roleFun=items; + $scope.msg=items; + + // remove role function associated to a role on Role Edit page + $scope.roleFunRemoveRole = function (roleFunction) { + AdminService.removeRoleFunction(roleFunction, $routeParams.roleId).then(function(msg){ + var message = msg; + $scope.cancel(); + if(message.role){ + $rootScope.$broadcast('updateRoleFunctions',{data:message.role}); + /*$modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small', + })*/ + }else{ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }) + } + + },function(error){ + console.log("error"); + }); + } + + //role activation for selected child role + $scope.activateRoleChildConfirmPopUp = function (selected, availableRole) { + $scope.msg.roleFun = availableRole.name; + $scope.msg.selected = selected; + $scope.msg.availableRole = availableRole; + var toggleType = null; + if(selected) { + toggleType = "activate"; + } else { + toggleType = "inactivate"; + } + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-child-add-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return $scope.msg; + } + } + }); + } + + // confirm Child Role Add + $scope.confirmRoleChildAdd = function(selected,availableRole,id){ + AdminService.confirmRoleChildAdd(selected,availableRole,id).then(function(msg){ + var message = msg; + $scope.cancel(); + if(message.role){ + //$rootScope.$broadcast('updateAvailbleRoles',{data:message.availableRoles}); + /*$modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small', + })*/ + }else{ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }) + } + + },function(error){ + console.log("error"); + }); + } + + // confirm Child Role Remove + $scope.confirmRoleChildRemove = function(selected,availableRole,id){ + AdminService.confirmRoleChildRemove(selected,availableRole,id).then(function(msg){ + var message = msg; + $scope.cancel(); + if(message.role){ + //$rootScope.$broadcast('updateAvailbleRoles',{data:message.availableRoles}); + /*$modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small', + })*/ + }else{ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }) + } + + },function(error){ + console.log("error"); + }); + } + + //role activation for role function + $scope.activateRoleConfirmPopUp = function (selected, availableRole) { + $scope.msg.roleFun = availableRole.name; + $scope.msg.selected = selected; + $scope.msg.availableRole = availableRole; + var toggleType = null; + if(selected) { + toggleType = "activate"; + } else { + toggleType = "inactivate"; + } + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-fun-add-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return $scope.msg; + } + } + }); + } + + // confirm Role Function Add + $scope.confirmRoleFunAdd = function(selected,availableRole,id){ + AdminService.confirmRoleFunAdd(selected,availableRole,id).then(function(msg){ + var message = msg; + $scope.cancel(); + if(message.role){ + $rootScope.$broadcast('updateRoleFunctions',{data:message.role}); + /*$modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small', + })*/ + }else{ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }) + } + + },function(error){ + console.log("error"); + }); + } + + // confirm Role Function Remove + $scope.confirmRoleFunRemove = function(selected,availableRole,id){ + AdminService.confirmRoleFunRemove(selected,availableRole,id).then(function(msg){ + var message = msg; + $scope.cancel(); + if(message.role){ + $rootScope.$broadcast('updateRoleFunctions',{data:message.role}); + /*$modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small', + })*/ + }else{ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }) + } + + },function(error){ + console.log("error"); + }); + } + + //role activation + $scope.roleActivate = function(selected,availableRole){ + AdminService.activateRole(selected,availableRole).then(function(msg){ + var message = msg; + $scope.cancel(); + if(message.availableRoles){ + $rootScope.$broadcast('updateAvailbleRoles',{data:message.availableRoles}); + /*$modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small', + })*/ + }else{ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }) + } + + },function(error){ + console.log("error"); + }); + } + + //role deletion + $scope.delRole = function(roleData){ + AdminService.delRoleList(roleData).then(function(msg){ + var message = msg; + $scope.cancel(); + if(message.availableRoles){ + $rootScope.$broadcast('updateAvailbleRoles',{data:message.availableRoles}); + /*$modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small', + })*/ + }else{ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }) + } + + },function(error){ + + }); + } + + $scope.save = function (data) { + $modalInstance.close(data); + }; + + // Cancel for toggle switch on Role Fn + $scope.cancelRoleFunSwitch = function (msg) { + $scope.msg.availableRole.selected = !$scope.msg.availableRole.selected; + //$scope.msg.availableRoleFunctions[$scope.msg.availableRoleFunctions.indexOf($scope.msg.availableRole)] = $scope.selectedRoleFun; + $modalInstance.dismiss('cancel'); + }; + + // Cancel for toggle switch on Role List + $scope.cancelRoleSwitch = function (msg) { + $scope.msg.availableRole.active = !$scope.msg.availableRole.active; + $modalInstance.dismiss('cancel'); + }; + + $scope.cancel = function () { + $modalInstance.dismiss('cancel'); + }; + + $scope.deleteFun = function(data){ + $modalInstance.close(data); + } + }; + + $scope.successPopUp = function () { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return ''; + } + } + }); + }; + + $scope.successTestModelPopUp = function (response) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modalpopup.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-large', + resolve: { + items: function () { + var message = { + title: '', + text: response + }; + return message; + } + } + }); + }; + $scope.errorPopUp = function (msg) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return msg; + } + } + }); + }; + $scope.saveRoleFuncPopUp = function (availableRoleFunction) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-function-edit.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return availableRoleFunction; + } + } + }); + + modalInstance.result.then(function (data) { + $scope.saveRoleFunction(data); + }); + } + + $scope.addRoleFuncPopUp = function (availableRoleFunction) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-function-add.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return availableRoleFunction; + } + } + }); + + modalInstance.result.then(function (data) { + $scope.addRoleFunction(data); + }); + } + + $scope.delRoleFuncConfirmPopUp = function (availableRoleFunction) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-function-del-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + var message = { + title: '', + text: availableRoleFunction.name, + content: availableRoleFunction + }; + return message; + } + } + }); + + modalInstance.result.then(function (data) { + $scope.delRoleFunc(data.content); + }); + } + $scope.clearAllFuncPopUp = function () { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/cache-menu-clear-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + // return availableRoleFunction; + } + } + }); + + modalInstance.result.then(function () { + $scope.clearAll(); + }); + } + + $scope.clearAll = function(){ + AdminService.clearAdminRegions().then(function(msg){ + var message = msg; + if(message.data!=null && message.data!=''){ + var status = message.data; + if(status=='"success"'){ + $scope.successTestModelPopUp(''); + $scope.getCacheRegionsList(); + }else{ + $scope.errorPopUp(); + } + } + + },function(error){ + + }); + } + $scope.showRegionDetailsFuncPopUp = function (response) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/success_modalpopup.html', + controller: ModalInstanceCtrl, + //sizeClass: 'modal-small', + resolve: { + items: function () { + var message = { + title: '', + text: response, + }; + return message; + } + } + }); + + modalInstance.result.then(function (response) { + $scope.showRegionDetails(response); + }); + } + + $scope.showRegionDetails = function(cacheName) { + AdminService.showRegionDetails(cacheName).then(function(res){ + + var message = res.data; + var msgParsed = JSON.stringify(message); + // alert('1 : '+msgParsed); + + var messaged = message.data; + var msgParsedd = JSON.stringify(messaged); + //alert('2 : '+msgParsedd); + //console.log('2 '+msgParsedd); + //console.log('4 '+msgParsedd.substr(3,msgParsedd.length -2).split('\\n')); + + + if(message.data!=null && message.data!=''){ + var status = res.status; + + + if(status==200){ + + + + var htmlstring = message.data.toString(); + var htmlStrReplace = htmlstring.replace(/['"]+/g, ''); + var htmlStrReplaceSplit = htmlStrReplace.split('\n'); + var dataStr = htmlStrReplace.replace(/\\n/g, "\n"); //htmlstring.replace(/\n/g, " "); + $scope.successTestModelPopUp(dataStr); + }else{ + $scope.errorPopUp(''); + } + } + + },function(error){ + + }); + } + + $scope.clearRegionFuncPopUp = function (cacheName) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/cache-menu-clear-region-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + var message = { + title: '', + text: cacheName + }; + return message; + } + } + }); + + modalInstance.result.then(function (cacheName) { + $scope.clearRegionFunction(cacheName); + }); + } + + $scope.clearRegionFunction = function(cacheName){ + AdminService.clearRegionFunction(cacheName).then(function(msg){ + var message = msg; + if(message.data!=null && message.data!=''){ + var status = message.data; + if(status=='"success"'){ + $scope.successPopUp(); + $scope.getCacheRegionsList()(); + }else{ + $scope.errorPopUp(''); + } + } + + },function(error){ + + }); + } + + $scope.clearItemFuncPopUp = function (cacheName, key) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/clearItem-region-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + var message = { + title: '', + text: cacheName + }; + return message; + } + } + }); + + modalInstance.result.then(function (cacheName, key) { + $scope.clearItemFunction(cacheName, key); + }); + } + + $scope.clearItemFunction = function(cacheName, key){ + AdminService.clearItemnFunction(cacheName, key).then(function(msg){ + var message = msg; + if(message.data!=null && message.data!=''){ + var status = message.data; + if(status=='"success"'){ + $scope.successPopUp(); + $scope.getCacheRegionsList()(); + }else{ + $scope.errorPopUp(''); + } + } + + },function(error){ + + }); + } + + + /*$scope.showItemDetails = function(cacheName,key) { + $http.get("jcs_admin/showItemDetails?keyName="+key+"&cacheName="+cacheName).success(function(response){ + var message = "CacheName: "+ response.cacheName + +"\nkey: "+response.key + +"\nIS_SPOOL: "+response.attr.IS_SPOOL + +"\nIS_LATERAL: "+response.attr.IS_LATERAL + +"\nIS_REMOTE: "+response.attr.IS_REMOTE + +"\nIS_ETERNAL: "+response.attr.IS_ETERNAL + +"\nversion: "+response.attr.version + +"\nmaxLifeSeconds: "+response.attr.maxLifeSeconds + +"\nmaxIdleTimeSeconds: "+response.attr.maxIdleTimeSeconds + +"\nsize: "+response.attr.size + +"\ncreateTime: "+response.attr.createTime + +"\nlastAccessTime: "+response.attr.lastAccessTime + +"\nidleTime: "+response.attr.idleTime + +"\ntimeToLiveSeconds: "+response.attr.timeToLiveSeconds + +"\nisSpool: "+response.attr.isSpool + +"\nisLateral: "+response.attr.isLateral + +"\nisRemote: "+response.attr.isRemote + +"\nisEternal: "+response.attr.isEternal; + modalService.showSuccess('',message);}); + };*/ + + + $scope.showItemDetails = function(cacheName, key){ + AdminService.showItemDetails(cacheName, key).then(function(msg){ + var message = msg; + if(message.data!=null && message.data!=''){ + var status = message.data; + if(status=='"success"'){ + + $scope.successPopUp(); + $scope.getCacheRegionsList()(); + }else{ + $scope.errorPopUp(''); + } + } + + },function(error){ + + }); + } + + + //role deletion pop up + $scope.delRoleConfirmPopUp = function (availableRole) { + + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-delete-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + var message = { + availableRole:availableRole, + roleName: availableRole.name + }; + return message; + } + } + }); + + /*modalInstance.result.then(function (data) { + $scope.delRole(data); + });*/ + } + + // role activation + $scope.activateRoleConfirmPopUp = function (selected, availableRole) { + var toggleType = null; + if(selected) { + toggleType = "activate"; + } else { + toggleType = "inactivate"; + } + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-confirm-activation.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + var message = { + //availableRole: $scope.msg.availableRole, + text: toggleType, + selected:selected, + availableRole:availableRole, + roleName:availableRole.name + }; + return message; + } + } + }); + + /*modalInstance.result.then(function (data) { + $scope.activateRole(data); + });*/ + } + + $scope.roleFnInit = function(){ + AdminService.getRole($routeParams.roleId).then(function(data){ + + var j = data; + $scope.data = JSON.parse(j.data); + + $scope.role =JSON.parse($scope.data.role); + // console.log($scope.role); + + $scope.ociavailableRoleFunctions =JSON.parse($scope.data.availableRoleFunctions); + // console.log($scope.ociavailableRoleFunctions); + $scope.availableRoleFunctions=[]; + + if($scope.ociavailableRoleFunctions) + angular.forEach($scope.ociavailableRoleFunctions, function(a,i){ + var availableRoleFunction = a; + availableRoleFunction.selected = false; + angular.forEach($scope.role.roleFunctions, function(b,j){ + if(a.code === b.code) { + availableRoleFunction.selected = true; + } + }); + $scope.availableRoleFunctions.push(availableRoleFunction); + }); + + + $scope.ociavailableRoles=JSON.parse($scope.data.availableRoles); + // console.log($scope.ociavailableRoles); + //console.log("testing roles if exist"); + $scope.availableRoles=[]; + + if($scope.ociavailableRoles) + angular.forEach($scope.ociavailableRoles, function(a,i){ + var availableRole = a; + availableRole.selected = false; + if($scope.role.childRoles){ + angular.forEach($scope.role.childRoles, function(b,j){ + if(a.id === b.id) { + availableRole.selected = true; + } + }); + }; + $scope.availableRoles.push(availableRole); + }); + + + },function(error){ + console.log("roleControllerDS2 failed: " + error); + reloadPageOnce(); + }); + } + + // updating roles on role list page after deletion of a role + $rootScope.$on('updateAvailbleRoles', function(e,d){ + $scope.ociavailableRoles = d.data; + }) + + // updating role functions on roles page after deletion of a role function + $rootScope.$on('updateRoleFunctions',function(e,d){ + $scope.role = d.data; + }) + + $scope.roleFnInit(); + + $scope.saveRole = function() { + var errorMsg; + // Validate non-empty priority as integer + if ($scope.role.priority && $scope.role.priority != '' && isNaN(parseInt($scope.role.priority))) { + errorMsg = 'Priority must be an integer.'; + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return errorMsg; + } + } + }); + return; + } + for (x in $scope.availableRoles){ + // console.log($scope.availableRoles[x].name); + if ($scope.availableRoles[x].name==$scope.role.name){ + errorMsg = 'Role already exists.'; + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + return errorMsg; + } + } + }); + return; + } + } + if(!errorMsg){ + var postData={ + role: $scope.role, + childRoles: $scope.role.childRoles, + roleFunctions : $scope.role.roleFunctions + }; + AdminService.saveRole(postData, $routeParams.roleId).then(function(msg){ + if(msg.role){ + //$scope.role = msg.role; + sessionStorage.setItem('addCall', true); + location.href='admin#/role/'+msg.role.id; + $scope.availableRoles.push(msg); + $scope.routeRoleId = msg.role.id; + $rootScope.$broadcast('updateAvailbleRoles',{data:$scope.availableRoles}); + //saving the addCall variable in sessionStorage to change the url from AddRole to Edit Role on success of Save and displaying the success pop up + if(sessionStorage.addCall){ + $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/success_modal.html', + sizeClass: 'modal-small' + }); + sessionStorage.removeItem('addCall'); + } + } else{ + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-modal/error_modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + msg = 'Error saving Role. Please retry'; + return msg; + } + } + }); + } + },function(error){ + console.log("error msg"); + }) + + } + } + + $scope.addNewRoleFunctionModalPopup = function(data, role,info) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-functions-modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-large', + resolve: { + items: function () { + var message = { + roleFunctions:data, + role:role, + roleId:info.id, + availableRoleFunctions:$scope.ociavailableRoleFunctions + }; + return message; + } + } + }); + } + + $scope.addNewChildRoleFunctionModalPopup = function(data, role,info) { + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-functions-child-roles-modal.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-large', + resolve: { + items: function () { + var message = { + roleChildFunctions:data, + role:role, + roleId:info.id + }; + return message; + } + } + }); + } + + // remove role function associated to a role on Role Edit page + $scope.removeRoleFunction= function(roleFunction){ + var modalInstance = $modal.open({ + templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-admin/modals/role-fun-role-del-confirm.html', + controller: ModalInstanceCtrl, + sizeClass: 'modal-small', + resolve: { + items: function () { + var message = { + roleFunction:roleFunction + }; + return message; + } + } + }); + } + +}); -- cgit 1.2.3-korg