bd4de275632064dc2c6458014bc6bf73bfabdde7
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / policy-control / policy-instance-dialog.component.ts
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 import { animate, state, style, transition, trigger } from '@angular/animations';
21 import { AfterViewInit, Component, Inject, OnInit, ViewChild } from '@angular/core';
22 import { MatDialogConfig, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
23 import { MatMenuTrigger } from '@angular/material/menu';
24 import { JsonPointer } from 'angular6-json-schema-form';
25 import * as uuid from 'uuid';
26 import { PolicyInstance, PolicyTypeSchema } from '../interfaces/policy.types';
27 import { PolicyService } from '../services/policy/policy.service';
28 import { ErrorDialogService } from '../services/ui/error-dialog.service';
29 import { NotificationService } from './../services/ui/notification.service';
30 import { UiService } from '../services/ui/ui.service';
31 import { HttpErrorResponse } from '@angular/common/http';
32 import { FormGroup, FormControl, Validators } from '@angular/forms';
33 import { ChangeDetectorRef } from '@angular/core';
34 import { Ric } from '../interfaces/ric';
35
36
37 @Component({
38     selector: 'rd-policy-instance-dialog',
39     templateUrl: './policy-instance-dialog.component.html',
40     styleUrls: ['./policy-instance-dialog.component.scss'],
41     animations: [
42         trigger('expandSection', [
43             state('in', style({ height: '*' })),
44             transition(':enter', [
45                 style({ height: 0 }), animate(100),
46             ]),
47             transition(':leave', [
48                 style({ height: '*' }),
49                 animate(100, style({ height: 0 })),
50             ]),
51         ]),
52     ],
53 })
54 export class PolicyInstanceDialogComponent implements OnInit, AfterViewInit {
55     instanceForm: FormGroup;
56
57
58     formActive = false;
59     isVisible = {
60         form: true,
61         json: false,
62         schema: false
63     };
64
65     jsonFormStatusMessage = 'Loading form...';
66     jsonSchemaObject: any = {};
67     jsonObject: any = {};
68
69
70     jsonFormOptions: any = {
71         addSubmit: false, // Add a submit button if layout does not have one
72         debug: false, // Don't show inline debugging information
73         loadExternalAssets: true, // Load external css and JavaScript for frameworks
74         returnEmptyFields: false, // Don't return values for empty input fields
75         setSchemaDefaults: true, // Always use schema defaults for empty fields
76         defautWidgetOptions: { feedback: true }, // Show inline feedback icons
77     };
78
79     liveFormData: any = {};
80     formValidationErrors: any;
81     formIsValid = false;
82
83     @ViewChild(MatMenuTrigger, { static: true }) menuTrigger: MatMenuTrigger;
84
85     policyInstanceId: string; // null if not yet created
86     policyTypeName: string;
87     darkMode: boolean;
88     ric: string;
89     allRics: Ric[];
90
91     private fetchRics() {
92         console.log('fetchRics ' + this.policyTypeName);
93         const self: PolicyInstanceDialogComponent = this;
94         this.dataService.getRics(this.policyTypeName).subscribe(
95             {
96                 next(value:Ric[]) {
97                     self.allRics = value;
98                     console.log(value);
99                 },
100                 error(error: HttpErrorResponse) {
101                     self.errorService.displayError('Fetching of rics failed: ' + error.message);
102                 },
103                 complete() { }
104             });
105     }
106
107     constructor(
108         private cdr: ChangeDetectorRef,
109         private dataService: PolicyService,
110         private errorService: ErrorDialogService,
111         private notificationService: NotificationService,
112         @Inject(MAT_DIALOG_DATA) private data,
113         private dialogRef: MatDialogRef<PolicyInstanceDialogComponent>,
114         private ui: UiService) {
115         this.formActive = false;
116         this.policyInstanceId = data.instanceId;
117         this.policyTypeName = data.name;
118         this.jsonSchemaObject = data.createSchema;
119         this.jsonObject = data.instanceJson;
120         this.ric = data.ric;
121     }
122
123     ngOnInit() {
124         this.jsonFormStatusMessage = 'Init';
125         this.formActive = true;
126         this.ui.darkModeState.subscribe((isDark) => {
127             this.darkMode = isDark;
128         });
129         this.instanceForm = new FormGroup({
130             'ricSelector': new FormControl(this.ric, [
131                 Validators.required
132             ])
133         });
134         if (!this.policyInstanceId) {
135             this.fetchRics();
136         }
137     }
138
139     ngAfterViewInit() {
140         this.cdr.detectChanges();
141     }
142
143     get ricSelector() { return this.instanceForm.get('ricSelector'); }
144
145     onSubmit() {
146         if (this.policyInstanceId == null) {
147             this.policyInstanceId = uuid.v4();
148         }
149         const policyJson: string = this.prettyLiveFormData;
150         const self: PolicyInstanceDialogComponent = this;
151         this.dataService.putPolicy(this.policyTypeName, this.policyInstanceId, policyJson, this.ric).subscribe(
152             {
153                 next(_) {
154                     self.notificationService.success('Policy ' + self.policyTypeName + ':' + self.policyInstanceId +
155                         ' submitted');
156                 },
157                 error(error: HttpErrorResponse) {
158                     self.errorService.displayError('Submit failed: ' + error.error);
159                 },
160                 complete() { }
161             });
162     }
163
164     onClose() {
165         this.dialogRef.close();
166     }
167
168     public onChanges(formData: any) {
169         this.liveFormData = formData;
170     }
171
172     get prettyLiveFormData(): string {
173         return JSON.stringify(this.liveFormData, null, 2);
174     }
175
176     get schemaAsString(): string {
177         return JSON.stringify(this.jsonSchemaObject, null, 2);
178     }
179
180     get jsonAsString(): string {
181         return JSON.stringify(this.jsonObject, null, 2);
182     }
183
184     isValid(isValid: boolean): void {
185         this.formIsValid = isValid;
186     }
187
188     validationErrors(validationErrors: any): void {
189         this.formValidationErrors = validationErrors;
190     }
191
192     get prettyValidationErrors() {
193         if (!this.formValidationErrors) { return null; }
194         const errorArray = [];
195         for (const error of this.formValidationErrors) {
196             const message = error.message;
197             const dataPathArray = JsonPointer.parse(error.dataPath);
198             if (dataPathArray.length) {
199                 let field = dataPathArray[0];
200                 for (let i = 1; i < dataPathArray.length; i++) {
201                     const key = dataPathArray[i];
202                     field += /^\d+$/.test(key) ? `[${key}]` : `.${key}`;
203                 }
204                 errorArray.push(`${field}: ${message}`);
205             } else {
206                 errorArray.push(message);
207             }
208         }
209         return errorArray.join('<br>');
210     }
211
212     private parseJson(str: string): string {
213         try {
214             if (str != null) {
215                 return JSON.parse(str);
216             }
217         } catch (jsonError) {
218             this.jsonFormStatusMessage =
219                 'Invalid JSON\n' +
220                 'parser returned:\n\n' + jsonError;
221         }
222         return null;
223     }
224
225     public toggleVisible(item: string) {
226         this.isVisible[item] = !this.isVisible[item];
227     }
228 }
229
230 export function getPolicyDialogProperties(policyTypeSchema: PolicyTypeSchema, instance: PolicyInstance, darkMode: boolean): MatDialogConfig {
231     const createSchema = policyTypeSchema.schemaObject;
232     const instanceId = instance ? instance.policy_id : null;
233     const instanceJson = instance ? instance.policy_data : null;
234     const name = policyTypeSchema.name;
235     const ric = instance ? instance.ric_id : null;
236     return {
237         maxWidth: '1200px',
238         maxHeight: '900px',
239         width: '900px',
240         role: 'dialog',
241         disableClose: false,
242         panelClass: darkMode ? 'dark-theme' : '',
243         data: {
244             createSchema,
245             instanceId,
246             instanceJson,
247             name,
248             ric
249         }
250     };
251 }
252