File

src/app/providers/guards/app-state.guard.ts

Index

Methods

Constructor

constructor(router: Router, app: AppStateStore)
Parameters :
Name Type Optional
router Router No
app AppStateStore No

Methods

canActivate
canActivate()
Returns : boolean
import { Injectable } from '@angular/core';
import { Router, CanActivate } from '@angular/router';
import { AppStateStore } from '../stores/app-state.store';

@Injectable()
export class AppStateGuard implements CanActivate {
  constructor(private router: Router, private app: AppStateStore) {}

  canActivate() {
    if (this.app.isValid) {
      console.log('Passed app state guard');
      return true;
    }
    console.log('Failed app state guard');
    this.router.navigate(['/start']);
    return false;
  }
}

results matching ""

    No results matching ""