Add multi-layer RIC instance selector
[portal/ric-dashboard.git] / webapp-frontend / src / app / user / add-dashboard-user-dialog / add-dashboard-user-dialog.component.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 { Component, OnInit } from '@angular/core';
22 import { FormControl, FormGroup, Validators } from '@angular/forms';
23 import { MatDialogRef } from '@angular/material/dialog';
24 import { DashboardService } from '../../services/dashboard/dashboard.service';
25 import { ErrorDialogService } from '../../services/ui/error-dialog.service';
26
27 @Component({
28   selector: 'rd-add-dashboard-user-dialog',
29   templateUrl: './add-dashboard-user-dialog.component.html',
30   styleUrls: ['./add-dashboard-user-dialog.component.scss']
31 })
32 export class AddDashboardUserDialogComponent implements OnInit {
33
34   public addUserDialogForm: FormGroup;
35
36   constructor(
37     private dialogRef: MatDialogRef<AddDashboardUserDialogComponent>,
38     private dashSvc: DashboardService,
39     private errorService: ErrorDialogService) { }
40
41   ngOnInit() {
42     this.addUserDialogForm = new FormGroup({
43       firstName: new FormControl('', [Validators.required]),
44       lastName: new FormControl('', [Validators.required]),
45       status: new FormControl('', [Validators.required])
46     });
47   }
48
49   onCancel() {
50     this.dialogRef.close(false);
51   }
52
53   public addUser = (FormValue) => {
54     if (this.addUserDialogForm.valid) {
55       // send the request to backend when it's ready
56       const aboutError = 'Not implemented yet';
57       this.errorService.displayError(aboutError);
58     }
59   }
60
61 }