2 ========================LICENSE_START=================================
5 Copyright (C) 2021 Nordix Foundation
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
11 http://www.apache.org/licenses/LICENSE-2.0
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===================================
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>
26 <div>Note! This configuration might not exist or 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">
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.
39 <div *ngIf="ricConfigInfo.errors.invalidJson">
40 <mat-error role="alert">
41 Should be a valid JSON.
45 <button id="formatButton" (click)="formatJsonInput();" mat-raised-button>
51 <button style="margin-right:20px" id="update" (click)="updateRicConfig();" mat-raised-button [disabled]="!ricConfigInfo.valid">