90d8edc77d4fdbcd2da0bc29773331053242b505
[portal/ric-dashboard.git] / webapp-frontend / src / app / ui / modal-event / modal-event.component.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * ORAN-OSC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
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 import { Component, Input, OnInit , Output, EventEmitter  } from '@angular/core';
21 import { FormControl, Validators } from '@angular/forms';
22 import { ViewCell } from 'ng2-smart-table';
23
24 @Component({
25   selector: 'app-modal-event',
26   templateUrl: './modal-event.component.html',
27   styleUrls: ['./modal-event.component.scss']
28 })
29 export class ModalEventComponent implements ViewCell, OnInit {
30
31     public renderValue;
32
33     @Input() value;
34     @Input() rowData: any;
35     @Output() save: EventEmitter<any> = new EventEmitter();
36     contactFormModalHelm = new FormControl('', Validators.required);
37     onOpened(event: any) {
38     console.log(event);
39     }
40
41
42     constructor() {  }
43
44     ngOnInit() {
45         this.renderValue = this.value;
46     }
47
48     example() {
49         alert(this.renderValue);
50     }
51
52     onDeployxApp() {
53         this.save.emit(this.rowData);
54     }
55
56 }