2023-07-13 15:24:45 +03:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright © 2016-2023 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.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
2023-08-01 17:54:39 +03:00
|
|
|
<form class="mat-elevation-z1" [formGroup]="deleteTimeseriesFormGroup" (ngSubmit)="delete()" style="max-width: 488px">
|
2023-07-13 15:24:45 +03:00
|
|
|
<mat-toolbar>
|
|
|
|
|
<h2>{{ "attribute.delete-timeseries.delete-strategy" | translate }}</h2>
|
|
|
|
|
<span fxFlex></span>
|
|
|
|
|
<button mat-icon-button
|
|
|
|
|
(click)="cancel()"
|
|
|
|
|
type="button">
|
|
|
|
|
<mat-icon class="material-icons">close</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
</mat-toolbar>
|
|
|
|
|
<div style="padding: 16px; min-height: 188px">
|
|
|
|
|
<mat-form-field fxFlex class="mat-block">
|
|
|
|
|
<mat-label translate>attribute.delete-timeseries.strategy</mat-label>
|
2023-08-01 17:54:39 +03:00
|
|
|
<mat-select formControlName="strategy">
|
2023-07-13 15:24:45 +03:00
|
|
|
<mat-option *ngFor="let strategy of strategiesTranslationsMap.keys()" [value]="strategy">
|
|
|
|
|
{{ strategiesTranslationsMap.get(strategy) | translate }}
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-select>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
<div *ngIf="isPeriodStrategy()">
|
|
|
|
|
<div fxLayout="row" fxLayoutGap="22px" fxLayout.xs="column" fxLayoutGap.xs="8px">
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>attribute.delete-timeseries.start-time</mat-label>
|
|
|
|
|
<mat-datetimepicker-toggle [for]="startDateTimePicker" matPrefix></mat-datetimepicker-toggle>
|
|
|
|
|
<mat-datetimepicker #startDateTimePicker type="datetime" openOnFocus="true"></mat-datetimepicker>
|
2023-08-01 17:54:39 +03:00
|
|
|
<input matInput formControlName="startDateTime" [matDatetimepicker]="startDateTimePicker">
|
2023-07-13 15:24:45 +03:00
|
|
|
</mat-form-field>
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>attribute.delete-timeseries.ends-on</mat-label>
|
|
|
|
|
<mat-datetimepicker-toggle [for]="endDatePicker" matPrefix></mat-datetimepicker-toggle>
|
|
|
|
|
<mat-datetimepicker #endDatePicker type="datetime" openOnFocus="true"></mat-datetimepicker>
|
2023-08-01 17:54:39 +03:00
|
|
|
<input matInput formControlName="endDateTime" [matDatetimepicker]="endDatePicker">
|
2023-07-13 15:24:45 +03:00
|
|
|
</mat-form-field>
|
|
|
|
|
</div>
|
2023-07-14 12:37:40 +03:00
|
|
|
</div>
|
|
|
|
|
<div *ngIf="isPeriodStrategy() || isDeleteLatestStrategy()">
|
2023-08-01 17:54:39 +03:00
|
|
|
<mat-slide-toggle formControlName="rewriteLatest">
|
2023-07-17 23:46:06 +03:00
|
|
|
{{ "attribute.delete-timeseries.rewrite-latest-value" | translate }}
|
2023-07-13 15:24:45 +03:00
|
|
|
</mat-slide-toggle>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div fxLayout="row" class="tb-panel-actions">
|
|
|
|
|
<span fxFlex></span>
|
|
|
|
|
<button mat-button color="primary"
|
|
|
|
|
type="button"
|
|
|
|
|
(click)="cancel()" cdkFocusInitial>
|
|
|
|
|
{{ 'action.cancel' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-button mat-raised-button color="primary"
|
|
|
|
|
type="submit"
|
2023-08-01 17:54:39 +03:00
|
|
|
[disabled]="isPeriodStrategy() && (!getStartDateTimeFormControl().value || !getEndDateTimeFormControl().value)">
|
2023-07-13 15:24:45 +03:00
|
|
|
{{ 'action.apply' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2023-08-01 17:54:39 +03:00
|
|
|
</form>
|
2023-07-13 15:24:45 +03:00
|
|
|
|