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 | 20x 20x 20x 20x 20x 20x 20x 48x 48x 48x 7x 4x | import { Injectable } from '@angular/core';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { map, mergeMap } from 'rxjs';
import { WarrantyService } from 'ish-core/services/warranty/warranty.service';
import { mapErrorToAction, mapToPayloadProperty, whenTruthy } from 'ish-core/utils/operators';
import { warrantyActions, warrantyApiActions } from './warranties.actions';
@Injectable()
export class WarrantiesEffects {
constructor(private actions$: Actions, private warrantyService: WarrantyService) {}
loadWarranty$ = createEffect(() =>
this.actions$.pipe(
ofType(warrantyActions.loadWarranty),
mapToPayloadProperty('warrantyId'),
whenTruthy(),
mergeMap(warrantyId =>
this.warrantyService.getWarranty(warrantyId).pipe(
map(warranty => warrantyApiActions.loadWarrantySuccess({ warranty })),
mapErrorToAction(warrantyApiActions.loadWarrantyFail)
)
)
)
);
}
|