How to wait for 2 Actions in @ngrx/effects

25,965

Solution 1

I am new to RXJS but what about this.

You can remove {dispatch: false} if you change the tap to a switchMap.

@Effect({dispatch: false})
public waitForActions(): Observable<any> {
    const waitFor: string[] = [
        SomeAction.EVENT_1,
        SomeAction.EVENT_2,
        SomeAction.EVENT_3,
    ];

    return this._actions$
        .pipe(
            ofType(...waitFor),
            distinct((action: IAction<any>) => action.type),
            bufferCount(waitFor.length),
            tap(console.log),
        );
}

Solution 2

This worked for me in ngrx 8

waitFor2Actions$ = createEffect(() =>
    combineLatest([
      this.actions$.pipe(ofType(actions.action1)),
      this.actions$.pipe(ofType(actions.action2)),
    ]).pipe(
      switchMap(() => ...),
    )
  );

Solution 3

Using Observable.combineLatest works for me.

@Effect()
  complete$ = this.actions$.ofType<Action1>(ACTION1).combineLatest(this.actions$.ofType<Action2>(ACTION2),
    (action1, action2) => {

      return new Action3();
    }
  ).take(1);

take(1) results in dispatching Action3() only once.

Solution 4

Another combineLatest version with pipes and switchMap

import { Observable, of } from 'rxjs'
import { combineLatest, switchMap, withLatestFrom } from 'rxjs/operators'

@Effect()
someEffect$: Observable<Actions> = this.actions$.pipe(
  ofType(Action1),
  combineLatest(this.actions$.ofType(Action2)),
  switchMap(() => of({ type: Action3 }))
)
Share:
25,965
E. Efimov
Author by

E. Efimov

Updated on March 11, 2021

