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 | 1x 1x 1x 1x 1x | import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { CheckoutFacade } from 'ish-core/facades/checkout.facade'; import { ShippingMethod } from 'ish-core/models/shipping-method/shipping-method.model'; @Component({ selector: 'ish-shipping-info', templateUrl: './shipping-info.component.html', changeDetection: ChangeDetectionStrategy.OnPush, }) export class ShippingInfoComponent implements OnInit { @Input({ required: true }) shippingMethodId: string; shippingMethod$: Observable<ShippingMethod>; constructor(private checkoutFacade: CheckoutFacade) {} ngOnInit(): void { Iif (this.shippingMethodId) { this.shippingMethod$ = this.checkoutFacade.shippingMethod$(this.shippingMethodId); } } } |