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 | 9x 9x 9x 9x 9x 9x 9x 5x 5x 5x 5x 5x 5x | import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { map } from 'rxjs/operators'; import { AccountFacade } from 'ish-core/facades/account.facade'; import { BasketTotal } from 'ish-core/models/basket-total/basket-total.model'; import { PriceItemHelper } from 'ish-core/models/price-item/price-item.helper'; import { PriceHelper } from 'ish-core/models/price/price.model'; /** * The Cost Summary Component displays a detailed summary of basket or order costs, respectively. * * @example * <ish-basket-cost-summary * [totals]="basket.totals" * ></ish-basket-cost-summary> */ @Component({ selector: 'ish-basket-cost-summary', templateUrl: './basket-cost-summary.component.html', changeDetection: ChangeDetectionStrategy.OnPush, }) export class BasketCostSummaryComponent implements OnInit { @Input({ required: true }) totals: BasketTotal; taxTranslation$: Observable<string>; invert = PriceHelper.invert; constructor(private accountFacade: AccountFacade) {} ngOnInit() { this.taxTranslation$ = this.accountFacade.userPriceDisplayType$.pipe( map(type => (type === 'net' ? 'checkout.tax.text' : 'checkout.tax.TaxesLabel.TotalOrderVat')) ); } get hasPaymentCostsTotal(): boolean { const paymentCosts = PriceItemHelper.selectType(this.totals?.paymentCostsTotal, 'gross'); return !!paymentCosts && !!paymentCosts.value; } } |