ef553e23ca3f1774786da7838e7f96927116ae5c
[portal.git] / ecomp-portal-FE-common / client / app / views / confirmation-box / confirmation-box.controller.js
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 /**
21  * Created by nnaffar on 1/18/16.
22  */
23 'use strict';
24 (function () {
25     class ConfirmationBoxCtrl {
26         constructor($scope,$state,message,$modalInstance) {
27                 $scope.message = message;
28                 /*let init = () => {
29                 let item = ($scope.message && $scope.message.item) || 'this';
30                 message = $scope.message.content ? $scope.message.content : `Are you sure you want to delete "${message.item}"?`;
31                 this.title = $scope.message.title ? $scope.message.title : '';
32             };*/
33
34             this.closeBox = isConfirmed => {
35                 $scope.closeThisDialog(isConfirmed);
36             };
37             
38             this.goTo = (state, params) => {
39                 $scope.closeThisDialog(false);
40                 $state.go(state,params);
41                 
42             };
43             
44             $scope.ok =function(confirm){
45                 $modalInstance.close(confirm);
46             }
47
48           //  init();
49         }
50     }
51     ConfirmationBoxCtrl.$inject = ['$scope','$state','message','$modalInstance'];
52     angular.module('ecompApp').controller('ConfirmationBoxCtrl', ConfirmationBoxCtrl);
53 })();