86b15f616530d8e394b3facdf0c1169144343048
[portal/ric-dashboard.git] / webapp-frontend / src / app / xapp / xapp.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-xapp',
26   templateUrl: './xapp.component.html',
27   styleUrls: ['./xapp.component.scss']
28 })
29 export class XappComponent 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             this.rowData = event.data;
40     }
41
42
43     constructor() {  }
44
45     ngOnInit() {
46         this.renderValue = this.value;
47
48     }
49
50     example() {
51         alert(this.renderValue);
52     }
53
54     onDeployxApp() {
55         this.save.emit(this.rowData);
56     }
57
58
59 }