2022-01-11 16:06:08 +02:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright © 2016-2021 The Thingsboard Authors
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
-->
|
2022-01-11 14:38:07 +02:00
|
|
|
<mat-expansion-panel [formGroup] = "dynamicValue" class="device-profile-alarm" style = "margin-bottom: 26px;" fxFlex>
|
|
|
|
|
<mat-expansion-panel-header>
|
|
|
|
|
<div fxFlex fxLayout="row" fxLayoutAlign="start center">
|
|
|
|
|
<mat-panel-title>
|
|
|
|
|
<div fxLayout="row" fxFlex fxLayoutAlign="start center">
|
|
|
|
|
{{'filter.dynamic-value' | translate}}
|
|
|
|
|
</div>
|
|
|
|
|
</mat-panel-title>
|
|
|
|
|
<span fxFlex></span>
|
|
|
|
|
</div>
|
|
|
|
|
</mat-expansion-panel-header>
|
|
|
|
|
<ng-template matExpansionPanelContent>
|
|
|
|
|
<div fxFlex fxLayout="column">
|
|
|
|
|
<div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="8px">
|
|
|
|
|
<div fxFlex="40" fxLayout="column">
|
|
|
|
|
<mat-form-field floatLabel="always" hideRequiredMarker class="mat-block">
|
|
|
|
|
<mat-label></mat-label>
|
|
|
|
|
<mat-select formControlName="sourceType" placeholder="{{'filter.dynamic-source-type' | translate}}">
|
|
|
|
|
<mat-option [value]="null">
|
|
|
|
|
{{'filter.no-dynamic-value' | translate}}
|
|
|
|
|
</mat-option>
|
|
|
|
|
<mat-option *ngFor="let sourceType of dynamicValueSourceTypes" [value]="sourceType">
|
|
|
|
|
{{dynamicValueSourceTypeTranslations.get(sourceType) | translate}}
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-select>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
</div>
|
|
|
|
|
<div fxFlex fxLayout="column">
|
|
|
|
|
<mat-form-field floatLabel="always" hideRequiredMarker class="mat-block source-attribute">
|
|
|
|
|
<mat-label></mat-label>
|
|
|
|
|
<input matInput formControlName="sourceAttribute" placeholder="{{'filter.source-attribute' | translate}}">
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
</mat-expansion-panel>
|