Glue NetInfo from react-native to Redux.
My focus has left the node / react ecosystem and this module is no longer maintained.
Thank you for your patience and using this module in the first place!
npm install --save redux-middleware-react-native-netinfo
// Just import the middleware and add it to your store
import { createStore, applyMiddleware } from 'redux';
import { middleware as netInfo } from 'redux-middleware-react-native-netinfo';
const createStoreWithMiddleware = applyMiddleware(netInfo)(createStore);
// And in your reducers receive the value
import { TYPE as NET_INFO } from 'redux-middleware-react-native-netinfo';
function netInfoReducer(state = {}, action) {
switch (action.type) {
case NET_INFO:
console.log('NetInfo:', action.payload);
default:
return state;
}
}
- Write tests for everything!