b23a3cd200bf83c0c3b1ec0ec10f6fb10e90a59f
[portal/ric-dashboard.git] / webapp-frontend / src / app / ran-control / ran-control.datasource.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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 { CollectionViewer, DataSource } from '@angular/cdk/collections';
22 import { HttpErrorResponse } from '@angular/common/http';
23 import { Observable } from 'rxjs/Observable';
24 import { BehaviorSubject } from 'rxjs/BehaviorSubject';
25 import { of } from 'rxjs/observable/of';
26 import { catchError, finalize } from 'rxjs/operators';
27 import { E2RanDetails } from '../interfaces/e2-mgr.types';
28 import { E2ManagerService } from '../services/e2-mgr/e2-mgr.service';
29 import { NotificationService } from '../services/ui/notification.service';
30
31 export class RANControlDataSource extends DataSource<E2RanDetails> {
32
33   private ranControlSubject = new BehaviorSubject<E2RanDetails[]>([]);
34
35   private loadingSubject = new BehaviorSubject<boolean>(false);
36
37   public loading$ = this.loadingSubject.asObservable();
38
39   public rowCount = 1; // hide footer during intial load
40
41   constructor(private e2MgrSvcservice: E2ManagerService,
42     private notificationService: NotificationService) {
43     super();
44   }
45
46   loadTable() {
47     this.loadingSubject.next(true);
48     this.e2MgrSvcservice.getRan()
49       .pipe(
50         catchError( (her: HttpErrorResponse) => {
51           console.log('RANControlDataSource failed: ' + her.message);
52           this.notificationService.error('Failed to get RAN details: ' + her.message);
53           return of([]);
54         }),
55         finalize( () =>  this.loadingSubject.next(false) )
56       )
57       .subscribe( (ranControl: E2RanDetails[] ) => {
58         this.rowCount = ranControl.length;
59         this.ranControlSubject.next(ranControl);
60       });
61   }
62
63   connect(collectionViewer: CollectionViewer): Observable<E2RanDetails[]> {
64     return this.ranControlSubject.asObservable();
65   }
66
67   disconnect(collectionViewer: CollectionViewer): void {
68     this.ranControlSubject.complete();
69     this.loadingSubject.complete();
70   }
71
72 }