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>
|
2024-10-10 15:09:59 +03:00
|
|
|
<mat-toolbar class="details-toolbar" color="primary" [style.height]="headerHeightPx+'px'">
|
|
|
|
|
<div class="mat-toolbar-tools flex flex-row justify-start items-center" style="height: 100%;">
|
|
|
|
|
<div class="mat-toolbar-tools tb-details-title-header flex flex-1 flex-col justify-start items-start" [class.!hidden]="showSearchPane">
|
|
|
|
|
<div class="tb-details-title flex flex-row justify-start items-center">
|
2021-03-04 17:11:55 +02:00
|
|
|
<ng-content select=".prefix-title-buttons"></ng-content>
|
2023-08-01 19:58:59 +03:00
|
|
|
<span class="tb-details-title-text">{{ headerTitle }}</span>
|
2021-02-25 15:37:20 +02:00
|
|
|
</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>
|
2024-10-10 15:09:59 +03:00
|
|
|
<div *ngIf="isShowSearch" [class.!hidden]="!showSearchPane" class="flex flex-row justify-start items-center" style="width: 100%;">
|
2023-02-17 19:24:01 +02:00
|
|
|
<button mat-icon-button (click)="onToggleSearch()">
|
2021-03-04 19:38:30 +02:00
|
|
|
<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()">
|
2021-03-04 19:38:30 +02:00
|
|
|
<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>
|
2024-10-10 15:09:59 +03:00
|
|
|
<section *ngIf="!isReadOnly" class="flex flex-row layout-wrap tb-header-buttons">
|
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"
|
2024-10-10 15:09:59 +03:00
|
|
|
[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
|
2023-11-23 17:56:04 +02:00
|
|
|
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>
|
2024-10-10 15:09:59 +03:00
|
|
|
<div class="mat-content flex-1" [style.background-color]="backgroundColor">
|
2019-08-12 19:34:23 +03:00
|
|
|
<ng-content></ng-content>
|
|
|
|
|
</div>
|