X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fapp-control%2Fapp-control.datasource.ts;h=6a19286c0b71d4c62fd28ddec0b6d90c9b7711d2;hb=7845281a4bdb97925cba281f133ef058f15a1f95;hp=cf0c3dcf8a10c13acf26112585b680381790a4b2;hpb=dfa4f23a94fcbf31deab33abde4c6a8318fd4186;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/app-control/app-control.datasource.ts b/webapp-frontend/src/app/app-control/app-control.datasource.ts index cf0c3dcf..6a19286c 100644 --- a/webapp-frontend/src/app/app-control/app-control.datasource.ts +++ b/webapp-frontend/src/app/app-control/app-control.datasource.ts @@ -19,24 +19,28 @@ */ import { CollectionViewer, DataSource } from '@angular/cdk/collections'; +import { HttpErrorResponse } from '@angular/common/http'; import { MatSort } from '@angular/material'; -import { merge } from 'rxjs'; -import { BehaviorSubject } from 'rxjs/BehaviorSubject'; import { Observable } from 'rxjs/Observable'; +import { BehaviorSubject } from 'rxjs/BehaviorSubject'; +import { merge } from 'rxjs'; import { of } from 'rxjs/observable/of'; import { catchError, finalize, map } from 'rxjs/operators'; import { XappControlRow, XMDeployedApp, XMXappInstance } from '../interfaces/app-mgr.types'; import { AppMgrService } from '../services/app-mgr/app-mgr.service'; +import { NotificationService } from '../services/ui/notification.service'; export class AppControlDataSource extends DataSource { - private xAppInstancesSubject = new BehaviorSubject([]); + private appControlSubject = new BehaviorSubject([]); private loadingSubject = new BehaviorSubject(false); public loading$ = this.loadingSubject.asObservable(); - emptyInstances: XMXappInstance = + public rowCount = 1; // hide footer during intial load + + private emptyInstances: XMXappInstance = { ip: null, name: null, port: null, @@ -45,7 +49,9 @@ export class AppControlDataSource extends DataSource { txMessages: [], }; - constructor(private appMgrSvc: AppMgrService, private sort: MatSort) { + constructor(private appMgrSvc: AppMgrService, + private sort: MatSort, + private notificationService: NotificationService) { super(); } @@ -53,28 +59,36 @@ export class AppControlDataSource extends DataSource { this.loadingSubject.next(true); this.appMgrSvc.getDeployed() .pipe( - catchError(() => of([])), + catchError( (her: HttpErrorResponse) => { + console.log('AppControlDataSource failed: ' + her.message); + this.notificationService.error('Failed to get applications: ' + her.message); + return of([]); + }), finalize(() => this.loadingSubject.next(false)) ) - .subscribe(xApps => this.xAppInstancesSubject.next(this.flatten(xApps))); + .subscribe( (xApps: XMDeployedApp[]) => { + this.rowCount = xApps.length; + const flattenedApps = this.flatten(xApps); + this.appControlSubject.next(flattenedApps); + }); } connect(collectionViewer: CollectionViewer): Observable { const dataMutations = [ - this.xAppInstancesSubject.asObservable(), + this.appControlSubject.asObservable(), this.sort.sortChange ]; return merge(...dataMutations).pipe(map(() => { - return this.getSortedData([...this.xAppInstancesSubject.getValue()]); + return this.getSortedData([...this.appControlSubject.getValue()]); })); } disconnect(collectionViewer: CollectionViewer): void { - this.xAppInstancesSubject.complete(); + this.appControlSubject.complete(); this.loadingSubject.complete(); } - private flatten(allxappdata: XMDeployedApp[]) { + private flatten(allxappdata: XMDeployedApp[]): XappControlRow[] { const xAppInstances: XappControlRow[] = []; for (const xapp of allxappdata) { if (!xapp.instances) { @@ -115,6 +129,6 @@ export class AppControlDataSource extends DataSource { } } -function compare(a, b, isAsc) { +function compare(a: any, b: any, isAsc: boolean) { return (a < b ? -1 : 1) * (isAsc ? 1 : -1); }