thingsboard/ui-ngx/src/app/shared/components/kv-map.component.html

58 lines
2.5 KiB
HTML
Raw Normal View History

2019-12-27 16:35:11 +02:00
<!--
2024-01-09 10:46:16 +02:00
Copyright © 2016-2024 The Thingsboard Authors
2019-12-27 16:35:11 +02:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<section class="tb-kv-map flex flex-col" [formGroup]="kvListFormGroup">
2023-02-28 15:14:36 +02:00
<label translate class="tb-title">{{ titleText }}</label>
<div class="flex flex-row justify-start items-center gap-2"
2019-12-27 16:35:11 +02:00
formArrayName="keyVals"
*ngFor="let keyValControl of keyValsFormArray().controls; let $index = index">
<mat-form-field class="mat-block flex-1" subscriptSizing="{{ subscriptSizing }}">
2019-12-27 16:35:11 +02:00
<input [formControl]="keyValControl.get('key')" matInput required
placeholder="{{ (keyPlaceholderText ? keyPlaceholderText : 'key-val.key') | translate }}"/>
</mat-form-field>
<mat-form-field class="mat-block flex-1" subscriptSizing="{{ subscriptSizing }}">
2019-12-27 16:35:11 +02:00
<input [formControl]="keyValControl.get('value')" matInput required
placeholder="{{ (valuePlaceholderText ? valuePlaceholderText : 'key-val.value') | translate }}"/>
</mat-form-field>
2023-02-17 19:24:01 +02:00
<button mat-icon-button color="primary"
[class.!hidden]="disabled"
2019-12-27 16:35:11 +02:00
type="button"
(click)="removeKeyVal($index)"
[disabled]="isLoading$ | async"
matTooltip="{{ 'key-val.remove-entry' | translate }}"
matTooltipPosition="above">
<mat-icon>close</mat-icon>
</button>
</div>
<span [class]="{
'disabled': disabled,
'!hidden': keyValsFormArray().length
}"
class="no-data-found flex justify-center items-center" translate>{{noDataText ? noDataText : 'key-val.no-data'}}</span>
2019-12-27 16:35:11 +02:00
<div style="margin-top: 8px;">
<button mat-button mat-raised-button color="primary"
[class.!hidden]="disabled"
2019-12-27 16:35:11 +02:00
[disabled]="isLoading$ | async"
(click)="addKeyVal()"
type="button"
matTooltip="{{ 'key-val.add-entry' | translate }}"
matTooltipPosition="above">
{{ 'action.add' | translate }}
</button>
</div>
</section>