Top "Ngrx-effects" questions

Use this tag for questions related to the effects package of the ngrx platform.

Catch error in combined pipe of lettable rxjs operators

We've just upgraded one of our applications to Angular 5, and started to transition into lettable operators as introduced in rxjs …

angular rxjs ngrx-store ngrx-effects angular5
Executing code after dispatch is completed while using ngrx

In my sample Angular 2 application , I am using ngrx/store and ngrx/effects for state management. Below is one of …

angular redux ngrx ngrx-effects
How to wait for 2 Actions in @ngrx/effects

Can effect wait two actions like Promise.all? Example: @Effect() pulic addUser() { return this.actions$.ofType(user.ADD) .switchMap(() => { …

angular typescript ngrx ngrx-effects ngrx-store
ngrx effect not being called when action is dispatched from component

I am having an issue with the ngrx store not dispatching an action to the effect supposed to deal with …

ngrx ngrx-effects
NGRX: TypeError: Actions must have a type property

Being new to ngrx I am facing an exception and not sure why... I am trying to dispatch an action …

angular ngrx ngrx-effects
Angular router navigation inside NgRx effect

Does the Angular router have any restrictions to be used inside an NgRx effect? I just started learning NgRx and …

angular ngrx angular-router ngrx-effects
How to wait for dispatch to be completed before selecting from a store. Ngrx related issue

How can I wait for a dispatch to be completed before I select from a store. Do not have any …

node.js angular ngrx ngrx-effects ngrx-store-4.0
ngRx state update and Effects execution order

I have my own opinion on this question, but it's better to double check and know for sure. Thanks for …

javascript angular ngrx ngrx-effects ngrx-store
How to attach ngrx/store with an angular router guard

I'm a beginner with ngrx/store and this is my first project using it. I have successfully set up my …

angular angular2-routing ngrx ngrx-effects
ngrx effect throws "dispatched an invalid action: undefined"

I have this effect for logout confirmation under the condition of a dialog response, but am getting the following errors: …

angular rxjs ngrx ngrx-effects