committed by
GitHub
29 changed files with 357 additions and 29 deletions
@ -0,0 +1,74 @@ |
|||
<!-- |
|||
|
|||
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. |
|||
|
|||
--> |
|||
|
|||
<div class="mat-elevation-z1" style="max-width: 488px"> |
|||
<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> |
|||
<mat-select [(ngModel)]="strategy"> |
|||
<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> |
|||
<input required matInput [(ngModel)]="startDateTime" [matDatetimepicker]="startDateTimePicker" |
|||
(ngModelChange)="onStartDateTimeChange($event)"> |
|||
</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> |
|||
<input required matInput [(ngModel)]="endDateTime" [matDatetimepicker]="endDatePicker" |
|||
(ngModelChange)="onEndDateTimeChange($event)"> |
|||
</mat-form-field> |
|||
</div> |
|||
<mat-slide-toggle [(ngModel)]="rewriteLatestIfDeleted"> |
|||
{{ "attribute.delete-timeseries.rewrite-latest-value-if-deleted" | translate }} |
|||
</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" |
|||
(click)="delete()"> |
|||
{{ 'action.apply' | translate }} |
|||
</button> |
|||
</div> |
|||
</div> |
|||
|
|||
@ -0,0 +1,28 @@ |
|||
/** |
|||
* 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. |
|||
*/ |
|||
|
|||
:host { |
|||
width: 100%; |
|||
background-color: #fff; |
|||
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15); |
|||
border-radius: 4px; |
|||
} |
|||
|
|||
:host ::ng-deep{ |
|||
div .mat-toolbar { |
|||
background: none; |
|||
} |
|||
} |
|||
@ -0,0 +1,100 @@ |
|||
///
|
|||
/// 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.
|
|||
///
|
|||
|
|||
import { Component, Inject, InjectionToken, OnInit } from '@angular/core'; |
|||
import { OverlayRef } from '@angular/cdk/overlay'; |
|||
import { |
|||
TimeseriesDeleteStrategy, |
|||
timeseriesDeleteStrategyTranslations |
|||
} from '@shared/models/telemetry/telemetry.models'; |
|||
import { MINUTE } from '@shared/models/time/time.models'; |
|||
|
|||
export const DELETE_TIMESERIES_PANEL_DATA = new InjectionToken<any>('DeleteTimeseriesPanelData'); |
|||
|
|||
export interface DeleteTimeseriesPanelData { |
|||
isMultipleDeletion: boolean; |
|||
} |
|||
|
|||
@Component({ |
|||
selector: 'tb-delete-timeseries-panel', |
|||
templateUrl: './delete-timeseries-panel.component.html', |
|||
styleUrls: ['./delete-timeseries-panel.component.scss'] |
|||
}) |
|||
export class DeleteTimeseriesPanelComponent implements OnInit { |
|||
|
|||
strategy: string = TimeseriesDeleteStrategy.DELETE_ALL_DATA_INCLUDING_KEY; |
|||
|
|||
result: string = null; |
|||
|
|||
startDateTime: Date; |
|||
|
|||
endDateTime: Date; |
|||
|
|||
rewriteLatestIfDeleted: boolean = false; |
|||
|
|||
strategiesTranslationsMap = timeseriesDeleteStrategyTranslations; |
|||
|
|||
multipleDeletionStrategies = [ |
|||
TimeseriesDeleteStrategy.DELETE_ALL_DATA_INCLUDING_KEY, |
|||
TimeseriesDeleteStrategy.DELETE_OLD_DATA_EXCEPT_LATEST_VALUE |
|||
]; |
|||
|
|||
constructor(@Inject(DELETE_TIMESERIES_PANEL_DATA) public data: DeleteTimeseriesPanelData, |
|||
public overlayRef: OverlayRef) { } |
|||
|
|||
ngOnInit(): void { |
|||
let today = new Date(); |
|||
this.startDateTime = new Date(today.getFullYear(), today.getMonth() - 1, today.getDate()); |
|||
this.endDateTime = today; |
|||
if (this.data.isMultipleDeletion) { |
|||
this.strategiesTranslationsMap = new Map(Array.from(this.strategiesTranslationsMap.entries()) |
|||
.filter(([strategy]) => { |
|||
return this.multipleDeletionStrategies.includes(strategy); |
|||
})) |
|||
} |
|||
} |
|||
|
|||
delete(): void { |
|||
this.result = this.strategy; |
|||
this.overlayRef.dispose(); |
|||
} |
|||
|
|||
cancel(): void { |
|||
this.overlayRef.dispose(); |
|||
} |
|||
|
|||
isPeriodStrategy(): boolean { |
|||
return this.strategy === TimeseriesDeleteStrategy.DELETE_DATA_FOR_TIME_PERIOD; |
|||
} |
|||
|
|||
onStartDateTimeChange(newStartDateTime: Date) { |
|||
const endDateTimeTs = this.endDateTime.getTime(); |
|||
if (newStartDateTime.getTime() >= endDateTimeTs) { |
|||
this.startDateTime = new Date(endDateTimeTs - MINUTE); |
|||
} else { |
|||
this.startDateTime = newStartDateTime; |
|||
} |
|||
} |
|||
|
|||
onEndDateTimeChange(newEndDateTime: Date) { |
|||
const startDateTimeTs = this.startDateTime.getTime(); |
|||
if (newEndDateTime.getTime() <= startDateTimeTs) { |
|||
this.endDateTime = new Date(startDateTimeTs + MINUTE); |
|||
} else { |
|||
this.endDateTime = newEndDateTime; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue