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=76c421686b3888504ecc367d85f9785997800afe;hb=refs%2Fchanges%2F72%2F2272%2F8;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..76c42168 100644 --- a/webapp-frontend/src/app/app-control/app-control.datasource.ts +++ b/webapp-frontend/src/app/app-control/app-control.datasource.ts @@ -2,14 +2,14 @@ * ========================LICENSE_START================================= * O-RAN-SC * %% - * Copyright (C) 2019 AT&T Intellectual Property and Nokia + * Copyright (C) 2019 AT&T Intellectual Property * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,25 +19,30 @@ */ import { CollectionViewer, DataSource } from '@angular/cdk/collections'; -import { MatSort } from '@angular/material'; -import { merge } from 'rxjs'; -import { BehaviorSubject } from 'rxjs/BehaviorSubject'; +import { HttpErrorResponse } from '@angular/common/http'; +import { MatSort } from '@angular/material/sort'; 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 = - { ip: null, + public rowCount = 1; // hide footer during intial load + + private emptyInstances: XMXappInstance = + { + ip: null, name: null, port: null, status: null, @@ -45,36 +50,46 @@ export class AppControlDataSource extends DataSource { txMessages: [], }; - constructor(private appMgrSvc: AppMgrService, private sort: MatSort) { + constructor(private appMgrSvc: AppMgrService, + private sort: MatSort, + private notificationService: NotificationService) { super(); } - loadTable() { + loadTable(instanceKey: string) { this.loadingSubject.next(true); - this.appMgrSvc.getDeployed() + this.appMgrSvc.getDeployed(instanceKey) .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 +130,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); }