All files / src/app/core/store/content/page-tree page-tree.effects.ts

100% Statements 13/13
75% Branches 6/8
100% Functions 4/4
100% Lines 12/12

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 279x 9x 9x   9x 9x   9x     9x 5x   5x 5x       9x 4x              
import { Injectable } from '@angular/core';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { map, mergeMap } from 'rxjs/operators';
 
import { CMSService } from 'ish-core/services/cms/cms.service';
import { mapErrorToAction, mapToPayload } from 'ish-core/utils/operators';
 
import { loadContentPageTree, loadContentPageTreeFail, loadContentPageTreeSuccess } from './page-tree.actions';
 
@Injectable()
export class PageTreeEffects {
  constructor(private actions$: Actions, private cmsService: CMSService) {}
 
  loadContentPageTree$ = createEffect(() =>
    this.actions$.pipe(
      ofType(loadContentPageTree),
      mapToPayload(),
      mergeMap(({ rootId, depth }) =>
        this.cmsService.getContentPageTree(rootId, depth).pipe(
          map(pagetree => loadContentPageTreeSuccess({ pagetree })),
          mapErrorToAction(loadContentPageTreeFail)
        )
      )
    )
  );
}