23 lines
989 B
TypeScript
23 lines
989 B
TypeScript
import { Injectable, inject } from '@angular/core';
|
|
import { CanMatchFn, Route, Router, UrlSegment } from '@angular/router';
|
|
import { NavigationService } from './services/navigation.service';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
class GuardService {
|
|
constructor(
|
|
private router: Router,
|
|
private navigationService: NavigationService,
|
|
) {}
|
|
|
|
trackerGuard(route: Route, segments: UrlSegment[]): boolean {
|
|
const preferredRoute = this.router.getCurrentNavigation()?.extractedUrl.queryParams?.mode;
|
|
const path = this.router.getCurrentNavigation()?.extractedUrl.root.children.primary.segments;
|
|
return (preferredRoute === 'status' || (preferredRoute !== 'details' && this.navigationService.isInitialLoad())) && window.innerWidth <= 767.98 && !(path.length === 2 && ['push', 'test'].includes(path[1].path));
|
|
}
|
|
}
|
|
|
|
export const TrackerGuard: CanMatchFn = (route: Route, segments: UrlSegment[]): boolean => {
|
|
return inject(GuardService).trackerGuard(route, segments);
|
|
}; |