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

this is related to https://github.com/angular-redux/ng-redux/issues/177

I would like to use the "real" ngRedux in tests, but the only way I've seen is to use a mock. For example, ``` javascript beforeEach(angular.mock.module(function($provide) { $provide.service('$ngRedux', function() {...

Recently, I was playing around with ng-redux, immutable and reselect. Basically I duplicated the async example from the repository and refactored the code by using immutable and reselect libraries. I...

enhancement

Similar to dependency injectable middleware, allow the reducer to be a string of an Angular service as well, which would then be injected. The reason why is because currently I...

question

It looks like travis doesn't run or at least, it doesn't report on branches/PRs. The badge in readme doesn't work either.

bug

Getting the following error message in console when using the angular-redux library. Also, Redux won't catch or listen for actions after the error occurs. I've searched, including the documentation but...

With the latest upgrade to rollup, we might be affected by https://gist.github.com/Rich-Harris/d472c50732dab03efeb37472b08a3f32

bug

Not sure what milestone to add this to but the testing coverage is severely lacking and there are no instructions for library developers to check if everything works correctly. The...

enhancement

I'm getting this error when I add a bound thunk action to an attribute. ``` angular.js:68Uncaught Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting! ``` It is probably an angular issue...

Have you guys had any luck unit testing components? (See for example, https://puigcerber.com/2016/02/07/how-to-test-angular-1-5-components/) I've currently configured angular 1.5, ngtemplate-loader, and webpack to load the HTML partials correctly in karma but...