2020-09-09 18:27:28 +03:00
|
|
|
<!--
|
|
|
|
|
|
2023-01-31 10:43:56 +02:00
|
|
|
Copyright © 2016-2023 The Thingsboard Authors
|
2020-09-09 18:27:28 +03: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.
|
|
|
|
|
|
|
|
|
|
-->
|
2020-09-10 19:37:14 +03:00
|
|
|
<div fxLayout="column" [formGroup]="alarmRuleFormGroup">
|
2020-12-08 18:01:17 +02:00
|
|
|
<tb-alarm-rule-condition formControlName="condition" [deviceProfileId]="deviceProfileId">
|
2020-10-12 17:29:27 +03:00
|
|
|
</tb-alarm-rule-condition>
|
2020-10-13 19:48:46 +03:00
|
|
|
<tb-alarm-schedule-info formControlName="schedule">
|
2020-10-12 17:29:27 +03:00
|
|
|
</tb-alarm-schedule-info>
|
2020-10-13 19:48:46 +03:00
|
|
|
<div *ngIf="!disabled || alarmRuleFormGroup.get('alarmDetails').value" fxLayout="row" fxLayoutAlign="start center">
|
|
|
|
|
<span class="tb-alarm-rule-details title" (click)="openEditDetailsDialog($event)">
|
|
|
|
|
{{ alarmRuleFormGroup.get('alarmDetails').value ? ('device-profile.alarm-rule-details' | translate) + ': ' : ('device-profile.add-alarm-rule-details' | translate) }}
|
|
|
|
|
</span>
|
|
|
|
|
<span *ngIf="alarmRuleFormGroup.get('alarmDetails').value" class="tb-alarm-rule-details"
|
|
|
|
|
(click)="openEditDetailsDialog($event)"
|
2021-08-17 14:56:19 +03:00
|
|
|
[innerHTML]="alarmDetailsText"></span>
|
2020-10-13 19:48:46 +03:00
|
|
|
<button mat-icon-button color="primary"
|
|
|
|
|
type="button"
|
|
|
|
|
(click)="openEditDetailsDialog($event)"
|
|
|
|
|
matTooltip="{{ (disabled ? 'action.view' : 'action.edit') | translate }}"
|
|
|
|
|
matTooltipPosition="above">
|
|
|
|
|
<mat-icon>{{ disabled ? 'visibility' : (alarmRuleFormGroup.get('alarmDetails').value ? 'edit' : 'add') }}</mat-icon>
|
|
|
|
|
</button>
|
2020-10-12 17:29:27 +03:00
|
|
|
</div>
|
2021-06-14 15:42:27 +03:00
|
|
|
<div *ngIf="!disabled || alarmRuleFormGroup.get('dashboardId').value" fxLayout="column" fxLayoutAlign="start start"
|
|
|
|
|
fxLayout.gt-sm="row" fxLayoutAlign.gt-sm="start center">
|
|
|
|
|
<span class="tb-alarm-rule-dashboard title">
|
|
|
|
|
{{ ('device-profile.alarm-rule-mobile-dashboard' | translate) + ': ' }}
|
|
|
|
|
</span>
|
|
|
|
|
<tb-dashboard-autocomplete class="tb-alarm-rule-dashboard dashboard"
|
2023-02-21 19:18:04 +02:00
|
|
|
label=""
|
2021-06-14 15:42:27 +03:00
|
|
|
placeholder="{{ 'device-profile.alarm-rule-no-mobile-dashboard' | translate }}"
|
|
|
|
|
formControlName="dashboardId">
|
2023-02-21 19:18:04 +02:00
|
|
|
<span tb-hint>{{'device-profile.alarm-rule-mobile-dashboard-hint' | translate}}</span>
|
2021-06-14 15:42:27 +03:00
|
|
|
</tb-dashboard-autocomplete>
|
|
|
|
|
</div>
|
2020-09-09 18:27:28 +03:00
|
|
|
</div>
|