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