Improve RIC Configuration
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ric-config / ric-config.component.html
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   <div fxLayout="row">
21     <div class="nrcp-global-page-title">RIC Configuration</div>
22     <button #refreshButton mat-icon-button color="primary" (click)="getConfig()">
23       <mat-icon>refresh</mat-icon>
24   </button>
25 </div>
26 <div>Note! This configuration will not be used if the system is using Consul.</div>
27 <form [formGroup]="ricConfigForm">
28     <mat-form-field style="width: 800px;" appearance="fill">
29         <textarea style= "resize:none;" id="ricConfigInfo" formControlName="ricConfigInfo" matInput cdkTextareaAutosize
30             cdkAutosizeMinRows="10" cdkAutosizeMaxRows="20" placeholder="Ric Configuration"
31             matTooltip="Ric Configuration" matTooltipPosition="before">
32     </textarea>
33         <div *ngIf="ricConfigInfo.invalid && (ricConfigInfo.dirty || ricConfigInfo.touched)">
34             <div *ngIf="ricConfigInfo.errors.required">
35                 <mat-error role="alert">
36                     This field is required.
37                 </mat-error>
38             </div>
39             <div *ngIf="ricConfigInfo.errors.invalidJson">
40                 <mat-error role="alert">
41                     Should be a valid JSON.
42                 </mat-error>
43             </div>
44         </div>
45         <button id="formatButton" (click)="formatJsonInput();" mat-raised-button>
46             Format JSON
47         </button>
48     </mat-form-field>
49 </form>
50 <div>
51 <button style="margin-right:20px" id="update" (click)="updateRicConfig();" mat-raised-button [disabled]="!ricConfigInfo.valid">
52   Update
53 </button>
54 </div>