First version of NonRT RIC Controlpanel
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ui / error-dialog / error-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 import { Component, Inject } from '@angular/core';
21 import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
22
23 export interface ErrorData {
24   errorMessage: string;
25 }
26
27 @Component({
28   selector: 'rd-error-dialog',
29   templateUrl: './error-dialog.component.html',
30   styleUrls: ['./error-dialog.component.scss']
31 })
32
33 export class ErrorDialogComponent {
34
35   constructor(private dialogRef: MatDialogRef<ErrorDialogComponent>,
36     @Inject(MAT_DIALOG_DATA) public data: ErrorData) { }
37
38   public closeDialog = () => {
39     this.dialogRef.close();
40   }
41 }