From 91d04c64771832a0b8815ffbe1f0f9920320d94d Mon Sep 17 00:00:00 2001 From: Pamela Dragosh Date: Tue, 14 Feb 2017 19:41:00 -0500 Subject: Initial OpenECOMP policy/engine commit Change-Id: I7dbff37733b661643dd4d1caefa3d7dccc361b6e Signed-off-by: Pamela Dragosh --- .../main/webapp/app/fusion/scripts/modalService.js | 185 +++++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 ecomp-sdk-app/src/main/webapp/app/fusion/scripts/modalService.js (limited to 'ecomp-sdk-app/src/main/webapp/app/fusion/scripts/modalService.js') diff --git a/ecomp-sdk-app/src/main/webapp/app/fusion/scripts/modalService.js b/ecomp-sdk-app/src/main/webapp/app/fusion/scripts/modalService.js new file mode 100644 index 000000000..74c848e8d --- /dev/null +++ b/ecomp-sdk-app/src/main/webapp/app/fusion/scripts/modalService.js @@ -0,0 +1,185 @@ +angular.module("modalServices",[]).service('modalService', ['$modal', function ($modal) { + + + this.showSuccess = function(heading, messageBody){ + var modalInstance = $modal.open({ + templateUrl: 'modal_informative.html', + controller: 'modalpopupController', + resolve: { + message: function () { + $(".overlayed").css("display","none"); + $(".loadingId").css("display","none"); + var message = { + title: heading, + text: messageBody + }; + return message; + } + } + }); + }; + this.showFailure = function(heading, messageBody){ + var modalInstance = $modal.open({ + templateUrl: 'modal_warning.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: heading, + text: messageBody + }; + return message; + } + } + }); + }; + + this.showMessage = function(heading, messageBody){ + var modalInstance = $modal.open({ + templateUrl: 'modal_message.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: heading, + text: messageBody + }; + return message; + } + } + }); + }; + + this.showWarning = function(heading, messageBody){ + var modalInstance = $modal.open({ + templateUrl: 'modal_warning_message.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: heading, + text: messageBody + }; + return message; + } + } + }); + }; + + this.popupConfirmWin = function(title, msgBody, callback){ + var modalInstance = $modal.open({ + templateUrl: 'confirmation_informative.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: title, + text: msgBody + }; + return message; + } + } + }); + var args = Array.prototype.slice.call( arguments, 0 ); + args.splice( 0, 3); + modalInstance.result.then(function(){ + callback.apply(null, args); + }, function() { + })['finally'](function(){ + modalInstance = undefined; + }); + + }; + this.popupConfirmWinWithCancel = function(title, msgBody, callback,dismissCallback){ + var modalInstance = $modal.open({ + templateUrl: 'confirmation_informative.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: title, + text: msgBody + }; + return message; + } + } + }); + var args = Array.prototype.slice.call( arguments, 0 ); + args.splice( 0, 3); + modalInstance.result.then(function(){ + callback.apply(null, args); + }, function() { + dismissCallback(); + })['finally'](function(){ + modalInstance = undefined; + }); + + }; + this.popupDeleteConfirmWin = function(title, msgBody, callback, argForCallBack){ + var modalInstance = $modal.open({ + templateUrl: 'confirmation_for_delete.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: title, + text: msgBody + }; + return message; + } + } + }); + + modalInstance.result.then(function(){ + callback(argForCallBack); + }, function() { + })['finally'](function(){ + modalInstance = undefined; + }); + + }; + + this.popupSuccessRedirectWin = function(title, msgBody, redirectUrl){ + var modalInstance = $modal.open({ + templateUrl: 'modal_informative.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: title, + text: msgBody + }; + return message; + } + } + }); + modalInstance.result.then(function() { + }, function() { + window.location.href=redirectUrl; + })['finally'](function(){ + modalInstance = undefined; + }); + }; + + this.popupWarningRedirectWin = function(title, msgBody, redirectUrl){ + var modalInstance = $modal.open({ + templateUrl: 'modal_warning_message.html', + controller: 'modalpopupController', + resolve: { + message: function () { + var message = { + title: title, + text: msgBody + }; + return message; + } + } + }); + modalInstance.result.then(function() { + }, function() { + window.location.href=redirectUrl; + })['finally'](function(){ + modalInstance = undefined; + }); + }; + }]); \ No newline at end of file -- cgit 1.2.3-korg