update angular to latest ver 8
[portal/ric-dashboard.git] / dashboard / webapp-frontend / src / app / ui / instance-selector-dialog / instance-selector-dialog.component.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 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 { Component, OnInit } from '@angular/core';
22 import { FormControl, FormGroup, Validators } from '@angular/forms';
23 import { MatDialogRef } from '@angular/material/dialog';
24 import { finalize } from 'rxjs/operators';
25 import { RicInstance, RicRegion } from '../../interfaces/dashboard.types';
26 import { InstanceSelectorService } from '../../services/instance-selector/instance-selector.service';
27 import { LoadingDialogService } from '../../services/ui/loading-dialog.service';
28
29 @Component({
30   selector: 'rd-instance-selector-dialog',
31   templateUrl: './instance-selector-dialog.component.html',
32 })
33 export class InstanceSelectorDialogComponent implements OnInit  {
34
35   //declare following variables as Public variable. Private variables should not be used in template HTML
36   allRegions: RicRegion[];
37   regionInstances: RicInstance[];
38   instanceForm: FormGroup;
39
40   constructor(
41     private dialogRef: MatDialogRef<InstanceSelectorDialogComponent>,
42     private instanceSelectorService: InstanceSelectorService,
43     private loadingDialogService: LoadingDialogService) { }
44
45   ngOnInit() {
46     this.instanceForm = new FormGroup({
47       instance: new FormControl('', [Validators.required])
48     });
49
50     this.loadingDialogService.startLoading('Loading RIC instances');
51     this.instanceSelectorService.getAllInstances()
52       .pipe(
53         finalize(() => this.loadingDialogService.stopLoading())
54       )
55       .subscribe((regArray: RicRegion[]) => {
56         this.allRegions = regArray;
57       });
58   }
59
60   changeInstance(selectedInstance: RicInstance) {
61     this.instanceSelectorService.updateSelectedInstance(selectedInstance);
62     this.dialogRef.close(true);
63   }
64
65   changeRegion(selectedRegion: RicRegion) {
66     this.instanceForm.setValue({ instance: '' });
67     this.regionInstances = selectedRegion.instances;
68   }
69 }