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 | 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x | import { ChangeDetectionStrategy, Component, Input, OnChanges } from '@angular/core';
import { Observable, combineLatest, of } from 'rxjs';
import { map } from 'rxjs/operators';
import { ShoppingFacade } from 'ish-core/facades/shopping.facade';
import { ProductLinks } from 'ish-core/models/product-links/product-links.model';
import { ProductCompletenessLevel } from 'ish-core/models/product/product.helper';
/**
* The Product Link List Component
*
* Displays the products which are assigned to a specific type as an list.
* It uses the {@link ProductItemComponent} for the rendering of products.
*
* @example
* <ish-product-links-list [links]="links.upselling" [productLinkTitle]="'product.product_links.upselling.title' | translate"></ish-product-links-list>
*/
@Component({
selector: 'ish-product-links-list',
templateUrl: './product-links-list.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class ProductLinksListComponent implements OnChanges {
/**
* list of products which are assigned to the specific product link type
*/
@Input({ required: true }) links: ProductLinks;
/**
* title that should displayed for the specific product link type
*/
@Input({ required: true }) productLinkTitle: string;
/**
* display only available products if set to 'true'
*/
@Input() displayOnlyAvailableProducts = false;
productSKUs$: Observable<string[]>;
constructor(private shoppingFacade: ShoppingFacade) {}
ngOnChanges() {
this.productSKUs$ = this.displayOnlyAvailableProducts
? combineLatest(
this.links.products.map(sku => this.shoppingFacade.product$(sku, ProductCompletenessLevel.List))
).pipe(map(products => products.filter(p => p.available).map(p => p.sku)))
: of(this.links.products);
}
}
|