Support additional operands for node filters
[sdc.git] / catalog-ui / src / app / ng2 / pages / properties-assignment / tosca-function / tosca-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 class="tosca-function">
21   <div class="w-sdc-form" [formGroup]="formGroup">
22     <div class="i-sdc-form-item">
23       <label class="i-sdc-form-label">{{'TOSCA_FUNCTION_LABEL' | translate}}</label>
24       <select formControlName="toscaFunctionType" (change)="onFunctionTypeChange()">
25         <optgroup label="Standard">
26           <option *ngFor="let toscaFunction of toscaFunctions"
27                 [ngValue]="toscaFunction">{{toscaFunction | lowercase}}</option>
28         </optgroup>
29         <optgroup *ngIf="toscaCustomFunctions" label="Custom">
30           <option *ngFor="let toscaCustomFunction of toscaCustomFunctions"
31                 [ngValue]="toscaCustomFunction">{{toscaCustomFunction | lowercase}}</option>
32         </optgroup>
33         <option value="YAML">yaml</option>
34       </select>
35     </div>
36     <div *ngIf="isConcatSelected()">
37       <app-tosca-concat-function [toscaConcatFunction]="toscaFunction" [customToscaFunctions]="customToscaFunctions" [componentInstanceMap]="componentInstanceMap"
38                                  (onValidityChange)="onConcatFunctionValidityChange($event)"></app-tosca-concat-function>
39     </div>
40     <div *ngIf="isCustomSelected()">
41       <app-tosca-custom-function [toscaCustomFunction]="toscaFunction" [customToscaFunctions]="customToscaFunctions" [name]="getCustomFunctionName()" [componentInstanceMap]="componentInstanceMap"
42                                  [isDefaultCustomFunction]="isDefaultCustomFunction()" (onValidityChange)="onCustomFunctionValidityChange($event)"></app-tosca-custom-function>
43     </div>
44     <div *ngIf="isGetFunctionSelected()">
45       <app-tosca-get-function [property]="property" [toscaGetFunction]="toscaFunction"
46                               [overridingType] = "overridingType"
47                               [componentInstanceMap]="componentInstanceMap"
48                               [functionType]="toscaFunctionTypeForm.value"
49                               [compositionMap]="compositionMap"
50                               [compositionMapKey]="compositionMapKey"
51                               (onValidityChange)="onGetFunctionValidityChange($event)"></app-tosca-get-function>
52     </div>
53     <div *ngIf="isYamlFunctionSelected()">
54       <app-yaml-function [yamlFunction]="toscaFunction" (onValidityChange)="onYamlFunctionValidityChange($event)"></app-yaml-function>
55     </div>
56     <div *ngIf="showClearButton()" class="button-container">
57       <button (click)="onClearValues()" class="tlv-btn red ng-star-inserted">{{'TOSCA_FUNCTION_CLEAR_VALUE_BUTTON' | translate}}</button>
58     </div>
59   </div>
60   <loader [display]="isLoading" [size]="'medium'" [relative]="true"></loader>
61 </div>