Use O-RAN-SC
[portal/ric-dashboard.git] / webapp-frontend / src / app / control / control.component.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
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, OnInit } from '@angular/core';
21 import { LocalDataSource } from 'ng2-smart-table';
22 import { ControlService } from '../services/control/control.service';
23 import { Router } from '@angular/router';
24
25 @Component({
26   selector: 'app-control',
27   templateUrl: './control.component.html',
28   styleUrls: ['./control.component.css']
29 })
30 export class ControlComponent {
31
32     settings = {
33     hideSubHeader: true,
34     actions: {
35       columnTitle: 'Actions',
36       add: false,
37       edit: false,
38       delete: false,
39       custom: [
40       { name: 'view', title: 'view', },
41     ],
42       position: 'right'
43
44     },
45     columns: {
46       id: {
47         title: 'ID',
48         type: 'number',
49       },
50       xAppName: {
51         title: 'xApp Name',
52         type: 'string',
53       },
54       xAppType: {
55         title: 'xApp Type',
56         type: 'string',
57       },
58       podId: {
59         title: 'Pod ID',
60         type: 'number',
61       },
62       k8Status: {
63         title: 'k8 Status',
64         type: 'string',
65       },
66       age: {
67         title: 'Age',
68         type: 'string',
69       },
70     },
71   };
72
73   source: LocalDataSource = new LocalDataSource();
74
75   constructor(private service: ControlService, private router: Router) {
76     const data = this.service.getData();
77     this.source.load(data);
78   }
79
80   view(event): void {
81       const url = '/xapp';
82       this.router.navigate([url, event]).then( (e) => {
83             if (e) {
84                 console.log(event.data);
85                 console.log('Navigation is successful!');
86             } else {
87                 console.log('Navigation has failed!');
88             }
89         });
90   }
91
92
93 }