src/app/providers/guards/duplicate-payment.guard.ts
Properties |
Methods |
constructor(paymentService: PaymentService, app: AppStateStore, router: Router)
|
||||||||||||
Parameters :
|
canActivate |
canActivate()
|
Returns :
any
|
import { Injectable } from '@angular/core';
import { CanActivate, Router } from '@angular/router';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators/map';
import { PaymentService } from '../services';
import { AppStateStore } from '../stores/app-state.store';
@Injectable()
export class DuplicatePaymentGuard implements CanActivate {
errorStore: any;
setDeliveryDate$: Observable<any>;
earliestStandardElectronicScheduleForDate: Observable<string>;
constructor(
private paymentService: PaymentService,
private app: AppStateStore,
private router: Router
) {}
canActivate() {
return this.paymentService.findDuplicate().pipe(
map((duplicate) => {
if (this.app.acknowledgeDuplicate) {
console.log('Dupe guard passed with acknowledgement');
return true;
}
if (duplicate) {
console.log('Dupe guard failed: a duplicated payment was found');
this.router.navigate(['/duplicate-payment-alert']);
return false;
}
console.log('Dupe guard passed: no duplicated payments were found');
return true;
})
);
}
}