Comments

  • E. Efimov
    E. Efimov about 3 years

    Can effect wait two actions like Promise.all? Example:

    @Effect()
    pulic addUser() {
       return this.actions$.ofType(user.ADD)
          .switchMap(() => {
             return this.userService.add();
          })
          .map(() => {
             return new user.AddSuccessAction();
          });
    }
    
    @Effect()
    pulic addUserOptions() {
       return this.actions$.ofType(userOptions.ADD)
          .switchMap(() => {
             return this.userOptionsService.add();
          })
          .map(() => {
             return new userOptions.AddSuccessAction();
          });
    }
    
    @Effect()
    public complete() {
       return this.actions$.ofType(user.ADD_SUCCESS, userOptions.ADD_SUCCESS)
          // how to make it works like Promise.all ?
          .switchMap(() => {
             return this.statisticService.add();
          })
          .map(() => {
             return new account.CompleteAction();
          });
    }
    

    UPDATED What I want to achieve is simillar behavior to Promise.all. How to dispatch two effects in parallel, wait until all the effects are resolved, then dispatch a third action. Something like https://redux-saga.js.org/docs/advanced/RunningTasksInParallel.html With promises it was quite obviouse:

    Promise.all([fetch1, fetch2]).then(fetch3);
    

    Is it possible in ngrx/effects? Or is it a wrong way in ngrx/effects?

    ANSWER

    There are few options which you can use:

    1) Do not use generic actions.

    Follow these rules from Myke Ryan's presentation: https://youtu.be/JmnsEvoy-gY

    Pros: easier to debug

    Cons: tons of boilerplate and actions

    2) Use complex stream with nested actions.

    Check this article: https://bertrandg.github.io/ngrx-effects-complex-stream-with-nested-actions/

    Here is simple example for two actions:

    @Effect()
    public someAction(): Observable<Action> {
        return this.actions$.pipe(
            ofType(actions.SOME_ACTION),
            map((action: actions.SomeAction) => action.payload),
            mergeMap((payload) => {
                const firstActionSuccess$ = this.actions$.pipe(
                    ofType(actions.FIRST_ACTION_SUCCESS),
                    takeUntil(this.actions$.pipe(ofType(actions.FIRST_ACTION_FAIL))),
                    first(),
                );
    
                const secondActionsSuccess$ = this.actions$.pipe(
                    ofType(actions.SECOND_ACTION_SUCCESS),
                    takeUntil(this.actions$.pipe(ofType(actions.SECOND_ACTION_FAIL))),
                    first(),
                );
    
                const result$ = forkJoin(firstActionSuccess$, secondActionsSuccess$).pipe(
                    first(),
                )
                    .subscribe(() => {
                        // do something
                    });
    
                return [
                    new actions.FirstAction(),
                    new actions.SecondAction(),
                ];
            }),
        );
    }
    

    Pros: you can achieve what you want

    Cons: complex stream is too complex to support :) looks ugly and may quickly become to hell, observables won't unsubscribe until succes or fail actions, it means that in theory any third-party actions can emit signals to these observables.

    3) Use aggregator pattern.

    Check Victor Savkin's presentation about State Management Patterns and Best Practices with NgRx: https://www.youtube.com/watch?v=vX2vG0o-rpM

    Here is simple example:

    First you need to create actions with correlationId param. CorrelationId should be uniq, it may be some guid for example. This ID you will use in your chain of actions to identify your actions.

    export class SomeAction implements Action {
        public readonly type = SOME_ACTION;
    
        constructor(public readonly correlationId?: string | number) { }
        // if you need payload, then make correlationId as a second argument
        // constructor(public readonly payload: any, public readonly correlationId?: string | number) { }
    }
    
    export class SomeActionSuccess implements Action {
        public readonly type = SOME_ACTION_SUCCESS;
    
        constructor(public readonly correlationId?: string | number) { }
    }
    
    export class FirstAction implements Action {
        public readonly type = FIRST_ACTION;
    
        constructor(public readonly correlationId?: string | number) { }
    }
    
    export class FirstActionSuccess implements Action {
        public readonly type = FIRST_ACTION_SUCCESS;
    
        constructor(public readonly correlationId?: string | number) { }
    }
    
    // the same actions for SecondAction and ResultAction
    

    Then our effects:

    @Effect()
    public someAction(): Observable<Action> {
        return this.actions$.pipe(
            ofType(actions.SOME_ACTION),
            mergeMap((action: actions.SomeAction) => {
                return [
                    new actions.FirstAction(action.corelationId),
                    new actions.SecondAction(action.corelationId),
                ];
            }),
        );
    }
    
    @Effect()
    public firstAction(): Observable<Action> {
        return this.actions$.pipe(
            ofType(actions.FIRST_ACTION),
            switchMap((action: actions.FirstAction) => {
                // something
                ...map(() => new actions.FirstActionSuccess(action.correlationId));
            }),
        );
    }
    // the same for secondAction
    
    @Effect()
    public resultAction(): Observable<Action> {
        return this.actions$.pipe(
            ofType(actions.SOME_ACTION),
            switchMap((action: actions.SomeAction) => {
                const firstActionSuccess$ = this.actions$.pipe(
                    ofType(actions.FIRST_ACTION_SUCCESS),
                    filter((t: actions.FirstActionSuccess) => t.correlationId === action.correlationId),
                    first(),
                );
    
                const secondActionsSuccess$ = this.actions$.pipe(
                    ofType(actions.SECOND_ACTION_SUCCESS),
                    filter((t: actions.SecondActionSuccess) => t.correlationId === action.correlationId),
                    first(),
                );
    
                return zip(firstActionSuccess$, secondActionsSuccess$).pipe(
                    map(() => new actions.resultSuccessAction()),
                )
            }),
        );
    }
    

    Pros: the same as point 2, but no third-party actions.

    Cons: the same as point 1 and 2

    4) Do not use effects for API. Use good old services which emulate effects but return Observable.

    In you service:

    public dispatchFirstAction(): Observable<void> {
        this.store.dispatch(new actions.FirstAction(filter));
    
        return this.service.someCoolMethod().pipe(
            map((data) => this.store.dispatch(new actions.FirstActionSuccess(data))),
            catchError((error) => {
                this.store.dispatch(new actions.FirstActionFail());
    
                return Observable.throw(error);
            }),
        );
    }
    

    So you can combine it anywhere later, like:

    const result1$ = this.service.dispatchFirstAction();
    const result2$ = this.service.dispatchSecondAction();
    
    forkJoin(result1$, result2$).subscribe();
    

    5) Use ngxs: https://github.com/ngxs/store

    Pros: less boilerplate, this feels like angular stuff, it grows fast

    Cons: has got less features than ngrx

  • bartosz.baczek
    bartosz.baczek about 5 years
    How can I 'restore' this effect? If I emit 3 actions for the first time, it works, but when I do it the second time it won't trigger.
  • Nico
    Nico over 4 years
    i think you need a pipe in there syntax isn't correct. This would complete the effect will it not?
  • Nico
    Nico over 4 years
    This could probably be from the distinct. Is it needed? ofType is already distinct by definition
  • Neurotransmitter
    Neurotransmitter almost 4 years
    @Nico without distinct it will fire if there was at least one of waitFor actions dispatched in in last waitFor.length, not all of them.
  • Jeffrey Drake
    Jeffrey Drake over 3 years
    Older version of rxjs, before pipe
  • Moshe Yamini
    Moshe Yamini over 3 years
    @bartosz.baczek Check out my answer its worked not just once. stackoverflow.com/a/64464568/9092944