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 | 1x 1x 1x 1x 1x 6x 5x 5x 4x | import { ChangeDetectionStrategy, Component, Input, OnChanges } from '@angular/core';
import { Observable, map } from 'rxjs';
import { ShoppingFacade } from 'ish-core/facades/shopping.facade';
import { ContentPageletView } from 'ish-core/models/content-view/content-view.model';
import { CMSComponent } from 'ish-shared/cms/models/cms-component/cms-component.model';
@Component({
selector: 'ish-cms-product-list-recommendations',
templateUrl: './cms-product-list-recommendations.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class CMSProductListRecommendationsComponent implements CMSComponent, OnChanges {
@Input({ required: true }) pagelet: ContentPageletView;
productSKUs$: Observable<string[]>;
constructor(private shoppingFacade: ShoppingFacade) {}
ngOnChanges() {
const maxNumberOfProducts = this.pagelet.numberParam('MaxNumberOfProducts') || undefined;
this.productSKUs$ = this.shoppingFacade
.productRecommendations$({ strategy: this.pagelet.stringParam('Strategy'), maxCount: maxNumberOfProducts })
.pipe(
map(recommendation =>
recommendation?.productSKUs ? recommendation?.productSKUs.slice(0, maxNumberOfProducts) : []
)
);
}
}
|