( event: NavigationEvent ) : void => {

				if ( event instanceof NavigationEnd ) {

					this.activated.home = this.router.isActive( "/", true );
					this.activated.p1c1 = this.router.isActive( "/parent/p1/child/p1-c1", true );
					this.activated.p1c2 = this.router.isActive( "/parent/p1/child/p1-c2", true );
					this.activated.p2c1 = this.router.isActive( "/parent/p2/child/p2-c1", true );
					this.activated.p2c2 = this.router.isActive( "/parent/p2/child/p2-c2", true );

				}

			}
  public ngOnInit(): void {
    const active = this.router.isActive(this.route, true);

    if (active) {
      this.showActive();
    }
  }
 public isLoginPage() {
   return this._router.isActive('login', true) || this._router.isActive('shareLogin', true);
 }