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=fa98dfad02552443c5eb0e0d4ad7a9efe8933e34;hb=226fd436a085f717d4cbf81bf1719bdaf1468414;hp=cf0c3dcf8a10c13acf26112585b680381790a4b2;hpb=baba2efde0ab32026b1d13941dcc9e9dc95dc640;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..fa98dfad 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( (err: HttpErrorResponse) => { + console.log('AppControlDataSource failed: ' + err.message); + this.notificationService.error('Failed to get applications.'); + 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); }