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