2025-01-07 19:07:33 +02:00
|
|
|
<!--
|
|
|
|
|
|
2025-02-25 09:39:16 +02:00
|
|
|
Copyright © 2016-2025 The Thingsboard Authors
|
2025-01-07 19:07:33 +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.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<div class="tb-form-panel no-padding no-border" [formGroup]="attributeControlGroup">
|
2025-01-14 10:48:07 +02:00
|
|
|
<tb-example-hint [hintText]="'rule-node-config.kv-map-pattern-hint'"
|
2025-01-07 19:07:33 +02:00
|
|
|
[popupHelpLink]="popupHelpLink"></tb-example-hint>
|
|
|
|
|
<tb-string-items-list subscriptSizing="dynamic" class="mat-block" editable
|
|
|
|
|
(focusout)="onTouched()"
|
2025-01-14 10:48:07 +02:00
|
|
|
[placeholder]="'rule-node-config.add-attribute-key' | translate"
|
|
|
|
|
[label]="'rule-node-config.client-attributes' | translate" formControlName="clientAttributeNames">
|
2025-01-07 19:07:33 +02:00
|
|
|
<ng-container matSuffix *ngTemplateOutlet="helpIcon"></ng-container>
|
|
|
|
|
</tb-string-items-list>
|
|
|
|
|
<tb-string-items-list subscriptSizing="dynamic" class="mat-block" editable
|
|
|
|
|
(focusout)="onTouched()"
|
2025-01-14 10:48:07 +02:00
|
|
|
[placeholder]="'rule-node-config.add-attribute-key' | translate"
|
|
|
|
|
[label]="'rule-node-config.shared-attributes' | translate" formControlName="sharedAttributeNames">
|
2025-01-07 19:07:33 +02:00
|
|
|
<ng-container matSuffix *ngTemplateOutlet="helpIcon"></ng-container>
|
|
|
|
|
</tb-string-items-list>
|
|
|
|
|
<tb-string-items-list subscriptSizing="dynamic" class="mat-block" editable
|
|
|
|
|
(focusout)="onTouched()"
|
2025-01-14 10:48:07 +02:00
|
|
|
[placeholder]="'rule-node-config.add-attribute-key' | translate"
|
|
|
|
|
[label]="'rule-node-config.server-attributes' | translate" formControlName="serverAttributeNames">
|
2025-01-07 19:07:33 +02:00
|
|
|
<ng-container matSuffix *ngTemplateOutlet="helpIcon"></ng-container>
|
|
|
|
|
</tb-string-items-list>
|
|
|
|
|
<tb-string-items-list subscriptSizing="dynamic" editable class="mat-block"
|
|
|
|
|
(focusout)="onTouched()"
|
2025-01-14 10:48:07 +02:00
|
|
|
[placeholder]="'rule-node-config.add-telemetry-key' | translate"
|
|
|
|
|
[label]="'rule-node-config.latest-telemetry' | translate" formControlName="latestTsKeyNames">
|
2025-01-07 19:07:33 +02:00
|
|
|
<ng-container matSuffix *ngTemplateOutlet="helpIcon"></ng-container>
|
|
|
|
|
</tb-string-items-list>
|
2025-01-14 10:48:07 +02:00
|
|
|
<div tb-hint-tooltip-icon="{{ 'rule-node-config.fetch-latest-telemetry-with-timestamp-tooltip' | translate:
|
2025-01-07 19:07:33 +02:00
|
|
|
{ latestTsKeyName: attributeControlGroup.get('latestTsKeyNames').value[0]} }}"
|
|
|
|
|
*ngIf="attributeControlGroup.get('latestTsKeyNames').value?.length > 0"
|
|
|
|
|
class="tb-form-row no-border no-padding">
|
|
|
|
|
<mat-slide-toggle class="mat-slide" formControlName="getLatestValueWithTs">
|
2025-01-14 10:48:07 +02:00
|
|
|
{{ 'rule-node-config.fetch-latest-telemetry-with-timestamp' | translate }}
|
2025-01-07 19:07:33 +02:00
|
|
|
</mat-slide-toggle>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<ng-template #helpIcon>
|
|
|
|
|
<mat-icon class="help-icon margin-8 cursor-pointer" aria-hidden="false" aria-label="help-icon"
|
|
|
|
|
color="primary"
|
2025-01-14 10:48:07 +02:00
|
|
|
matTooltip="{{ 'rule-node-config.chip-help' | translate: { inputName: 'rule-node-config.field-name' | translate } }}">help</mat-icon>
|
2025-01-07 19:07:33 +02:00
|
|
|
</ng-template>
|