Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / components / ui / 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() isMovable: boolean;
37     @Input() input: ModalModel;
38     @Input() dynamicContent: any;
39     @ViewChild('dynamicContentContainer', { read: ViewContainerRef }) dynamicContentContainer: ViewContainerRef; //Allows for custom component as body instead of simple message. See ModalService.createActionModal for implementation details, and HttpHelperService's catchError() for example.
40     private modalElement: JQuery;
41
42     constructor( el: ElementRef ) {
43         this.modalElement = $(el.nativeElement);
44     }
45
46     ngOnInit(): void {
47         this.modalElement.appendTo('body');
48     }
49
50     ngOnDestroy(): void {
51         this.modalElement.remove();
52     }
53
54     open(): void {
55         this.modalElement.show();
56         $('body').addClass('modal-open');
57     }
58
59     close(): void {
60         this.modalElement.hide();
61         $('body').removeClass('modal-open');
62     }
63 }