30d17770754a276adddb42974b57c41f74fdaa5d
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / policy-control / no-type-policy-instance-dialog.component.html
1 <!--
2   ========================LICENSE_START=================================
3   O-RAN-SC
4   %%
5   Copyright (C) 2020 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 <div class="text-muted logo" fxLayout="row" fxLayoutGap="50px" fxLayoutAlign="space-around center">
22     <div *ngIf="policyInstanceId">[{{this.ric}}] {{policyInstanceId}}</div>
23 </div>
24 <div class="mat-elevation-z8 header row" [ngClass]="{'header-dark': darkMode}">
25     <div class="logo">
26         <img src="../../assets/oran-logo.png" width="30px" height="30px" style="position: relative; z-index: 50" />
27         <svg class="logo__icon" viewBox="150.3 22.2 1000 50">
28             <text class="logo__text" [ngClass]="{'logo__text-dark': darkMode}" font-size="30" font-weight="600"
29                 letter-spacing=".1em" transform="translate(149 56)">
30                 <tspan>< No type></tspan>
31             </text>
32         </svg>
33     </div>
34 </div>
35
36 <div [formGroup]="instanceForm" fxLayout="row" fxLayoutAlign="space-around start" fxLayout.lt-sm="column"
37     fxLayoutAlign.lt-sm="flex-start center">
38
39     <mat-card class="card" [ngClass]="{'card-dark': darkMode}">
40         <mat-form-field *ngIf="!this.policyInstanceId">
41             <mat-select id="ricSelector" formControlName="ricSelector" matInput required [(value)]="this.ric"
42                 placeholder="Target"
43                 matTooltip="Element where the policy instance resides, e.g. a gNodeB or Near-RT RIC">
44                 <mat-option *ngFor="let ric of this.allRics" [value]="ric">
45                     {{ric}}
46                 </mat-option>
47             </mat-select>
48             <div *ngIf="ricSelector.invalid && (ricSelector.dirty || ricSelector.touched)" class="alert mat-error"
49                 style="width: 300px;">
50                 <div *ngIf="ricSelector.errors.required">
51                     <mat-error role="alert">
52                         This field is required.
53                     </mat-error>
54                 </div>
55             </div>
56         </mat-form-field>
57         <h4>
58             Properties
59         </h4>
60         <mat-form-field style="width: 800px;">
61             <textarea id="policyJsonTextArea" formControlName="policyJsonTextArea" matInput cdkTextareaAutosize
62                 cdkAutosizeMinRows="10" required [(value)]="this.policyJson" placeholder="Policy properties"
63                 matTooltip="The properties of the policy instance, in JSON format" matTooltipPosition="before">
64             </textarea>
65             <div *ngIf="policyJsonTextArea.invalid && (policyJsonTextArea.dirty || policyJsonTextArea.touched)">
66                 <div *ngIf="policyJsonTextArea.errors.required">
67                     <mat-error role="alert">
68                         This field is required.
69                     </mat-error>
70                 </div>
71                 <div *ngIf="policyJsonTextArea.errors.invalidJson">
72                     <mat-error role="alert">
73                         The policy properties must be a valid JSON.
74                     </mat-error>
75                 </div>
76             </div>
77         </mat-form-field>
78         <div mat-dialog-actions>
79             <button (click)="formatJsonInput();" class="mat-raised-button" [disabled]="!policyJsonTextArea.valid">
80                 Format JSON
81             </button>
82             <button mat-raised-button class="mat-raised-button" [mat-dialog-close]="false">Close</button>
83             <button mat-raised-button (click)="this.onSubmit()" class="submitBtn" [disabled]="!instanceForm.valid">
84                 Submit
85             </button>
86         </div>
87     </mat-card>
88 </div>