[SDC] rebase 1710 code
[sdc.git] / catalog-ui / src / app / ng2 / components / modal / modal.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, ElementRef, Input, OnInit, OnDestroy } from '@angular/core';
25 //import {ViewContainerRef, ViewChild} from '@angular/core';
26 import * as $ from 'jquery';
27 import { ButtonsModelMap, ModalModel } from 'app/models';
28
29 @Component({
30     selector: 'modal',
31     templateUrl: './modal.component.html',
32     styleUrls:['modal.component.less']
33 })
34
35 export class ModalComponent implements OnInit, OnDestroy {
36     @Input() input: ModalModel;
37     private modalElement: JQuery;
38     //@ViewChild('modalBody', { read: ViewContainerRef }) modalContainer: ViewContainerRef; //TODO: allow for custom component as body instead of simple message
39     
40
41     constructor( el: ElementRef ) {
42         this.modalElement = $(el.nativeElement);
43     }
44
45     ngOnInit(): void {
46         this.modalElement.appendTo('body');
47     }
48
49     ngOnDestroy(): void {
50         this.modalElement.remove();
51     }
52
53     open(): void {
54         this.modalElement.show();
55         $('body').addClass('modal-open');
56     }
57
58     close(): void {
59         this.modalElement.hide();
60         $('body').removeClass('modal-open');
61     }
62 }