71c63bef4624d651424eeb972c8b68eba5d94c9a
[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">{{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>Policy with no type</tspan>
31             </text>
32         </svg>
33     </div>
34 </div>
35 <br />
36 <div class="text-muted">Enter policy statements (JSON).</div>
37
38 <div [formGroup]="instanceForm" fxLayout="row" fxLayoutAlign="space-around start" fxLayout.lt-sm="column"
39     fxLayoutAlign.lt-sm="flex-start center">
40
41     <mat-card class="card" [ngClass]="{'card-dark': darkMode}">
42         <mat-form-field *ngIf="!this.policyInstanceId">
43             <mat-label>Select RIC</mat-label>
44             <mat-select id="ricSelector" formControlName="ricSelector" matInput required [(value)]="this.ric">
45                 <mat-option *ngFor="let ric of this.allRics" [value]="ric">
46                     {{ric}}
47                 </mat-option>
48             </mat-select>
49             <div *ngIf="ricSelector.invalid && (ricSelector.dirty || ricSelector.touched)" class="alert mat-error"
50                 style="width: 300px;">
51                 <div *ngIf="ricSelector.errors.required">
52                     <mat-error role="alert">
53                         A Ric must be selected.
54                     </mat-error>
55                 </div>
56             </div>
57         </mat-form-field>
58
59         <mat-form-field style="width: 800px;">
60             <mat-label>Policy content</mat-label>
61             <textarea id="policyJsonTextArea" formControlName="policyJsonTextArea" matInput cdkTextareaAutosize
62                 cdkAutosizeMinRows="10" required [(value)]="this.policyJson">
63             </textarea>
64             <div *ngIf="policyJsonTextArea.invalid && (policyJsonTextArea.dirty || policyJsonTextArea.touched)">
65                 <div *ngIf="policyJsonTextArea.errors.required">
66                     <mat-error role="alert">
67                         The policy body is required.
68                     </mat-error>
69                 </div>
70                 <div *ngIf="policyJsonTextArea.errors.invalidJson">
71                     <mat-error role="alert">
72                         The policy body must be a valid JSON.
73                     </mat-error>
74                 </div>
75             </div>
76         </mat-form-field>
77         <div mat-dialog-actions>
78             <button (click)="formatJsonInput();" class="mat-raised-button" [disabled]="!policyJsonTextArea.valid">
79                 Format JSON
80             </button>
81             <button mat-raised-button class="mat-raised-button" [mat-dialog-close]="false">Close</button>
82             <button mat-raised-button (click)="this.onSubmit()" class="submitBtn" [disabled]="!instanceForm.valid">
83                 Submit
84             </button>
85         </div>
86     </mat-card>
87 </div>