All files / src/app/core/store/content/parameters parameters.effects.ts

100% Statements 16/16
75% Branches 6/8
100% Functions 6/6
100% Lines 15/15

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 369x 9x 9x     9x 9x 9x   9x             9x 3x   3x 3x       3x 3x 3x 3x                
import { Injectable } from '@angular/core';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { mergeMap } from 'rxjs/operators';
 
import { Product } from 'ish-core/models/product/product.model';
import { ProductsService } from 'ish-core/services/products/products.service';
import { loadProductSuccess } from 'ish-core/store/shopping/products';
import { mapErrorToAction, mapToPayload } from 'ish-core/utils/operators';
 
import {
  loadParametersProductListFilter,
  loadParametersProductListFilterFail,
  loadParametersProductListFilterSuccess,
} from './parameters.actions';
 
@Injectable()
export class ParametersEffects {
  constructor(private actions$: Actions, private productsService: ProductsService) {}
 
  loadParametersProductListFilter$ = createEffect(() =>
    this.actions$.pipe(
      ofType(loadParametersProductListFilter),
      mapToPayload(),
      mergeMap(({ id, searchParameter, amount }) =>
        this.productsService.getFilteredProducts(searchParameter, amount).pipe(
          mergeMap(({ products }) => [
            ...products.map((product: Product) => loadProductSuccess({ product })),
            loadParametersProductListFilterSuccess({ id, productList: products.map(p => p.sku) }),
          ]),
          mapErrorToAction(loadParametersProductListFilterFail)
        )
      )
    )
  );
}