tutorials/frontendJS/full-stack-react-redux/voting-client/src/remote_action_middleware.js

6 lines
156 B
JavaScript
Raw Normal View History

2016-08-03 20:38:01 -04:00
export default socket => store => next => action => {
if (action.meta && action.meta.remote) {
socket.emit('action', action);
}
return next(action);
};