2019-08-09 19:13:18 +03:00
|
|
|
///
|
2024-01-09 10:46:16 +02:00
|
|
|
/// Copyright © 2016-2024 The Thingsboard Authors
|
2019-08-09 19:13:18 +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.
|
|
|
|
|
///
|
|
|
|
|
|
2024-08-19 15:19:57 +03:00
|
|
|
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';
|
2024-08-20 12:42:44 +03:00
|
|
|
import { BehaviorSubject, Subject, Subscription } from 'rxjs';
|
2019-09-03 19:31:16 +03:00
|
|
|
import { BreadCrumb, BreadCrumbConfig } from './breadcrumb';
|
2019-08-09 19:13:18 +03:00
|
|
|
import { ActivatedRoute, ActivatedRouteSnapshot, NavigationEnd, Router } from '@angular/router';
|
2024-08-20 12:42:44 +03:00
|
|
|
import { distinctUntilChanged, filter, first, map, switchMap } from 'rxjs/operators';
|
2019-09-03 19:31:16 +03:00
|
|
|
import { TranslateService } from '@ngx-translate/core';
|
2020-09-15 12:20:19 +03:00
|
|
|
import { guid } from '@core/utils';
|
2021-12-28 12:01:26 +02:00
|
|
|
import { BroadcastService } from '@core/services/broadcast.service';
|
2023-02-09 19:13:44 +02:00
|
|
|
import { ActiveComponentService } from '@core/services/active-component.service';
|
|
|
|
|
import { UtilsService } from '@core/services/utils.service';
|
2024-08-19 15:19:57 +03:00
|
|
|
import { MenuSection } from '@core/services/menu.models';
|
|
|
|
|
import { MenuService } from '@core/services/menu.service';
|
2019-08-09 19:13:18 +03:00
|
|
|
|
|
|
|
|
@Component({
|
2020-02-04 15:14:17 +02:00
|
|
|
selector: 'tb-breadcrumb',
|
2019-08-09 19:13:18 +03:00
|
|
|
templateUrl: './breadcrumb.component.html',
|
2021-05-26 15:17:03 +03:00
|
|
|
styleUrls: ['./breadcrumb.component.scss'],
|
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
2019-08-09 19:13:18 +03:00
|
|
|
})
|
|
|
|
|
export class BreadcrumbComponent implements OnInit, OnDestroy {
|
|
|
|
|
|
2019-09-19 20:10:52 +03:00
|
|
|
activeComponentValue: any;
|
2022-06-01 18:02:52 +03:00
|
|
|
updateBreadcrumbsSubscription: Subscription = null;
|
2019-09-19 20:10:52 +03:00
|
|
|
|
2023-02-09 19:13:44 +02:00
|
|
|
setActiveComponent(activeComponent: any) {
|
2022-06-01 18:02:52 +03:00
|
|
|
if (this.updateBreadcrumbsSubscription) {
|
|
|
|
|
this.updateBreadcrumbsSubscription.unsubscribe();
|
|
|
|
|
this.updateBreadcrumbsSubscription = null;
|
|
|
|
|
}
|
2019-09-19 20:10:52 +03:00
|
|
|
this.activeComponentValue = activeComponent;
|
2022-06-01 18:02:52 +03:00
|
|
|
if (this.activeComponentValue && this.activeComponentValue.updateBreadcrumbs) {
|
|
|
|
|
this.updateBreadcrumbsSubscription = this.activeComponentValue.updateBreadcrumbs.subscribe(() => {
|
2024-08-19 15:19:57 +03:00
|
|
|
this.menuService.availableMenuSections().pipe(first()).subscribe((sections) => {
|
|
|
|
|
this.breadcrumbs$.next(this.buildBreadCrumbs(this.activatedRoute.snapshot, sections));
|
|
|
|
|
});
|
2022-06-01 18:02:52 +03:00
|
|
|
});
|
|
|
|
|
}
|
2019-09-19 20:10:52 +03:00
|
|
|
}
|
|
|
|
|
|
2023-02-09 19:13:44 +02:00
|
|
|
breadcrumbs$: Subject<Array<BreadCrumb>> = new BehaviorSubject<Array<BreadCrumb>>([]);
|
2019-08-09 19:13:18 +03:00
|
|
|
|
|
|
|
|
routerEventsSubscription = this.router.events.pipe(
|
|
|
|
|
filter((event) => event instanceof NavigationEnd ),
|
|
|
|
|
distinctUntilChanged(),
|
2024-08-20 12:42:44 +03:00
|
|
|
switchMap(() => this.menuService.availableMenuSections().pipe(first())),
|
2024-08-19 15:19:57 +03:00
|
|
|
map( (sections) => this.buildBreadCrumbs(this.activatedRoute.snapshot, sections) )
|
2019-08-09 19:13:18 +03:00
|
|
|
).subscribe(breadcrumns => this.breadcrumbs$.next(breadcrumns) );
|
|
|
|
|
|
2023-02-09 19:13:44 +02:00
|
|
|
activeComponentSubscription = this.activeComponentService.onActiveComponentChanged().subscribe(comp => this.setActiveComponent(comp));
|
|
|
|
|
|
2019-08-09 19:13:18 +03:00
|
|
|
lastBreadcrumb$ = this.breadcrumbs$.pipe(
|
|
|
|
|
map( breadcrumbs => breadcrumbs[breadcrumbs.length - 1])
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
constructor(private router: Router,
|
2019-09-03 19:31:16 +03:00
|
|
|
private activatedRoute: ActivatedRoute,
|
2021-12-28 12:01:26 +02:00
|
|
|
private broadcast: BroadcastService,
|
2023-02-09 19:13:44 +02:00
|
|
|
private activeComponentService: ActiveComponentService,
|
2021-12-28 12:01:26 +02:00
|
|
|
private cd: ChangeDetectorRef,
|
2023-02-09 19:13:44 +02:00
|
|
|
private translate: TranslateService,
|
2024-08-19 15:19:57 +03:00
|
|
|
private menuService: MenuService,
|
2023-02-09 19:13:44 +02:00
|
|
|
public utils: UtilsService) {
|
2019-08-09 19:13:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
2021-12-28 12:01:26 +02:00
|
|
|
this.broadcast.on('updateBreadcrumb', () => {
|
|
|
|
|
this.cd.markForCheck();
|
|
|
|
|
});
|
2023-02-09 19:13:44 +02:00
|
|
|
this.setActiveComponent(this.activeComponentService.getCurrentActiveComponent());
|
2019-08-09 19:13:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnDestroy(): void {
|
|
|
|
|
if (this.routerEventsSubscription) {
|
|
|
|
|
this.routerEventsSubscription.unsubscribe();
|
|
|
|
|
}
|
2023-02-09 19:13:44 +02:00
|
|
|
if (this.activeComponentSubscription) {
|
|
|
|
|
this.activeComponentSubscription.unsubscribe();
|
|
|
|
|
}
|
2019-08-09 19:13:18 +03:00
|
|
|
}
|
|
|
|
|
|
2020-04-13 13:07:45 +03:00
|
|
|
private lastChild(route: ActivatedRouteSnapshot) {
|
|
|
|
|
let child = route;
|
|
|
|
|
while (child.firstChild !== null) {
|
|
|
|
|
child = child.firstChild;
|
|
|
|
|
}
|
|
|
|
|
return child;
|
|
|
|
|
}
|
2019-08-09 19:13:18 +03:00
|
|
|
|
2024-08-19 15:19:57 +03:00
|
|
|
buildBreadCrumbs(route: ActivatedRouteSnapshot, availableMenuSections: MenuSection[],
|
|
|
|
|
breadcrumbs: Array<BreadCrumb> = [],
|
2020-04-13 13:07:45 +03:00
|
|
|
lastChild?: ActivatedRouteSnapshot): Array<BreadCrumb> {
|
|
|
|
|
if (!lastChild) {
|
|
|
|
|
lastChild = this.lastChild(route);
|
|
|
|
|
}
|
2019-08-09 19:13:18 +03:00
|
|
|
let newBreadcrumbs = breadcrumbs;
|
|
|
|
|
if (route.routeConfig && route.routeConfig.data) {
|
2020-04-07 17:06:04 +03:00
|
|
|
const breadcrumbConfig = route.routeConfig.data.breadcrumb as BreadCrumbConfig<any>;
|
2019-09-03 19:31:16 +03:00
|
|
|
if (breadcrumbConfig && !breadcrumbConfig.skip) {
|
2024-08-19 15:19:57 +03:00
|
|
|
let labelFunction: () => string;
|
|
|
|
|
const section: MenuSection = breadcrumbConfig.menuId ?
|
|
|
|
|
availableMenuSections.find(menu => menu.id === breadcrumbConfig.menuId) : null;
|
|
|
|
|
const label = section?.name || breadcrumbConfig.label || 'home.home';
|
2019-09-03 19:31:16 +03:00
|
|
|
if (breadcrumbConfig.labelFunction) {
|
2023-02-17 12:39:08 +02:00
|
|
|
labelFunction = () => this.activeComponentValue ?
|
2024-08-19 15:19:57 +03:00
|
|
|
breadcrumbConfig.labelFunction(route, this.translate, this.activeComponentValue, lastChild.data) : label;
|
2019-09-03 19:31:16 +03:00
|
|
|
}
|
2024-08-19 15:19:57 +03:00
|
|
|
const icon = section?.icon || breadcrumbConfig.icon || 'home';
|
2019-09-19 20:10:52 +03:00
|
|
|
const link = [ route.pathFromRoot.map(v => v.url.map(segment => segment.toString()).join('/')).join('/') ];
|
2019-08-09 19:13:18 +03:00
|
|
|
const breadcrumb = {
|
2020-09-15 12:20:19 +03:00
|
|
|
id: guid(),
|
2019-08-09 19:13:18 +03:00
|
|
|
label,
|
2019-09-19 20:10:52 +03:00
|
|
|
labelFunction,
|
2019-08-09 19:13:18 +03:00
|
|
|
icon,
|
|
|
|
|
link,
|
2020-04-23 12:01:58 +03:00
|
|
|
queryParams: null
|
2019-08-09 19:13:18 +03:00
|
|
|
};
|
|
|
|
|
newBreadcrumbs = [...breadcrumbs, breadcrumb];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (route.firstChild) {
|
2024-08-19 15:19:57 +03:00
|
|
|
return this.buildBreadCrumbs(route.firstChild, availableMenuSections, newBreadcrumbs, lastChild);
|
2019-08-09 19:13:18 +03:00
|
|
|
}
|
|
|
|
|
return newBreadcrumbs;
|
|
|
|
|
}
|
2020-09-15 11:23:03 +03:00
|
|
|
|
2024-08-19 15:19:57 +03:00
|
|
|
trackByBreadcrumbs(_index: number, breadcrumb: BreadCrumb){
|
2020-09-15 12:20:19 +03:00
|
|
|
return breadcrumb.id;
|
2020-09-15 11:23:03 +03:00
|
|
|
}
|
2019-08-09 19:13:18 +03:00
|
|
|
}
|