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=ef9e478d458b38e70ef2884236dc8792ab9986a3;hpb=02558d31ab250b42d7138e2f762125ee41fad2d6;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 ef9e478..27a70c4 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts +++ b/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts @@ -18,25 +18,24 @@ * ========================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 { 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 { - eiJobsSubject = new BehaviorSubject([]); + private jobs: Array = []; + + public eiJobs(): EIJob[] { + return this.jobs; + } private loadingSubject = new BehaviorSubject(false); @@ -45,48 +44,25 @@ export class EIJobDataSource extends MatTableDataSource { public rowCount = 1; // hide footer during intial load constructor( - private eiSvc: EIService, - private notificationService: NotificationService) { - super(); + private eiSvc: EIService) { } - getJobs() { + loadJobs() { this.loadingSubject.next(true); + this.jobs = []; this.eiSvc.getProducerIds() - .pipe( - catchError((her: HttpErrorResponse) => { - this.notificationService.error('Failed to get EI jobs: ' + her.error); - return of([]); - }), - finalize(() => this.loadingSubject.next(false)) - ) .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); - } - - connect(): BehaviorSubject { - return this.eiJobsSubject; - } - - disconnect(): void { - this.eiJobsSubject.complete(); - this.loadingSubject.complete(); - } }