af7709d8ee2fdb8dfe3f54d678b7780f5738c93a
[portal/ric-dashboard.git] / webapp-frontend / src / app / ran-control / ran-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 { HttpResponse, HttpErrorResponse } from '@angular/common/http';
22 import { MatDialog } from '@angular/material/dialog';
23 import { RanControlConnectDialogComponent } from './ran-connection-dialog.component';
24 import { E2ManagerService } from '../services/e2-mgr/e2-mgr.service';
25 import { ErrorDialogService } from '../services/ui/error-dialog.service';
26 import { ConfirmDialogService } from '../services/ui/confirm-dialog.service';
27 import { NotificationService } from '../services/ui/notification.service';
28 import { RANControlDataSource } from './ran-control.datasource';
29
30 @Component({
31   selector: 'rd-ran-control',
32   templateUrl: './ran-control.component.html',
33   styleUrls: ['./ran-control.component.scss']
34 })
35 export class RanControlComponent implements OnInit {
36   displayedColumns: string[] = ['nbId', 'nodeType', 'ranName', 'ranIp', 'ranPort', 'connectionStatus'];
37   dataSource: RANControlDataSource;
38
39   constructor(private e2MgrSvc: E2ManagerService,
40     private errorDialogService: ErrorDialogService,
41     private confirmDialogService: ConfirmDialogService,
42     private notificationService: NotificationService,
43     public dialog: MatDialog) { }
44
45   ngOnInit() {
46     this.dataSource = new RANControlDataSource(this.e2MgrSvc, this.notificationService);
47     this.dataSource.loadTable();
48   }
49
50   setupRANConnection() {
51     const dialogRef = this.dialog.open(RanControlConnectDialogComponent, {
52       width: '450px'
53     });
54     dialogRef.afterClosed().subscribe( (result: boolean) => {
55       if (result) {
56         this.dataSource.loadTable();
57       }
58     });
59   }
60
61   disconnectAllRANConnections() {
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: boolean) => {
65         if (res) {
66           this.e2MgrSvc.nodebPut().subscribe(
67             ( body: any ) => {
68               this.notificationService.success('Disconnect succeeded!');
69               this.dataSource.loadTable();
70             },
71             (her: HttpErrorResponse) => {
72               // the error field should have an ErrorTransport object
73               let msg = her.message;
74               if (her.error && her.error.message) {
75                 msg = her.error.message;
76               }
77               this.errorDialogService.displayError('Disconnect failed: ' + msg);
78             }
79           );
80         }
81       });
82   }
83
84 }