react-navigation-redux-debouncer
v0.0.2
Published
Debounce middleware for the react-navigation redux actions
Downloads
149
Maintainers
Readme
React-Navigation Redux debouncer
This middleware resolves the common problem with React-Navigation - navigation action is called twice if you click fast enough the button that calls the navigation action. Just add this middleware and it will block all the Navigation actions during the predefined interval after some Navigation action already called.
Installation
npm install -s react-navigation-redux-debouncer
Usage
import navigationDebouncer from 'react-navigation-redux-debouncer';
const store = applyMiddleware(
navigationDebouncer( 600 ) // debounce time in ms, 600 by default if empty
)(createStore)(reducer);