ng-redux icon indicating copy to clipboard operation
ng-redux copied to clipboard

Angular bindings for Redux

Results 43 ng-redux issues
Sort by recently updated
recently updated
newest added

Currently, `$ngReduxProvider.provideStore(store)` leaves a dangling subscription on `store` when the AngularJS app is torn down by `$rootScope.$destroy()`. The listener, and the private `ngReduxStore` referenced within it, will then be leaked.

### Background We have `ng-redux` as one of our package dependencies. While working on a security issues with `lodash < 4.17.13` I realized that `ng-redux` is bringing in `[email protected]` instead...

As you may have noticed, this repo is not maintained since a while. Since I am not using Angular nor Redux anymore, and as I am working on other stuffs...

Hey! I need to call a angularjs function inside a Redux Reducer. How should I do that?

Hi, First of all, thanks for great job, ng-redux is a first class tool to move away from AngularJS service based state applications to a more robust state management solution....

Redux DevTools Chrome Extension doesn't work after I upgrade the ng-redux to 4.0.x. The console shows `Error: Actions must be plain objects. Use custom middleware for async actions.` even though...

bug

Triggering the `$digest` in the middleware is a bad idea as it may happen before the actual state change. It should be triggered in `store.subscribe()` as this is a change...

I am not able to mock ngredux state getting error in @select selector. NgRedux is configured like : We have following files for configuration - store.epics.ts (EPICmiddlware) - store.model.ts (IAPPSTATE)...

The release process right now is cumbersome af. Right now, we have to: 1. bump version manually 2. npm install (to get the version bump into package-lock) 3. npm publish...

Hello, let me present you some code to start with: ```typescript import { INgRedux } from 'ng-redux'; import { RootState } from '../'; import * as actions from './actions'; import...