2 * ========================LICENSE_START=================================
5 * Copyright (C) 2019 AT&T Intellectual Property and Nokia
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
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';
31 selector: 'rd-ran-control',
32 templateUrl: './ran-control.component.html',
33 styleUrls: ['./ran-control.component.scss']
35 export class RanControlComponent implements OnInit {
36 displayedColumns: string[] = ['nbId', 'nodeType', 'ranName', 'ranIp', 'ranPort', 'connectionStatus'];
37 dataSource: RANControlDataSource;
39 constructor(private e2MgrSvc: E2ManagerService,
40 private errorDialogService: ErrorDialogService,
41 private confirmDialogService: ConfirmDialogService,
42 private notificationService: NotificationService,
43 public dialog: MatDialog) { }
46 this.dataSource = new RANControlDataSource(this.e2MgrSvc, this.notificationService);
47 this.dataSource.loadTable();
50 setupRANConnection() {
51 const dialogRef = this.dialog.open(RanControlConnectDialogComponent, {
54 dialogRef.afterClosed().subscribe( (result: boolean) => {
56 this.dataSource.loadTable();
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) => {
66 this.e2MgrSvc.nodebDelete().subscribe(
67 ( response: HttpResponse<Object>) => {
68 if (response.status === 200) {
69 this.notificationService.success('Disconnect all RAN Connections Succeeded!');
70 this.dataSource.loadTable();
73 ( (error: HttpErrorResponse) => {
74 this.errorDialogService.displayError(aboutError + error.message);