8ee253e5dcaba5b04fe279c8f34dfd6e19e96ef8
[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         <option *ngFor="let toscaFunction of toscaFunctions"
26                 [ngValue]="toscaFunction">{{toscaFunction | lowercase}}</option>
27       </select>
28     </div>
29     <div *ngIf="isConcatSelected()">
30       <app-tosca-concat-function [toscaConcatFunction]="toscaFunction" [componentInstanceMap]="componentInstanceMap"
31                                  (onValidityChange)="onConcatFunctionValidityChange($event)"></app-tosca-concat-function>
32     </div>
33     <div *ngIf="isGetFunctionSelected()">
34       <app-tosca-get-function [property]="property" [toscaGetFunction]="toscaFunction"
35                               [componentInstanceMap]="componentInstanceMap"
36                               [functionType]="toscaFunctionTypeForm.value"
37                               (onValidityChange)="onGetFunctionValidityChange($event)"></app-tosca-get-function>
38     </div>
39     <div *ngIf="isYamlFunctionSelected()">
40       <app-yaml-function [yamlFunction]="toscaFunction" (onValidityChange)="onYamlFunctionValidityChange($event)"></app-yaml-function>
41     </div>
42     <div *ngIf="showClearButton()" class="button-container">
43       <button (click)="onClearValues()" class="tlv-btn red ng-star-inserted">{{'TOSCA_FUNCTION_CLEAR_VALUE_BUTTON' | translate}}</button>
44     </div>
45   </div>
46   <loader [display]="isLoading" [size]="'medium'" [relative]="true"></loader>
47 </div>