mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
31 lines
1.2 KiB
TypeScript
31 lines
1.2 KiB
TypeScript
import { Component } from "@angular/core";
|
|
import { ActivatedRoute, NavigationEnd, PRIMARY_OUTLET, Router } from "@angular/router";
|
|
|
|
@Component({
|
|
selector: "my-page-header",
|
|
templateUrl: "./page-header.component.html",
|
|
styleUrls: ["./page-header.component.scss"],
|
|
})
|
|
export class PageHeaderComponent {
|
|
|
|
public pageName: string;
|
|
|
|
constructor(private router: Router, private activatedRoute: ActivatedRoute) {
|
|
this.router.events.filter(ev => ev instanceof NavigationEnd).subscribe((ev: NavigationEnd) => {
|
|
let currentRoute = this.activatedRoute.root;
|
|
let url = "";
|
|
|
|
while (currentRoute.children.length > 0) {
|
|
let children = currentRoute.children;
|
|
children.forEach(route => {
|
|
currentRoute = route;
|
|
url += "/" + route.snapshot.url.map(s => s.path).join("/");
|
|
if (route.outlet !== PRIMARY_OUTLET) return;
|
|
if (!route.routeConfig || !route.routeConfig.data) return;
|
|
if (url === ev.urlAfterRedirects.split("?")[0]) this.pageName = route.snapshot.data.name;
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|