X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fei-coordinator%2Fei-job.datasource.ts;h=b008f802750903444f4b31291a88ecebd309d839;hb=869354bad80ea5db92893ad3017eaf9c421c0731;hp=9e048b6b2c2e618c705e41e0e911f8260a3873f3;hpb=a3e5b2cc0eaf68e4f167cbf6cb39a6e154457678;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts b/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts index 9e048b6..b008f80 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts +++ b/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts @@ -18,60 +18,57 @@ * ========================LICENSE_END=================================== */ -import { HttpErrorResponse } from '@angular/common/http'; import { Injectable } from '@angular/core'; -import { MatTableDataSource } from '@angular/material'; import { BehaviorSubject } from 'rxjs/BehaviorSubject'; -import { of } from 'rxjs/observable/of'; -import { catchError, finalize, map } from 'rxjs/operators'; +import { mergeMap, finalize } from 'rxjs/operators'; +import { Observable, forkJoin } from 'rxjs'; import { EIJob } from '../interfaces/ei.types'; import { EIService } from '../services/ei/ei.service'; -import { NotificationService } from '../services/ui/notification.service'; + @Injectable({ providedIn: 'root' }) -export class EIJobDataSource extends MatTableDataSource { +export class EIJobDataSource { + + private jobs: Array = []; - private eiJobSubject = new BehaviorSubject([]); + public eiJobs(): EIJob[] { + return this.jobs; + } + + public eiJobsSubject(): Observable { + return this.jobsSubject.asObservable() as Observable; + } private loadingSubject = new BehaviorSubject(false); + private jobsSubject = new BehaviorSubject([]); public loading$ = this.loadingSubject.asObservable(); public rowCount = 1; // hide footer during intial load constructor( - private eiSvc: EIService, - private notificationService: NotificationService) { - super(); + private eiSvc: EIService) { } - loadTable() { + loadJobs() { this.loadingSubject.next(true); - this.eiSvc.getEIJobs() - .pipe( - catchError((her: HttpErrorResponse) => { - this.notificationService.error('Failed to get EI jobs: ' + her.error); - return of([]); - }), - finalize(() => this.loadingSubject.next(false)) - ) - .subscribe((instances: EIJob[]) => { - this.rowCount = instances.length; - this.eiJobSubject.next(instances); - }); + this.jobs = []; + this.eiSvc.getProducerIds().pipe( + mergeMap(prodIds => + forkJoin(prodIds.map(id => this.eiSvc.getJobsForProducer(id)))), + mergeMap(result => result), + finalize(() => this.loadingSubject.next(false)) + ).subscribe(result => { + this.jobs = this.jobs.concat(result); + this.jobsSubject.next(this.jobs); + }); + this.rowCount = this.jobs.length; } - connect(): BehaviorSubject { - return this.eiJobSubject; - } - disconnect(): void { - this.eiJobSubject.complete(); - this.loadingSubject.complete(); - } }