Support TOSCA functions in operation inputs
[sdc.git] / catalog-ui / src / app / ng2 / pages / composition / interface-operatons / operation-creator / input-list / input-list-item / input-list-item.component.html
1 <!--
2   ~ -
3   ~  ============LICENSE_START=======================================================
4   ~  Copyright (C) 2022 Nordix Foundation.
5   ~  ================================================================================
6   ~  Licensed under the Apache License, Version 2.0 (the "License");
7   ~  you may not use this file except in compliance with the License.
8   ~  You may obtain a copy of the License at
9   ~
10   ~       http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~  Unless required by applicable law or agreed to in writing, software
13   ~  distributed under the License is distributed on an "AS IS" BASIS,
14   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~  See the License for the specific language governing permissions and
16   ~  limitations under the License.
17   ~
18   ~  SPDX-License-Identifier: Apache-2.0
19   ~  ============LICENSE_END=========================================================
20   -->
21
22 <li [class.root]="isRoot()">
23   <span class="input-info">
24     <em class="sprite-new round-expand-icon" [class.open]="isExpanded" (click)="expandAndCollapse()"></em>
25     <label class="input-label">{{name}}:</label> <em data-tests-id="input-type">{{resolveType()}}</em>
26     <span class="sprite-new delete-btn" *ngIf="showInputDelete()" (click)="onInputDelete()"></span>
27     <span class="sprite-new delete-btn" *ngIf="showListItemDelete()" (click)="onChildListItemDelete()"></span>
28   </span>
29
30   <ng-container *ngIf="isExpanded && showToscaFunctionOption">
31     <form>
32       <fieldset [disabled]="isViewOnly" >
33         <input type="radio" name="hasGetFunctionValue"
34               [(ngModel)]="isToscaFunction"
35               [value]="false"
36               (change)="onValueTypeChange()"/> Value
37         <input type="radio" name="hasGetFunctionValue"
38               [(ngModel)]="isToscaFunction"
39               [value]="true"/> {{'TOSCA_FUNCTION_LABEL' | translate}}
40       </fieldset>
41     </form>
42     <div *ngIf="isToscaFunction">
43       <ul>
44         <li>
45           <div *ngIf="componentInstanceMap">
46             <tosca-function
47                             [property]="property"
48                             [allowClear]="false"
49                             [componentInstanceMap]="componentInstanceMap"
50                             [customToscaFunctions]="customToscaFunctions"
51                             (onValidityChange)="onToscaFunctionValidityChange($event)">
52             </tosca-function>
53           </div>
54           <div *ngIf="!componentInstanceMap">
55             <tosca-function
56                             [property]="property"
57                             [allowClear]="false"
58                             [customToscaFunctions]="customToscaFunctions"
59                             (onValidityChange)="onToscaFunctionValidityChange($event)">
60             </tosca-function>
61           </div>
62         </li>
63       </ul>
64     </div>
65   </ng-container>
66
67   <div *ngIf="!isToscaFunction">
68     <ng-container *ngIf="isTypeSimple(type.name)">
69       <ul *ngIf="isExpanded">
70         <li class="input-value">
71           <ng-container *ngIf="isViewOnly">
72             {{valueObjRef}}<em class="empty-value" *ngIf="valueObjRef !== false && !valueObjRef">{{'GENERAL_LABEL_EMPTY' | translate | lowercase}}</em>
73           </ng-container>
74           <input *ngIf="!isViewOnly && isTypeLiteral(type.name)" type="text" name="value"
75                  [(ngModel)]="valueObjRef" (ngModelChange)="onValueChange($event)"/>
76           <input *ngIf="!isViewOnly && isTypeNumber(type.name)" type="number"
77                  [(ngModel)]="valueObjRef" (ngModelChange)="onValueChange($event)"/>
78           <select *ngIf="!isViewOnly && isTypeBoolean(type.name)" [(ngModel)]="valueObjRef" (ngModelChange)="onValueChange($event)">
79             <option [value]="true">{{'GENERAL_LABEL_TRUE' | translate}}</option>
80             <option [value]="false">{{'GENERAL_LABEL_FALSE' | translate}}</option>
81           </select>
82         </li>
83       </ul>
84     </ng-container>
85     <ng-container *ngIf="isTypeRange(type.name)">
86         <ul *ngIf="isExpanded">
87             <ng-container *ngFor="let value1 of [0, 1]; index as i">
88                 <li class="input-value">
89                     <ng-container *ngIf="isViewOnly">
90                         {{valueObjRef[i]}}
91                     </ng-container>
92                     <input type="text" *ngIf="!isViewOnly"
93                     [(ngModel)]="valueObjRef[i]" (ngModelChange)="onListValueChange()" />
94                 </li>
95             </ng-container>
96         </ul>
97     </ng-container>
98     <ng-container *ngIf="isTypeComplex(type.name)" >
99         <ul *ngIf="isExpanded">
100           <ng-container *ngFor="let property of this.type.properties">
101             <app-input-list-item
102                 [name]="property.name"
103                 [type]="getDataType(property.type)"
104                 [dataTypeMap]="dataTypeMap"
105                 [valueObjRef]="valueObjRef ? valueObjRef[property.name] : undefined"
106                 [schema]="property.schema"
107                 [nestingLevel]="nestingLevel + 1"
108                 [isViewOnly]="isViewOnly"
109                 [showToscaFunctionOption]="showToscaFunctionOption"
110                 [allowDeletion]="allowDeletion"
111                 (onValueChange)="onPropertyValueChange($event)">
112             </app-input-list-item>
113           </ng-container>
114         </ul>
115     </ng-container>
116     <ng-container *ngIf="isTypeList(type.name)">
117       <ul *ngIf="isExpanded">
118         <ng-container *ngFor="let value1 of valueObjRef; index as i; trackBy: trackByIndex">
119           <li class="input-value" *ngIf="isTypeSimple(schema.property.type)">
120             <ng-container *ngIf="isViewOnly">
121               {{valueObjRef[i]}}
122             </ng-container>
123             <input type="text" *ngIf="!isViewOnly"
124                   [(ngModel)]="valueObjRef[i]" (ngModelChange)="onListValueChange()" />
125             <span class="sprite-new delete-btn" *ngIf="!isViewOnly" (click)="onListItemDelete(i)"></span>
126           </li>
127           <app-input-list-item *ngIf="!isTypeSimple(schema.property.type)"
128               [name]="i+''"
129               [type]="getDataType(schema.property.type)"
130               [dataTypeMap]="dataTypeMap"
131               [valueObjRef]="valueObjRef[i]"
132               [schema]="buildSchemaGroupProperty()"
133               [nestingLevel]="nestingLevel + 1"
134               [listIndex]="i"
135               [isListChild]="true"
136               [isViewOnly]="isViewOnly"
137               [allowDeletion]="allowDeletion"
138               (onValueChange)="onPropertyValueChange($event)"
139               (onChildListItemDelete)="onListItemDelete($event)">
140           </app-input-list-item>
141         </ng-container>
142         <li class="input-value" *ngIf="!isViewOnly">
143           <a class="add-btn" (click)="addListElement()">{{'INPUT_LIST_ADD_LIST_ENTRY' | translate}}</a>
144         </li>
145       </ul>
146     </ng-container>
147     <ng-container *ngIf="isTypeMap(type.name)">
148       <ul *ngIf="isExpanded">
149         <ng-container *ngFor="let key of getObjectEntries(valueObjRef); index as i">
150           <li class="input-value" *ngIf="isTypeSimple(schema.property.type)">
151             <label class="input-label">{{key}}:</label>
152             <ng-container *ngIf="isViewOnly">
153               {{valueObjRef[key]}}
154             </ng-container>
155             <input type="text" *ngIf="!isViewOnly" [(ngModel)]="valueObjRef[key]" (ngModelChange)="onMapValueChange()"/>
156             <span class="sprite-new delete-btn" *ngIf="!isViewOnly" (click)="onMapKeyDelete(key)"></span>
157           </li>
158           <app-input-list-item
159               *ngIf="!isTypeSimple(schema.property.type)"
160               [name]="key"
161               [type]="getDataType(schema.property.type)"
162               [dataTypeMap]="dataTypeMap"
163               [valueObjRef]="valueObjRef[key]"
164               [schema]="buildSchemaGroupProperty()"
165               [isMapChild]="true"
166               [nestingLevel]="nestingLevel + 1"
167               [isViewOnly]="isViewOnly"
168               [allowDeletion]="allowDeletion"
169               (onValueChange)="onPropertyValueChange($event)"
170               (onDelete)="onMapKeyDelete($event)">
171           </app-input-list-item>
172         </ng-container>
173         <li class="input-value" *ngIf="!isViewOnly">
174           <input type="text" [(ngModel)]="mapEntryName" placeholder="{{ 'INPUT_LIST_MAP_KEY_PLACEHOLDER' | translate }}"/>
175           <a class="add-btn" (click)="addMapEntry()">{{ 'INPUT_LIST_ADD_MAP_ENTRY' | translate }}</a>
176         </li>
177       </ul>
178     </ng-container>
179   </div>
180 </li>