RAN Connectionscreen upgrade to mat-table
[portal/ric-dashboard.git] / webapp-frontend / src / app / ran-connection / ran-connection.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 { MatDialog} from '@angular/material/dialog';
22 import { RANConnectionDialogComponent } from './ran-connection-dialog.component';
23 import { E2ManagerService } from '../services/e2-mgr/e2-mgr.service';
24 import { E2SetupRequest } from '../interfaces/e2-mgr.types';
25 import { RANConnectionDataSource } from './ran-connection.datasource';
26
27
28 @Component({
29   selector: 'app-ran-connection',
30   templateUrl: './ran-connection.component.html',
31   styleUrls: ['./ran-connection.component.scss']
32 })
33 export class RANConnectionComponent implements OnInit {
34   displayedColumns: string[] = [ 'requestType', 'ranName', 'ranIp', 'ranPort', 'responseCode', 'timeStamp' ];
35   dataSource: RANConnectionDataSource;
36
37   constructor(private e2MgrSvc: E2ManagerService, public dialog: MatDialog) { }
38
39   ngOnInit() {
40     this.dataSource = new RANConnectionDataSource(this.e2MgrSvc);
41     this.dataSource.loadTable();
42   }
43
44   openRanConnectDialog() {
45     const dialogRef = this.dialog.open(RANConnectionDialogComponent, {
46       width: '450px',
47       data: {}
48     });
49     dialogRef.afterClosed().subscribe(result => {
50       this.dataSource = new RANConnectionDataSource(this.e2MgrSvc);
51       this.dataSource.loadTable();
52     });
53   }
54
55 }