thingsboard/ui-ngx/src/app/modules/home/components/details-panel.component.html

71 lines
3.3 KiB
HTML
Raw Normal View History

2019-08-12 19:34:23 +03:00
<!--
2024-01-09 10:46:16 +02:00
Copyright © 2016-2024 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.
-->
<header>
<mat-toolbar class="details-toolbar" color="primary" [style.height]="headerHeightPx+'px'">
<div class="mat-toolbar-tools flex flex-row items-center justify-start" style="height: 100%;">
<div class="mat-toolbar-tools tb-details-title-header flex flex-1 flex-col items-start justify-start" [class.!hidden]="showSearchPane">
<div class="tb-details-title flex flex-row items-center justify-start">
2021-03-04 17:11:55 +02:00
<ng-content select=".prefix-title-buttons"></ng-content>
<span class="tb-details-title-text">{{ headerTitle }}</span>
</div>
2019-08-12 19:34:23 +03:00
<span class="tb-details-subtitle">{{ headerSubtitle }}</span>
<span style="width: 100%;">
<ng-content select=".header-pane"></ng-content>
</span>
</div>
<div *ngIf="isShowSearch" [class.!hidden]="!showSearchPane" class="flex flex-row items-center justify-start" style="width: 100%;">
2023-02-17 19:24:01 +02:00
<button mat-icon-button (click)="onToggleSearch()">
<mat-icon class="material-icons">arrow_back</mat-icon>
</button>
<div style="width: 100%; margin: 0 20px">
<ng-content select=".search-pane"></ng-content>
</div>
</div>
2023-02-17 19:24:01 +02:00
<button mat-icon-button *ngIf="isShowSearch && !showSearchPane" (click)="onToggleSearch()">
<mat-icon class="material-icons">search</mat-icon>
</button>
2019-08-12 19:34:23 +03:00
<ng-content select=".details-buttons"></ng-content>
2024-05-09 18:56:31 +03:00
<button *ngIf="showCloseDetails" mat-icon-button (click)="onCloseDetails()">
2019-08-12 19:34:23 +03:00
<mat-icon class="material-icons">close</mat-icon>
</button>
</div>
<section *ngIf="!isReadOnly" class="layout-wrap tb-header-buttons flex flex-row">
2019-09-25 19:37:29 +03:00
<button [disabled]="(isLoading$ | async) || theForm?.invalid || !theForm?.dirty"
2019-08-12 19:34:23 +03:00
mat-fab
matTooltip="{{ 'action.apply-changes' | translate }}"
matTooltipPosition="above"
color="accent" class="tb-btn-header mat-fab-bottom-right"
[class.tb-hide]="!isEdit"
2019-08-12 19:34:23 +03:00
(click)="onApplyDetails()">
<mat-icon class="material-icons">done</mat-icon>
</button>
2019-09-25 19:37:29 +03:00
<button [disabled]="(isLoading$ | async) || (isAlwaysEdit && !theForm?.dirty)"
2019-08-12 19:34:23 +03:00
mat-fab
matTooltip="{{ (isAlwaysEdit ? 'action.decline-changes' : (isEdit ? 'action.decline-changes' : 'details.toggle-edit-mode')) | translate }}"
2019-08-12 19:34:23 +03:00
matTooltipPosition="above"
color="accent" class="tb-btn-header mat-fab-bottom-right"
(click)="onToggleDetailsEditMode()">
<mat-icon class="material-icons">{{isEdit ? 'close' : 'edit'}}</mat-icon>
</button>
</section>
</mat-toolbar>
</header>
<div class="mat-content flex-1" [style.background-color]="backgroundColor">
2019-08-12 19:34:23 +03:00
<ng-content></ng-content>
</div>