PatrikBuhr | a2bc79c | 2019-10-29 13:39:00 +0100 | [diff] [blame] | 1 | /*- |
| 2 | * ========================LICENSE_START================================= |
| 3 | * O-RAN-SC |
| 4 | * %% |
| 5 | * Copyright (C) 2019 Nordix Foundation |
| 6 | * %% |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | * ========================LICENSE_END=================================== |
| 19 | */ |
| 20 | |
| 21 | import { DataSource } from '@angular/cdk/collections'; |
| 22 | import { HttpErrorResponse } from '@angular/common/http'; |
| 23 | import { MatSort } from '@angular/material'; |
| 24 | import { Observable } from 'rxjs/Observable'; |
| 25 | import { BehaviorSubject } from 'rxjs/BehaviorSubject'; |
| 26 | import { merge } from 'rxjs'; |
| 27 | import { of } from 'rxjs/observable/of'; |
| 28 | import { catchError, finalize, map } from 'rxjs/operators'; |
| 29 | import { PolicyInstance } from '../interfaces/policy.types'; |
| 30 | import { PolicyService } from '../services/policy/policy.service'; |
| 31 | import { NotificationService } from '../services/ui/notification.service'; |
| 32 | import { PolicyType } from '../interfaces/policy.types'; |
| 33 | |
| 34 | export class PolicyInstanceDataSource extends DataSource<PolicyInstance> { |
| 35 | |
| 36 | private policyInstanceSubject = new BehaviorSubject<PolicyInstance[]>([]); |
| 37 | |
| 38 | private loadingSubject = new BehaviorSubject<boolean>(false); |
| 39 | |
| 40 | public loading$ = this.loadingSubject.asObservable(); |
| 41 | |
| 42 | public rowCount = 1; // hide footer during intial load |
| 43 | |
| 44 | constructor( |
PatrikBuhr | 4712005 | 2019-11-19 09:56:44 +0100 | [diff] [blame] | 45 | private policySvc: PolicyService, |
PatrikBuhr | a2bc79c | 2019-10-29 13:39:00 +0100 | [diff] [blame] | 46 | public sort: MatSort, |
PatrikBuhr | 4712005 | 2019-11-19 09:56:44 +0100 | [diff] [blame] | 47 | private notificationService: NotificationService, |
PatrikBuhr | a2bc79c | 2019-10-29 13:39:00 +0100 | [diff] [blame] | 48 | private policyType: PolicyType) { |
| 49 | super(); |
| 50 | } |
| 51 | |
| 52 | loadTable() { |
| 53 | this.loadingSubject.next(true); |
elinuxhenrik | b033eaf | 2020-02-03 16:02:21 +0100 | [diff] [blame^] | 54 | this.policySvc.getPolicyInstances(this.policyType.name) |
PatrikBuhr | a2bc79c | 2019-10-29 13:39:00 +0100 | [diff] [blame] | 55 | .pipe( |
| 56 | catchError((her: HttpErrorResponse) => { |
| 57 | this.notificationService.error('Failed to get policy instances: ' + her.message); |
| 58 | return of([]); |
| 59 | }), |
| 60 | finalize(() => this.loadingSubject.next(false)) |
| 61 | ) |
| 62 | .subscribe((instances: PolicyInstance[]) => { |
| 63 | this.rowCount = instances.length; |
| 64 | this.policyInstanceSubject.next(instances); |
| 65 | }); |
| 66 | } |
| 67 | |
| 68 | connect(): Observable<PolicyInstance[]> { |
| 69 | const dataMutations = [ |
| 70 | this.policyInstanceSubject.asObservable(), |
| 71 | this.sort.sortChange |
| 72 | ]; |
| 73 | return merge(...dataMutations).pipe(map(() => { |
| 74 | return this.getSortedData([...this.policyInstanceSubject.getValue()]); |
| 75 | })); |
| 76 | } |
| 77 | |
| 78 | disconnect(): void { |
| 79 | this.policyInstanceSubject.complete(); |
| 80 | this.loadingSubject.complete(); |
| 81 | } |
| 82 | |
| 83 | private getSortedData(data: PolicyInstance[]) { |
| 84 | if (!this.sort || !this.sort.active || this.sort.direction === '') { |
| 85 | return data; |
| 86 | } |
| 87 | |
| 88 | return data.sort((a, b) => { |
| 89 | const isAsc = this.sort.direction === 'asc'; |
| 90 | switch (this.sort.active) { |
elinuxhenrik | b033eaf | 2020-02-03 16:02:21 +0100 | [diff] [blame^] | 91 | case 'instanceId': return compare(a.id, b.id, isAsc); |
| 92 | case 'ric': return compare(a.ric, b.ric, isAsc); |
| 93 | case 'service': return compare(a.service, b.service, isAsc); |
| 94 | case 'lastModified': return compare(a.lastModified, b.lastModified, isAsc) |
PatrikBuhr | a2bc79c | 2019-10-29 13:39:00 +0100 | [diff] [blame] | 95 | default: return 0; |
| 96 | } |
| 97 | }); |
| 98 | } |
| 99 | } |
| 100 | |
PatrikBuhr | 4712005 | 2019-11-19 09:56:44 +0100 | [diff] [blame] | 101 | function compare(a: string, b: string, isAsc: boolean) { |
PatrikBuhr | a2bc79c | 2019-10-29 13:39:00 +0100 | [diff] [blame] | 102 | return (a < b ? -1 : 1) * (isAsc ? 1 : -1); |
| 103 | } |