All files / src/app/shared/cms/components/cms-product-list-recommendations cms-product-list-recommendations.component.ts

100% Statements 9/9
87.5% Branches 7/8
100% Functions 3/3
100% Lines 9/9

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 321x 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) : []
        )
      );
  }
}