thingsboard/ui-ngx/src/app/shared/components/time/timewindow-panel.component.html

159 lines
8.2 KiB
HTML
Raw Normal View History

2019-08-12 19:34:23 +03:00
<!--
2020-02-20 10:26:43 +02:00
Copyright © 2016-2020 The Thingsboard Authors
2019-08-12 19:34:23 +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.
-->
<form [formGroup]="timewindowForm" (ngSubmit)="update()">
<fieldset [disabled]="(isLoading$ | async)">
2019-10-31 18:33:51 +02:00
<div class="mat-content" style="height: 100%;" fxLayout="column">
<mat-tab-group dynamicHeight [ngClass]="{'tb-headless': historyOnly}"
(selectedIndexChange)="timewindowForm.markAsDirty()" [(selectedIndex)]="timewindow.selectedTab">
<mat-tab label="{{ 'timewindow.realtime' | translate }}">
<div formGroupName="realtime" class="mat-content mat-padding" fxLayout="column">
<tb-timeinterval
2020-02-25 19:11:25 +02:00
[(hideFlag)]="timewindow.hideInterval"
(hideFlagChange)="onHideIntervalChanged()"
[isEdit]="isEdit"
2019-10-31 18:33:51 +02:00
formControlName="timewindowMs"
predefinedName="timewindow.last"
[required]="timewindow.selectedTab === timewindowTypes.REALTIME"
style="padding-top: 8px;"></tb-timeinterval>
2019-08-12 19:34:23 +03:00
</div>
2019-10-31 18:33:51 +02:00
</mat-tab>
<mat-tab label="{{ 'timewindow.history' | translate }}">
2020-02-25 19:11:25 +02:00
<section fxLayout="row">
<section *ngIf="isEdit" fxLayout="column" style="padding-top: 8px; padding-left: 16px;">
<label class="tb-small hide-label" translate>timewindow.hide</label>
<mat-checkbox [ngModelOptions]="{standalone: true}" [(ngModel)]="timewindow.hideInterval"
(ngModelChange)="onHideIntervalChanged()"></mat-checkbox>
</section>
<section fxLayout="column" fxFlex [fxShow]="isEdit || !timewindow.hideInterval">
2020-02-25 19:11:25 +02:00
<div formGroupName="history" class="mat-content mat-padding" style="padding-top: 8px;">
<mat-radio-group formControlName="historyType">
<mat-radio-button [value]="historyTypes.LAST_INTERVAL" color="primary">
<section fxLayout="column">
<span translate>timewindow.last</span>
2020-02-25 19:11:25 +02:00
<tb-timeinterval
formControlName="timewindowMs"
predefinedName="timewindow.last"
2020-06-11 10:09:14 +03:00
[fxShow]="timewindowForm.get('history.historyType').value === historyTypes.LAST_INTERVAL"
2020-02-25 19:11:25 +02:00
[required]="timewindow.selectedTab === timewindowTypes.HISTORY &&
2020-06-11 10:09:14 +03:00
timewindowForm.get('history.historyType').value === historyTypes.LAST_INTERVAL"
2020-02-25 19:11:25 +02:00
style="padding-top: 8px;"></tb-timeinterval>
</section>
</mat-radio-button>
<mat-radio-button [value]="historyTypes.FIXED" color="primary">
<section fxLayout="column">
<span translate>timewindow.time-period</span>
<tb-datetime-period
formControlName="fixedTimewindow"
2020-06-11 10:09:14 +03:00
[fxShow]="timewindowForm.get('history.historyType').value === historyTypes.FIXED"
2020-02-25 19:11:25 +02:00
[required]="timewindow.selectedTab === timewindowTypes.HISTORY &&
2020-06-11 10:09:14 +03:00
timewindowForm.get('history.historyType').value === historyTypes.FIXED"
2020-02-25 19:11:25 +02:00
style="padding-top: 8px;"></tb-datetime-period>
</section>
</mat-radio-button>
</mat-radio-group>
</div>
</section>
</section>
2019-10-31 18:33:51 +02:00
</mat-tab>
</mat-tab-group>
<div *ngIf="aggregation" formGroupName="aggregation" class="mat-content mat-padding" fxLayout="column">
2020-02-25 19:11:25 +02:00
<section fxLayout="row">
<section fxLayout="column" [fxShow]="isEdit">
<label class="tb-small hide-label" translate>timewindow.hide</label>
<mat-checkbox [ngModelOptions]="{standalone: true}" [(ngModel)]="timewindow.hideAggregation"
(ngModelChange)="onHideAggregationChanged()"></mat-checkbox>
</section>
<section fxFlex fxLayout="column" [fxShow]="isEdit || !timewindow.hideAggregation">
<mat-form-field>
<mat-label translate>aggregation.function</mat-label>
<mat-select formControlName="type" style="min-width: 150px;">
2020-02-25 19:11:25 +02:00
<mat-option *ngFor="let aggregation of aggregations" [value]="aggregation">
{{ aggregationTypesTranslations.get(aggregationTypes[aggregation]) | translate }}
</mat-option>
</mat-select>
</mat-form-field>
</section>
</section>
2020-06-11 10:09:14 +03:00
<section fxLayout="row" [fxShow]="timewindowForm.get('aggregation.type').value === aggregationTypes.NONE">
2020-02-25 19:11:25 +02:00
<section fxLayout="column" [fxShow]="isEdit">
<label class="tb-small hide-label" translate>timewindow.hide</label>
<mat-checkbox [ngModelOptions]="{standalone: true}" [(ngModel)]="timewindow.hideAggInterval"
(ngModelChange)="onHideAggIntervalChanged()"></mat-checkbox>
</section>
<section fxLayout="column" [fxShow]="isEdit || !timewindow.hideAggInterval">
<div class="limit-slider-container"
fxLayout="row" fxLayoutAlign="start center">
<span translate>aggregation.limit</span>
<mat-slider fxFlex formControlName="limit"
thumbLabel
2020-06-11 10:09:14 +03:00
[value]="timewindowForm.get('aggregation.limit').value"
2020-02-25 19:11:25 +02:00
min="{{minDatapointsLimit()}}"
max="{{maxDatapointsLimit()}}">
</mat-slider>
<mat-form-field style="max-width: 80px;">
<input matInput formControlName="limit" type="number" step="1"
2020-06-11 10:09:14 +03:00
[value]="timewindowForm.get('aggregation.limit').value"
2020-02-25 19:11:25 +02:00
min="{{minDatapointsLimit()}}"
max="{{maxDatapointsLimit()}}"/>
</mat-form-field>
</div>
</section>
</section>
2019-10-31 18:33:51 +02:00
</div>
<div formGroupName="realtime"
2020-06-11 10:09:14 +03:00
*ngIf="aggregation && timewindowForm.get('aggregation.type').value !== aggregationTypes.NONE &&
2019-10-31 18:33:51 +02:00
timewindow.selectedTab === timewindowTypes.REALTIME" class="mat-content mat-padding" fxLayout="column">
<tb-timeinterval
formControlName="interval"
2020-02-25 19:11:25 +02:00
[isEdit]="isEdit"
[(hideFlag)]="timewindow.hideAggInterval"
(hideFlagChange)="onHideAggIntervalChanged()"
2019-10-31 18:33:51 +02:00
[min]="minRealtimeAggInterval()" [max]="maxRealtimeAggInterval()"
predefinedName="aggregation.group-interval">
</tb-timeinterval>
</div>
<div formGroupName="history"
2020-06-11 10:09:14 +03:00
*ngIf="aggregation && timewindowForm.get('aggregation.type').value !== aggregationTypes.NONE &&
2019-10-31 18:33:51 +02:00
timewindow.selectedTab === timewindowTypes.HISTORY" class="mat-content mat-padding" fxLayout="column">
<tb-timeinterval
formControlName="interval"
2020-02-25 19:11:25 +02:00
[isEdit]="isEdit"
[(hideFlag)]="timewindow.hideAggInterval"
(hideFlagChange)="onHideAggIntervalChanged()"
2019-10-31 18:33:51 +02:00
[min]="minHistoryAggInterval()" [max]="maxHistoryAggInterval()"
predefinedName="aggregation.group-interval">
</tb-timeinterval>
</div>
<div fxLayout="row" class="tb-panel-actions" fxLayoutAlign="end center">
2020-10-14 12:32:07 +03:00
<button type="button"
mat-button
[disabled]="(isLoading$ | async)"
(click)="cancel()">
{{ 'action.cancel' | translate }}
</button>
2019-08-12 19:34:23 +03:00
<button type="submit"
mat-raised-button
color="primary"
[disabled]="(isLoading$ | async) || timewindowForm.invalid || !timewindowForm.dirty">
{{ 'action.update' | translate }}
</button>
</div>
</div>
</fieldset>
</form>