43 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
 | 
						|
    Copyright © 2016-2024 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 class="tb-breadcrumb" fxLayout="row">
 | 
						|
  <h1 fxFlex fxHide.gt-sm *ngIf="lastBreadcrumb$ | async; let breadcrumb">
 | 
						|
    {{ breadcrumb.labelFunction ? breadcrumb.labelFunction() : (breadcrumb.customTranslate ? (breadcrumb.label | customTranslate) : (breadcrumb.label | translate)) }}
 | 
						|
  </h1>
 | 
						|
  <span fxHide.lt-md fxLayout="row" *ngFor="let breadcrumb of breadcrumbs$ | async; trackBy: trackByBreadcrumbs; last as isLast;" [ngSwitch]="isLast">
 | 
						|
	    <a *ngSwitchCase="false" [routerLink]="breadcrumb.link" [queryParams]="breadcrumb.queryParams">
 | 
						|
        <ng-container
 | 
						|
          *ngTemplateOutlet="breadcrumbWithIcon;context:{breadcrumb: breadcrumb}">
 | 
						|
        </ng-container>
 | 
						|
	    </a>
 | 
						|
	    <span *ngSwitchCase="true">
 | 
						|
        <ng-container
 | 
						|
          *ngTemplateOutlet="breadcrumbWithIcon;context:{breadcrumb: breadcrumb}">
 | 
						|
        </ng-container>
 | 
						|
      </span>
 | 
						|
	    <span class="divider" [fxHide]="isLast"> > </span>
 | 
						|
	</span>
 | 
						|
</div>
 | 
						|
<ng-template #breadcrumbWithIcon let-breadcrumb="breadcrumb">
 | 
						|
  <img *ngIf="breadcrumb.iconUrl" [src]="breadcrumb.iconUrl"/>
 | 
						|
  <tb-icon *ngIf="!breadcrumb.iconUrl">
 | 
						|
    {{ breadcrumb.icon }}
 | 
						|
  </tb-icon>
 | 
						|
  {{ breadcrumb.labelFunction ? breadcrumb.labelFunction() : (breadcrumb.customTranslate ? (breadcrumb.label | customTranslate) : (breadcrumb.label | translate)) }}
 | 
						|
</ng-template>
 |