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 | 9x 9x 9x 9x 9x 9x 9x 3x 3x 3x 3x 3x | 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 { loadViewContextEntrypoint, loadViewContextEntrypointFail, loadViewContextEntrypointSuccess, } from './viewcontexts.actions'; @Injectable() export class ViewcontextsEffects { constructor(private actions$: Actions, private cmsService: CMSService) {} loadViewContextEntrypoint$ = createEffect(() => this.actions$.pipe( ofType(loadViewContextEntrypoint), mapToPayload(), mergeMap(({ viewContextId, callParameters }) => this.cmsService.getViewContextContent(viewContextId, callParameters).pipe( map(({ entrypoint, pagelets }) => loadViewContextEntrypointSuccess({ entrypoint, pagelets, viewContextId, callParameters }) ), mapErrorToAction(loadViewContextEntrypointFail) ) ) ) ); } |