ac77c37ff765a33bb1bc96ed8b82fa7f641df43b
[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 { ErrorDialogService } from '../services/ui/error-dialog.service';
25 import { ConfirmDialogService } from './../services/ui/confirm-dialog.service';
26 import { NotificationService } from './../services/ui/notification.service';
27 import { RANConnectionDataSource } from './ran-connection.datasource';
28 import { HttpErrorResponse } from '@angular/common/http';
29
30 @Component({
31   selector: 'app-ran-connection',
32   templateUrl: './ran-connection.component.html',
33   styleUrls: ['./ran-connection.component.scss']
34 })
35 export class RANConnectionComponent implements OnInit {
36   displayedColumns: string[] = ['requestType', 'ranName', 'ranIp', 'ranPort', 'responseCode', 'timeStamp'];
37   dataSource: RANConnectionDataSource;
38
39   constructor(private e2MgrSvc: E2ManagerService,
40     private errorSvc: ErrorDialogService,
41     private confirmDialogService: ConfirmDialogService,
42     private notification: NotificationService,
43     public dialog: MatDialog) { }
44
45   ngOnInit() {
46     this.dataSource = new RANConnectionDataSource(this.e2MgrSvc);
47     this.dataSource.loadTable();
48   }
49
50   setupRANConnection() {
51     const dialogRef = this.dialog.open(RANConnectionDialogComponent, {
52       width: '450px',
53       data: {}
54     });
55     dialogRef.afterClosed().subscribe(result => {
56       this.dataSource.loadTable();
57     });
58   }
59
60   disconnectAllRANConnections() {
61     let httpErrRes: HttpErrorResponse;
62     const aboutError = 'Disconnect all RAN Connections Failed: ';
63     this.confirmDialogService.openConfirmDialog('Are you sure you want to disconnect all RAN connections?')
64       .afterClosed().subscribe(res => {
65         if (res) {
66           this.e2MgrSvc.nodebDelete().subscribe(
67             response => {
68               if (response.status === 200) {
69                 this.notification.success('Disconnect all RAN Connections Succeeded!');
70                 this.dataSource.loadTable();
71               }
72             },
73             (error => {
74               httpErrRes = error;
75               this.errorSvc.displayError(aboutError + httpErrRes.message);
76             })
77           );
78         }
79       });
80   }
81 }