2017-12-15 02:33:32 -05:00
|
|
|
import { Component } from "@angular/core";
|
|
|
|
import { ActivatedRoute, NavigationEnd, PRIMARY_OUTLET, Router } from "@angular/router";
|
2020-10-23 07:30:20 -04:00
|
|
|
import { TranslateService } from "@ngx-translate/core";
|
2021-08-11 17:41:29 -04:00
|
|
|
import { filter } from "rxjs/operators";
|
2017-12-14 23:25:15 -05:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: "my-page-header",
|
|
|
|
templateUrl: "./page-header.component.html",
|
|
|
|
styleUrls: ["./page-header.component.scss"],
|
|
|
|
})
|
|
|
|
export class PageHeaderComponent {
|
2017-12-15 02:33:32 -05:00
|
|
|
|
|
|
|
public pageName: string;
|
|
|
|
|
2020-10-23 07:30:20 -04:00
|
|
|
constructor(private router: Router, private activatedRoute: ActivatedRoute, public translate: TranslateService) {
|
|
|
|
this.translate = translate;
|
2021-08-11 17:41:29 -04:00
|
|
|
this.router.events.pipe(filter(ev => ev instanceof NavigationEnd)).subscribe((ev) => {
|
2017-12-15 02:33:32 -05:00
|
|
|
let currentRoute = this.activatedRoute.root;
|
|
|
|
let url = "";
|
2021-08-11 17:41:29 -04:00
|
|
|
const event = ev as NavigationEnd;
|
2017-12-15 02:33:32 -05:00
|
|
|
|
|
|
|
while (currentRoute.children.length > 0) {
|
2021-08-11 17:41:29 -04:00
|
|
|
const children = currentRoute.children;
|
2017-12-15 02:33:32 -05:00
|
|
|
children.forEach(route => {
|
2020-12-28 23:05:45 -05:00
|
|
|
if (route.snapshot.data['breadcrumb']) {
|
|
|
|
this.translate.get(route.snapshot.data['breadcrumb']).subscribe((res: string) => {route.snapshot.data['breadcrumb'] = res});
|
|
|
|
}
|
2017-12-15 02:33:32 -05:00
|
|
|
currentRoute = route;
|
|
|
|
url += "/" + route.snapshot.url.map(s => s.path).join("/");
|
|
|
|
if (route.outlet !== PRIMARY_OUTLET) return;
|
|
|
|
if (!route.routeConfig || !route.routeConfig.data) return;
|
2021-08-11 17:41:29 -04:00
|
|
|
if (url === event.urlAfterRedirects.split("?")[0]) this.pageName = route.snapshot.data.name;
|
2017-12-15 02:33:32 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-12-14 23:25:15 -05:00
|
|
|
}
|