You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/eclair/ecl-root.component.ts

36 lines
965 B
TypeScript

import { Component } from '@angular/core';
import { Event, NavigationCancel, NavigationEnd, NavigationError, NavigationStart, Router, RouterEvent } from '@angular/router';
import { routeAnimation } from '../shared/animation/route-animation';
@Component({
selector: 'rtl-ecl-root',
templateUrl: './ecl-root.component.html',
styleUrls: ['./ecl-root.component.scss'],
animations: [routeAnimation]
})
export class ECLRootComponent {
loading = false;
constructor(private router: Router) {
this.router.events.subscribe((event: Event | RouterEvent) => {
switch (true) {
case event instanceof NavigationStart: {
this.loading = true;
break;
}
case event instanceof NavigationEnd:
case event instanceof NavigationCancel:
case event instanceof NavigationError: {
this.loading = false;
break;
}
default: {
break;
}
}
});
}
}