a609db41b867b375d6639d94897906462b3dfc42
[sdc.git] / catalog-ui / src / app / ng2 / pages / properties-assignment / tosca-function / tosca-get-function / tosca-get-function.component.html
1 <!--
2   ~ ============LICENSE_START=======================================================
3   ~  Copyright (C) 2021 Nordix Foundation
4   ~  ================================================================================
5   ~  Licensed under the Apache License, Version 2.0 (the "License");
6   ~  you may not use this file except in compliance with the License.
7   ~  You may obtain a copy of the License at
8   ~
9   ~        http://www.apache.org/licenses/LICENSE-2.0
10   ~  Unless required by applicable law or agreed to in writing, software
11   ~  distributed under the License is distributed on an "AS IS" BASIS,
12   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~  See the License for the specific language governing permissions and
14   ~  limitations under the License.
15   ~
16   ~  SPDX-License-Identifier: Apache-2.0
17   ~  ============LICENSE_END=========================================================
18   -->
19
20 <div>
21   <form class="w-sdc-form" [formGroup]="formGroup">
22     <div class="i-sdc-form-item" *ngIf="showPropertySourceDropdown()">
23       <label class="i-sdc-form-label required">{{'TOSCA_FUNCTION_PROPERTY_SOURCE_LABEL' | translate}}</label>
24       <select formControlName="propertySource" (change)="onPropertySourceChange()">
25         <option *ngFor="let propertySource of propertySourceList"
26                 [ngValue]="propertySource">{{propertySource}}</option>
27       </select>
28     </div>
29     <div *ngIf="showPropertyDropdown()" class="i-sdc-form-item">
30       <label class="i-sdc-form-label required">{{dropdownValuesLabel}}</label>
31       <select formControlName="selectedProperty" (change)="onPropertyValueChange()">
32         <option *ngFor="let value of propertyDropdownList" [ngValue]="value">{{value.propertyLabel}}</option>
33       </select>
34     </div>
35     <div *ngIf="dropDownErrorMsg" class="tosca-error">{{dropDownErrorMsg}}</div>
36   </form>
37   <div class="i-sdc-form-item" *ngFor="let indexVal of indexListValues; index as i">
38     <label class="i-sdc-form-label required" *ngIf="indexVal.indexFlag">Index</label>
39     <input type="text" *ngIf="indexVal.indexFlag" [(ngModel)]="indexVal.indexValue" (change)="indexTokenChange(indexVal)"/>
40     <label class="i-sdc-form-label required" *ngIf="indexVal.nestedFlag">{{dropdownValuesLabel}}</label>
41     <select [(ngModel)]="indexVal.indexProperty" *ngIf="indexVal.nestedFlag" (change)="onSubPropertyValueChange(indexVal,i)">
42       <option *ngFor="let value of indexVal.subPropertyArray" [ngValue]="value">{{value.propertyLabel}}</option>
43     </select>
44   </div>
45   <loader [display]="isLoading" [size]="'medium'" [relative]="true"></loader>
46 </div>