Top "Ngrx-effects" questions

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

Why must must ngrx / redux effects return actions? Is using a noop action like elm considered bad practice?

I'm using a redux-style state management design with Angular and ngrx/store and ngrx/effects. Whenever I don't return an …

angular redux ngrx ngrx-effects ngrx-store
ngrx ofType, @ngrx/effects

i try to understand how typeof effects work under the hood in ngrx, if i declare in my app module: .... @…

angular typescript ngrx ngrx-effects
Angular NgRx effects, how to pass a parameter?

I am trying to send id parameter from the dispatch to the effect, I can't find any example of this …

angular ngrx ngrx-effects
NGRX effect dispatched an invalid action

I am trying to create an @Effect() for my action. When I run action with type AuthenticationUserLoad I get an …

angular typescript ngrx ngrx-effects
Ngrx store getting error as Property 'ofType' does not exist on type

I am trying to develop a application using ngrx/store getting error. unable to figureout the issue. any one help …

ngrx angular7 rxjs6 ngrx-store ngrx-effects
How to get route params inside ngrx effects using ngrx-router-store?

I am having effect class where I want to load details based on router params ID @Effect() getDetails$ = this.actions$.…

angular ngrx ngrx-store ngrx-effects ngrx-store-4.0
Howto navigate in Angular 2 when using ngrx store

I'm using ngrx store (4.x) together with Angular 4. I use effects to make CRUD operations on the backend, like the …

angular ngrx ngrx-effects ngrx-store-4.0
NgRx: Get data from store but it's undefined

dear Stackoverflow Community. I'm new in NgRx and trying to find out how does it works. I create an app …

angular typescript ngrx ngrx-store ngrx-effects
ngrx 8 effects dispatch action of other type

I'm reaching you here about ngrx effects, what i am tryign to do is to have a function login that …

javascript angular ngrx ngrx-store ngrx-effects
ngrx chaining actions / effects - eg login and then navigate

I am new to ngrx and Redux style architecture and I am having problems understanding how I should chain actions / …

angular ngrx ngrx-effects