8ea8082fde3bc1857a16be9151fd473071e94460
[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 <form [formGroup]="ricConfigForm">
27     <mat-form-field style="width: 800px;" appearance="fill">
28         <textarea style= "resize:none;" id="ricConfigInfo" formControlName="ricConfigInfo" matInput cdkTextareaAutosize
29             cdkAutosizeMinRows="10" cdkAutosizeMaxRows="20" placeholder="Ric Configuration"
30             matTooltip="Ric Configuration" matTooltipPosition="before">
31     </textarea>
32         <div *ngIf="ricConfigInfo.invalid && (ricConfigInfo.dirty || ricConfigInfo.touched)">
33             <div *ngIf="ricConfigInfo.errors.required">
34                 <mat-error role="alert">
35                     This field is required.
36                 </mat-error>
37             </div>
38             <div *ngIf="ricConfigInfo.errors.invalidJson">
39                 <mat-error role="alert">
40                     Should be a valid JSON.
41                 </mat-error>
42             </div>
43         </div>
44         <button id="formatButton" (click)="formatJsonInput();" mat-raised-button>
45             Format JSON
46         </button>
47     </mat-form-field>
48 </form>
49 <div>
50 <button style="margin-right:20px" id="update" (click)="updateRicConfig();" mat-raised-button [disabled]="!ricConfigInfo.valid">
51   Update
52 </button>
53 </div>