Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | import { ChangeDetectionStrategy, Component, DestroyRef, OnInit, inject } from '@angular/core'; import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; import { Observable } from 'rxjs'; import { filter, first, map, shareReplay, withLatestFrom } from 'rxjs/operators'; import { CheckoutFacade } from 'ish-core/facades/checkout.facade'; import { BasketView } from 'ish-core/models/basket/basket.model'; import { CheckoutStepType } from 'ish-core/models/checkout/checkout-step.type'; import { HttpError } from 'ish-core/models/http-error/http-error.model'; import { PaymentInstrument } from 'ish-core/models/payment-instrument/payment-instrument.model'; import { PaymentMethod } from 'ish-core/models/payment-method/payment-method.model'; @Component({ selector: 'ish-checkout-payment-page', templateUrl: './checkout-payment-page.component.html', changeDetection: ChangeDetectionStrategy.OnPush, }) export class CheckoutPaymentPageComponent implements OnInit { basket$: Observable<BasketView>; basketError$: Observable<HttpError>; loading$: Observable<boolean>; paymentMethods$: Observable<PaymentMethod[]>; priceType$: Observable<'gross' | 'net'>; private destroyRef = inject(DestroyRef); constructor(private checkoutFacade: CheckoutFacade) {} ngOnInit() { this.basket$ = this.checkoutFacade.basket$; this.basketError$ = this.checkoutFacade.basketError$; this.loading$ = this.checkoutFacade.basketLoading$; this.priceType$ = this.checkoutFacade.priceType$; this.paymentMethods$ = this.checkoutFacade.eligiblePaymentMethods$().pipe( withLatestFrom(this.basket$), map(([pmList, basket]) => pmList?.filter( pm => !pm.capabilities || !pm.capabilities.includes('FastCheckout') || (pm.capabilities && pm.capabilities.includes('FastCheckout') && basket?.payment?.capabilities?.includes('FastCheckout') && basket.payment.paymentInstrument.id === pm.id) ) ), shareReplay(1) ); // if there is only one eligible payment method without parameters, assign it automatically to the basket this.paymentMethods$ .pipe( filter(methods => methods?.length === 1), map(methods => methods[0]), filter(pm => !pm.parameters), first(), withLatestFrom(this.basket$), filter(([, basket]) => !basket?.payment), takeUntilDestroyed(this.destroyRef) ) .subscribe(([pm]) => this.updateBasketPaymentMethod(pm.id)); } updateBasketPaymentMethod(paymentName: string) { this.checkoutFacade.setBasketPayment(paymentName); } createPaymentInstrument(body: { paymentInstrument: PaymentInstrument; saveForLater: boolean }) { Iif (!body?.paymentInstrument) { return; } this.checkoutFacade.createBasketPayment(body.paymentInstrument, body.saveForLater); } deletePaymentInstrument(instrument: PaymentInstrument) { this.checkoutFacade.deleteBasketPayment(instrument); } /** * Validates the basket and jumps to the next checkout step (Review) */ nextStep() { this.checkoutFacade.continue(CheckoutStepType.Review); } } |