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 | 10x 10x 10x 10x 10x 10x 10x 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)
)
)
)
);
}
|