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=27a70c4f5e2ce6f771b8f76fea892a30f2f8c855;hb=b4bb55e832f97270e71f1afc8321aa2899b55b5d;hp=5fc64fc10bd586183ec5419a2951864d0d3c001b;hpb=47d0224358d746f8a290a9c132580a4d46041495;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 5fc64fc..27a70c4 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts +++ b/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts @@ -31,10 +31,10 @@ import { EIService } from '../services/ei/ei.service'; export class EIJobDataSource { - private eiJobsSubject = new BehaviorSubject([]); + private jobs: Array = []; public eiJobs(): EIJob[] { - return this.eiJobsSubject.value; + return this.jobs; } private loadingSubject = new BehaviorSubject(false); @@ -49,25 +49,20 @@ export class EIJobDataSource { loadJobs() { this.loadingSubject.next(true); + this.jobs = []; this.eiSvc.getProducerIds() .subscribe((producerIds: string[]) => { producerIds.forEach(id => { this.getJobsForProducer(id); }); }); + this.rowCount = this.jobs.length; } 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.eiSvc.getJobsForProducer(id).subscribe(producerJobs => { + this.jobs = this.jobs.concat(producerJobs); }); } - - private addJobsToSubject(jobs: EIJob[]) { - const currentValue = this.eiJobsSubject.value; - const updatedValue = [...currentValue, ...jobs]; - this.eiJobsSubject.next(updatedValue); - } }