Merge "[sdc] - merged 1707_build into sdc LF"
[sdc.git] / catalog-ui / src / app / ng2 / components / inputs-table / confirmation-delete-input / confirmation-delete-input.component.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
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  * ============LICENSE_END=========================================================
19  */
20
21 /**
22  * Created by rc2122 on 6/1/2017.
23  */
24 import {Component, Output, EventEmitter, ViewChild} from "@angular/core";
25 import {ButtonsModelMap, ButtonModel} from "app/models/button";
26 import {ModalComponent} from "app/ng2/components/modal/modal.component";
27
28 @Component({
29     selector: 'confirm-delete-input',
30     templateUrl: './confirmation-delete-input.component.html'
31 })
32 export class ConfirmationDeleteInputComponent {
33
34     @Output() deleteInput: EventEmitter<any> = new EventEmitter<any>();
35     @ViewChild ('confirmationModal') confirmationModal:ModalComponent;
36     footerButtons:ButtonsModelMap = {};
37
38     constructor (){
39     }
40
41     ngOnInit() {
42         this.footerButtons['Delete'] = new ButtonModel('Delete', 'blue', this.onDeleteInput);
43         this.footerButtons['Close'] = new ButtonModel('Close', 'grey', this.closeModal);
44     }
45
46     onDeleteInput = (input) => {
47         this.deleteInput.emit(input);
48         this.closeModal();
49     };
50
51     openModal = () => {
52         this.confirmationModal.open();
53     }
54
55     closeModal = () => {
56         this.confirmationModal.close();
57     }
58 }