libs/cart/routing/src/guards/shipping-method/shipping-method.guard.ts
import {
Injectable,
Inject,
} from '@angular/core';
import { Router } from '@angular/router';
import { Observable } from 'rxjs';
import {
tap,
take,
} from 'rxjs/operators';
import { DaffCartFacade } from '@daffodil/cart/state';
import { DaffCartShippingMethodGuardRedirectUrl } from './shipping-method-guard-redirect.token';
/**
* A routing guard that will redirect to a given url if the shipping method on the cart is not defined.
* The url is `/` by default, but can be overridden with the DaffCartShippingMethodGuardRedirectUrl injection token.
* The guard will not wait until the cart has been resolved before performing the check and emitting.
* Ensure that the cart is resolved prior to running this guard with the {@link DaffResolvedCartGuard}.
*/
@Injectable({
providedIn: 'root',
})
export class DaffShippingMethodGuard {
constructor(
private facade: DaffCartFacade,
private router: Router,
@Inject(DaffCartShippingMethodGuardRedirectUrl) private redirectUrl: string,
) {}
canActivate(): Observable<boolean> {
return this.facade.hasShippingMethod$.pipe(
take(1),
tap(hasShippingMethod => {
if (!hasShippingMethod) {
this.router.navigateByUrl(this.redirectUrl);
}
}),
);
}
}