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=ac4109d79db1721af2243b991c117db65dbeb1d0;hb=923a26d056fd5b613aa1342fff7d7f0f74d9267e;hp=bf3c867f8420e8bcb1c1a2551bc8b72cef7f9e34;hpb=4838d8b20a658d97e41d744c7f50986ad1d5f80f;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 bf3c867..ac4109d 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts +++ b/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts @@ -21,10 +21,13 @@ import { Injectable } from '@angular/core'; import { BehaviorSubject } from 'rxjs/BehaviorSubject'; +import { mergeMap, finalize } from 'rxjs/operators'; +import { Observable, forkJoin } from 'rxjs'; import { EIJob } from '../interfaces/ei.types'; import { EIService } from '../services/ei/ei.service'; + @Injectable({ providedIn: 'root' }) @@ -37,7 +40,12 @@ export class EIJobDataSource { 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(); @@ -50,20 +58,17 @@ export class EIJobDataSource { loadJobs() { this.loadingSubject.next(true); this.jobs = []; - this.eiSvc.getProducerIds() - .subscribe((producerIds: string[]) => { - producerIds.forEach(id => { - this.getJobsForProducer(id); - }); - }); + 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; } - private getJobsForProducer(id: string) { - console.log('Getting jobs for producer ID: ', id); - this.eiSvc.getJobsForProducer(id) - .subscribe(producerJobs => { - this.jobs = this.jobs.concat(producerJobs); - }); - } + }