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

redux-paginator helps you deal with paginated API with Redux without the need to create new actions and reducers cases

Results 11 redux-paginator issues
Sort by recently updated
recently updated
newest added

the TODOS_RECEIVED case will never execute since this lib only dispatch RECEIVE_PAGE , so I don't why we need to create add TODOS_RECEIVED case in the example? ``` const todos...

I started trying to use this project but it seems to require redux-saga or else it fails. Saga seems to be only a dev-dependency in the `package.json` but there is...

In response of #8 issue. Just move redux-saga from devDependencies to dependencies.

Hi, On the README the last procedure not work. I'm on MacOS X, I need install root dependencies before works with the Example Project. Nice project, on experimenting for me...

For example, get count from : ```javascript { meta: { pagination: { count: 38 } } } ``` with the value of countKey param equals to `'meta.pagination.count'`.

Hi. I think this package is great. However, in order to use it I do not understand how to integrate 2 features: ADD and DELETE. The naive approach would be...

When defining todos function the fat arrow symbol `=>` is missing: Is: `const todos = (todos = {}, action = {}) {` should be: `const todos = (todos = {},...