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=64c948c158eafe3302c68055d01d7a51342d7496;hpb=b38d7384f7ef6571895d6d0cf89791749c33f783;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 64c948c..b008f80 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts +++ b/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts @@ -19,22 +19,33 @@ */ import { Injectable } from '@angular/core'; -import { MatTableDataSource } from '@angular/material'; 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' }) -export class EIJobDataSource extends MatTableDataSource { +export class EIJobDataSource { + + private jobs: Array = []; + + public eiJobs(): EIJob[] { + return this.jobs; + } - eiJobsSubject = new BehaviorSubject([]); + public eiJobsSubject(): Observable { + return this.jobsSubject.asObservable() as Observable; + } private loadingSubject = new BehaviorSubject(false); + private jobsSubject = new BehaviorSubject([]); public loading$ = this.loadingSubject.asObservable(); @@ -42,39 +53,22 @@ export class EIJobDataSource extends MatTableDataSource { constructor( private eiSvc: EIService) { - super(); } - getJobs() { + loadJobs() { this.loadingSubject.next(true); - this.eiSvc.getProducerIds() - .subscribe((producerIds: string[]) => { - producerIds.forEach(id => { - this.getJobsForProducer(id); - }); - }); - } - - private getJobsForProducer(id: string) { - console.log('Getting jobs for producer ID: ', id); - this.eiSvc.getJobsForProducer(id).subscribe(jobs => { - this.addJobsToSubject(jobs); - this.rowCount = this.eiJobsSubject.getValue().length; + 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; } - private addJobsToSubject(jobs: EIJob[]) { - const currentValue = this.eiJobsSubject.value; - const updatedValue = [...currentValue, ...jobs]; - this.eiJobsSubject.next(updatedValue); - } - connect(): BehaviorSubject { - return this.eiJobsSubject; - } - - disconnect(): void { - this.eiJobsSubject.complete(); - this.loadingSubject.complete(); - } }