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=bf3c867f8420e8bcb1c1a2551bc8b72cef7f9e34;hb=ad70d4114bbfc5dbf20fd1a8151095d89610c759;hp=b0a348accffd70218022beed59890799d8e19fd0;hpb=cde4ceece9e916ef9387e78982df21b13dc58837;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 b0a348a..bf3c867 100644 --- a/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts +++ b/webapp-frontend/src/app/ei-coordinator/ei-job.datasource.ts @@ -18,21 +18,24 @@ * ========================LICENSE_END=================================== */ -import { DataSource } from '@angular/cdk/collections'; -import { HttpErrorResponse } from '@angular/common/http'; -import { MatSort } from '@angular/material'; -import { Observable } from 'rxjs/Observable'; +import { Injectable } from '@angular/core'; + import { BehaviorSubject } from 'rxjs/BehaviorSubject'; -import { merge } from 'rxjs'; -import { of } from 'rxjs/observable/of'; -import { catchError, finalize, map } from 'rxjs/operators'; -import { EIJob } from '../interfaces/ei.jobs'; + +import { EIJob } from '../interfaces/ei.types'; import { EIService } from '../services/ei/ei.service'; -import { NotificationService } from '../services/ui/notification.service'; -export class EIJobDataSource extends DataSource { +@Injectable({ + providedIn: 'root' +}) + +export class EIJobDataSource { - private eiJobSubject = new BehaviorSubject([]); + private jobs: Array = []; + + public eiJobs(): EIJob[] { + return this.jobs; + } private loadingSubject = new BehaviorSubject(false); @@ -41,60 +44,26 @@ export class EIJobDataSource extends DataSource { public rowCount = 1; // hide footer during intial load constructor( - private eiSvc: EIService, - public sort: MatSort, - 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() + .subscribe((producerIds: string[]) => { + producerIds.forEach(id => { + this.getJobsForProducer(id); + }); }); + this.rowCount = this.jobs.length; } - connect(): Observable { - const dataMutations = [ - this.eiJobSubject.asObservable(), - this.sort.sortChange - ]; - return merge(...dataMutations).pipe(map(() => { - return this.getSortedData([...this.eiJobSubject.getValue()]); - })); - } - - disconnect(): void { - this.eiJobSubject.complete(); - this.loadingSubject.complete(); - } - - private getSortedData(data: EIJob[]) { - if (!this.sort || !this.sort.active || this.sort.direction === '') { - return data; - } - - return data.sort((a, b) => { - const isAsc = this.sort.direction === 'asc'; - switch (this.sort.active) { - case 'ei_job_identity': return compare(a.ei_job_identity, b.ei_job_identity, isAsc); - case 'owner': return compare(a.owner, b.owner, isAsc); - case 'ei_type_identity': return compare(a.ei_type_identity, b.ei_type_identity, isAsc); - default: return 0; - } + private getJobsForProducer(id: string) { + console.log('Getting jobs for producer ID: ', id); + this.eiSvc.getJobsForProducer(id) + .subscribe(producerJobs => { + this.jobs = this.jobs.concat(producerJobs); }); } } - -function compare(a: string, b: string, isAsc: boolean) { - return (a < b ? -1 : 1) * (isAsc ? 1 : -1); -}