c3f3cb833986285132a5c60552b1b2c942ec57b8
[portal/ric-dashboard.git] / webapp-frontend / src / app / anr-xapp / anr-xapp.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
21 import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core';
22 import { MatSort } from '@angular/material';
23 import { MatDialog } from '@angular/material/dialog';
24 import { fromEvent } from 'rxjs/observable/fromEvent';
25 import { debounceTime, distinctUntilChanged, tap } from 'rxjs/operators';
26 import { ANRNeighborCellRelation } from '../interfaces/anr-xapp.types';
27 import { ANRXappService } from '../services/anr-xapp/anr-xapp.service';
28 import { ErrorDialogService } from '../services/ui/error-dialog.service';
29 import { ConfirmDialogService } from './../services/ui/confirm-dialog.service';
30 import { NotificationService } from './../services/ui/notification.service';
31 import { ANREditNCRDialogComponent } from './anr-edit-ncr-dialog.component';
32 import { ANRXappDataSource } from './anr-xapp.datasource';
33
34 @Component({
35   selector: 'app-anr',
36   templateUrl: './anr-xapp.component.html',
37   styleUrls: ['./anr-xapp.component.scss']
38 })
39 export class AnrXappComponent implements AfterViewInit, OnInit {
40
41   dataSource: ANRXappDataSource;
42   anrClientVersion: string;
43   gNodeBIds: string[];
44   @ViewChild('ggNodeB') ggNodeB: ElementRef;
45   @ViewChild('servingCellNrcgi') servingCellNrcgi: ElementRef;
46   @ViewChild('neighborCellNrpci') neighborCellNrpci: ElementRef;
47   @ViewChild(MatSort) sort: MatSort;
48
49   displayedColumns = ['cellIdentifierNrcgi', 'neighborCellNrpci', 'neighborCellNrcgi',
50     'flagNoHo', 'flagNoXn', 'flagNoRemove', 'action'];
51
52   constructor(
53     private anrXappService: ANRXappService,
54     private dialog: MatDialog,
55     private confirmDialogService: ConfirmDialogService,
56     private errorDialogService: ErrorDialogService,
57     private notificationService: NotificationService) { }
58
59   ngOnInit() {
60     this.dataSource = new ANRXappDataSource(this.anrXappService, this.sort);
61     this.dataSource.loadTable();
62     // Empty string occurs first in the array of gNodeBIds
63     this.anrXappService.getgNodeBs().subscribe((res: string[]) => this.gNodeBIds = res);
64     this.anrXappService.getVersion().subscribe((res: string) => this.anrClientVersion = res);
65   }
66
67   ngAfterViewInit() {
68     // the selector event calls loadNcrtPage() directly.
69     fromEvent(this.servingCellNrcgi.nativeElement, 'keyup')
70       .pipe(
71         debounceTime(150),
72         distinctUntilChanged(),
73         tap(() => {
74           this.loadNcrtPage();
75         })
76       )
77       .subscribe();
78     fromEvent(this.neighborCellNrpci.nativeElement, 'keyup')
79       .pipe(
80         debounceTime(150),
81         distinctUntilChanged(),
82         tap(() => {
83           this.loadNcrtPage();
84         })
85       )
86       .subscribe();
87   }
88
89   loadNcrtPage() {
90     this.dataSource.loadTable(
91       this.ggNodeB.nativeElement.value,
92       this.servingCellNrcgi.nativeElement.value,
93       this.neighborCellNrpci.nativeElement.value);
94   }
95
96   modifyNcr(ncr: ANRNeighborCellRelation): void {
97     const dialogRef = this.dialog.open(ANREditNCRDialogComponent, {
98       width: '300px',
99       data: ncr
100     });
101     dialogRef.afterClosed().subscribe(result => {
102       this.loadNcrtPage();
103     });
104   }
105
106   deleteNcr(ncr: ANRNeighborCellRelation): void {
107     this.confirmDialogService
108       .openConfirmDialog('Are you sure you want to delete this relation?')
109       .afterClosed().subscribe(res => {
110         if (res) {
111           this.anrXappService.deleteNcr(ncr.servingCellNrcgi, ncr.neighborCellNrpci)
112             .subscribe(
113               response => {
114                 switch (response.status) {
115                   case 200:
116                     this.notificationService.success('Delete succeeded!');
117                     break;
118                   default:
119                     this.notificationService.warn('Delete failed.');
120                 }
121               },
122               error => {
123                 this.errorDialogService.displayError(error.message);
124               });
125         }
126       });
127   }
128
129 }