Clean up and add license headings
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / policy / no-type-policy-editor / no-type-policy-editor.component.ts
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2021: 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
21 import { Component, Input, OnInit } from '@angular/core';
22 import { AbstractControl, ControlContainer, FormBuilder, FormControl, FormGroup, FormGroupDirective, ValidatorFn, Validators } from '@angular/forms';
23
24 @Component({
25   selector: 'nrcp-no-type-policy-editor',
26   templateUrl: './no-type-policy-editor.component.html',
27   styleUrls: ['./no-type-policy-editor.component.scss'],
28   viewProviders: [{ provide: ControlContainer, useExisting: FormGroupDirective }]
29 })
30 export class NoTypePolicyEditorComponent implements OnInit {
31
32   @Input() instanceForm: FormGroup;
33   @Input() policyJson: string;
34
35   constructor(
36     private formBuilder: FormBuilder) { }
37
38   ngOnInit(): void {
39     this.instanceForm.addControl(
40       'policyJsonTextArea', new FormControl(this.policyJson, [
41         Validators.required,
42         jsonValidator()
43       ])
44     )
45   }
46
47   get policyJsonTextArea(): AbstractControl {
48     return this.instanceForm ? this.instanceForm.get('policyJsonTextArea') : null;
49   }
50
51   formatJsonInput(): void {
52     this.policyJson = formatJsonString(JSON.parse(this.policyJsonTextArea.value));
53   }
54 }
55
56 export function formatJsonString(jsonToFormat: any): string {
57   return JSON.stringify(jsonToFormat, null, 2);
58 }
59
60 export function jsonValidator(): ValidatorFn {
61   return (control: AbstractControl): { [key: string]: any } | null => {
62     const notValid = !isJsonValid(control.value);
63     return notValid ? { 'invalidJson': { value: control.value } } : null;
64   };
65 }
66
67 export function isJsonValid(json: string): boolean {
68   try {
69     if (json != null) {
70       JSON.parse(json);
71       return true;
72     } else {
73       return false;
74     }
75   } catch (jsonError) {
76     return false;
77   }
78 }