112 lines
5.7 KiB
HTML
112 lines
5.7 KiB
HTML
|
|
<!--
|
||
|
|
|
||
|
|
Copyright © 2016-2019 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 fxFlex fxLayout="column" class="tb-progress-cover" fxLayoutAlign="center center"
|
||
|
|
[ngStyle]="options.dashboardStyle"
|
||
|
|
[fxShow]="(loading() | async) && !options.isEdit">
|
||
|
|
<mat-spinner color="warn" mode="indeterminate" diameter="100">
|
||
|
|
</mat-spinner>
|
||
|
|
</div>
|
||
|
|
<div id="gridster-parent"
|
||
|
|
fxFlex class="tb-dashboard-content layout-wrap" [ngStyle]="{overflowY: isAutofillHeight() ? 'hidden' : 'auto'}"
|
||
|
|
(contextmenu)="openDashboardContextMenu($event)">
|
||
|
|
<div [ngClass]="options.dashboardClass" id="gridster-background" style="height: auto; min-height: 100%; display: inline;">
|
||
|
|
<gridster #gridster id="gridster-child" [options]="gridsterOpts">
|
||
|
|
<gridster-item [item]="widget" class="tb-noselect" *ngFor="let widget of widgets$ | async">
|
||
|
|
<div tb-fullscreen [fullscreen]="widget.isFullscreen" (fullscreenChanged)="onWidgetFullscreenChanged($event, widget)"
|
||
|
|
fxLayout="column"
|
||
|
|
class="tb-widget"
|
||
|
|
[ngClass]="{
|
||
|
|
'tb-highlighted': isHighlighted(widget),
|
||
|
|
'tb-not-highlighted': isNotHighlighted(widget),
|
||
|
|
'mat-elevation-z4': widget.dropShadow,
|
||
|
|
'tb-has-timewindow': widget.hasTimewindow
|
||
|
|
}"
|
||
|
|
[ngStyle]="widget.style"
|
||
|
|
(mousedown)="widgetMouseDown($event, widget)"
|
||
|
|
(click)="widgetClicked($event, widget)"
|
||
|
|
(contextmenu)="openWidgetContextMenu($event, widget)">
|
||
|
|
<div fxLayout="row" fxLayoutAlign="space-between start">
|
||
|
|
<div class="tb-widget-title" fxLayout="column" fxLayoutAlign="center start" [fxShow]="widget.showWidgetTitlePanel">
|
||
|
|
<div *ngIf="widget.hasWidgetTitleTemplate">
|
||
|
|
TODO:
|
||
|
|
</div>
|
||
|
|
<span [fxShow]="widget.showTitle" [ngStyle]="widget.titleStyle" class="mat-subheading-2 title">
|
||
|
|
<mat-icon *ngIf="widget.showTitleIcon" [ngStyle]="widget.titleIconStyle">{{widget.titleIcon}}</mat-icon>
|
||
|
|
{{widget.title}}
|
||
|
|
</span>
|
||
|
|
<tb-timewindow *ngIf="widget.hasTimewindow" aggregation="{{widget.hasAggregation}}" [ngModel]="widget.widget.config.timewindow"></tb-timewindow>
|
||
|
|
</div>
|
||
|
|
<div [fxShow]="widget.showWidgetActions"
|
||
|
|
class="tb-widget-actions"
|
||
|
|
[ngClass]="{'tb-widget-actions-absolute': !(widget.showWidgetTitlePanel&&(widget.hasWidgetTitleTemplate||widget.showTitle||widget.hasAggregation))}"
|
||
|
|
fxLayout="row"
|
||
|
|
fxLayoutAlign="start center"
|
||
|
|
(mousedown)="$event.stopPropagation()">
|
||
|
|
<button mat-button mat-icon-button *ngFor="let action of widget.customHeaderActions"
|
||
|
|
[fxShow]="!options.isEdit"
|
||
|
|
(click)="action.onAction($event)"
|
||
|
|
matTooltip="{{ action.displayName }}"
|
||
|
|
matTooltipPosition="above">
|
||
|
|
<mat-icon>{{ action.icon }}</mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button *ngFor="let action of widget.widgetActions"
|
||
|
|
[fxShow]="!options.isEdit && action.show"
|
||
|
|
(click)="action.onAction($event)"
|
||
|
|
matTooltip="{{ action.name | translate }}"
|
||
|
|
matTooltipPosition="above">
|
||
|
|
<mat-icon>{{ action.icon }}</mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button
|
||
|
|
[fxShow]="!options.isEdit && widget.enableFullscreen"
|
||
|
|
(click)="widget.isFullscreen = !widget.isFullscreen"
|
||
|
|
matTooltip="{{(widget.isFullscreen ? 'fullscreen.exit' : 'fullscreen.expand') | translate}}"
|
||
|
|
matTooltipPosition="above">
|
||
|
|
<mat-icon>{{ widget.isFullscreen ? 'fullscreen_exit' : 'fullscreen' }}</mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button
|
||
|
|
[fxShow]="options.isEditActionEnabled && !widget.isFullscreen"
|
||
|
|
(click)="editWidget($event, widget)"
|
||
|
|
matTooltip="{{ 'widget.edit' | translate }}"
|
||
|
|
matTooltipPosition="above">
|
||
|
|
<mat-icon>edit</mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button
|
||
|
|
[fxShow]="options.isExportActionEnabled && !widget.isFullscreen"
|
||
|
|
(click)="exportWidget($event, widget)"
|
||
|
|
matTooltip="{{ 'widget.export' | translate }}"
|
||
|
|
matTooltipPosition="above">
|
||
|
|
<mat-icon>file_download</mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button
|
||
|
|
[fxShow]="options.isRemoveActionEnabled && !widget.isFullscreen"
|
||
|
|
(click)="removeWidget($event, widget)"
|
||
|
|
matTooltip="{{ 'widget.remove' | translate }}"
|
||
|
|
matTooltipPosition="above">
|
||
|
|
<mat-icon>close</mat-icon>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div fxFlex fxLayout="column" class="tb-widget-content">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</gridster-item>
|
||
|
|
</gridster>
|
||
|
|
</div>
|
||
|
|
</div>
|