redbone
Library for client → server → client redux dispatching
Install
npm install --save redbone
Using
Server side
const redbone = require('redbone');
redbone.watch('@@server/user/GET', function(socket, action, next) {
if (!action.user_id) return next(new Error('User not found'));
getUser(action.user_id).then((user) => {
if (!user) return next(new Error('User not found'));
socket.dispatch({ '@@user/current/SET', user });
}).catch(next);
});
redbone.watch('@@server/user/SET', function(socket, action, next) {
if (!action.user) return next(new Error('User is undefined'));
setUser(action.user).then(() => socket.dispatch({ type: '@@system/SUCCESS_SAVE' )).catch(next);
}).catch((socket, err) => {
socket.dispatch({ type: '@@system/SHOW_ERROR_MODAL', title: 'Server Error', err });
});
redbone(io);
Client side
After create your store, just add
io.on('dispatch', store.dispatch);
All socket.dispatch(action)
at redbone watcher will perform action to client
Optionaly, you can add special middleware to redux for client → server dispatching
import serverDispatchMidddleware from 'redbone/client/getServerDispatchMidddleware';
middlewares.unshift(serverDispatchMidddleware(io));
const createStoreWithMiddlewares = compose(applyMiddleware(...middlewares))(createStore);
const store = createStoreWithMiddlewares(reducer);
Watchers
documentation comming soon
Look at server side example