X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fanr-xapp%2Fanr-xapp.component.ts;h=652c955e5b3cce22f420e03922a02198e7a6767e;hb=3f812ea25d352ec33d07f5ffa4c2aa2a77e8e793;hp=3440482cfc0540cb46a871fe10312730c605c83f;hpb=1379dce23d47c42d169ed13a337bbee827714830;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/anr-xapp/anr-xapp.component.ts b/webapp-frontend/src/app/anr-xapp/anr-xapp.component.ts index 3440482c..652c955e 100644 --- a/webapp-frontend/src/app/anr-xapp/anr-xapp.component.ts +++ b/webapp-frontend/src/app/anr-xapp/anr-xapp.component.ts @@ -19,6 +19,7 @@ */ import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core'; +import { HttpResponse } from '@angular/common/http'; import { MatSort } from '@angular/material'; import { MatDialog } from '@angular/material/dialog'; import { fromEvent } from 'rxjs/observable/fromEvent'; @@ -39,7 +40,6 @@ import { ANRXappDataSource } from './anr-xapp.datasource'; export class AnrXappComponent implements AfterViewInit, OnInit { dataSource: ANRXappDataSource; - anrClientVersion: string; gNodeBIds: string[]; @ViewChild('ggNodeB', {static: true}) ggNodeB: ElementRef; @ViewChild('servingCellNrcgi', {static: true}) servingCellNrcgi: ElementRef; @@ -57,11 +57,10 @@ export class AnrXappComponent implements AfterViewInit, OnInit { private notificationService: NotificationService) { } ngOnInit() { - this.dataSource = new ANRXappDataSource(this.anrXappService, this.sort); + this.dataSource = new ANRXappDataSource(this.anrXappService, this.sort, this.notificationService); this.dataSource.loadTable(); // Empty string occurs first in the array of gNodeBIds this.anrXappService.getgNodeBs().subscribe((res: string[]) => this.gNodeBIds = res); - this.anrXappService.getVersion().subscribe((res: string) => this.anrClientVersion = res); } ngAfterViewInit() { @@ -110,7 +109,7 @@ export class AnrXappComponent implements AfterViewInit, OnInit { if (res) { this.anrXappService.deleteNcr(ncr.servingCellNrcgi, ncr.neighborCellNrpci) .subscribe( - response => { + (response: HttpResponse) => { switch (response.status) { case 200: this.notificationService.success('Delete succeeded!');