b493587a17b47f6e4133bb15ed730779e06dad2c
[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
26 @Component({
27   selector: 'app-control',
28   templateUrl: './control.component.html',
29   styleUrls: ['./control.component.css']
30 })
31 export class ControlComponent {
32
33     settings = {
34     hideSubHeader: true,
35     actions: {
36       columnTitle: 'Actions',
37       add: false,
38       edit: false,
39       delete: false,
40       custom: [
41       { name: 'view', title: 'view', },
42     ],
43       position: 'right'
44
45     },
46     columns: {
47       xapp: {
48         title:'xApp Name',
49         type: 'string',
50       },
51       name: {
52         title:'Instance Name',
53         type: 'string',
54       },
55         status: {
56         title: 'Status',
57         type: 'string',
58       },
59       ip: {
60         title: 'IP',
61         type: 'string',
62       },
63       port: {
64         title: 'Port',
65         type: 'integer',
66       },
67       txMessages: {
68         title: 'txMessages',
69         type: 'array',
70         },
71       rxMessages: {
72           title: 'rxMessages',
73           type: 'array',
74       },
75     },
76   };
77
78   source: LocalDataSource = new LocalDataSource();
79
80     constructor(private service: ControlService, private router: Router) {
81         this.service.getxAppInstances((instances) => { this.source.load(instances); } );
82   }
83
84   view(event): void {
85       const url = '/xapp';
86       this.router.navigate([url, event]);
87   }
88
89
90 }