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

6 lines
156 B
JavaScript

export default socket => store => next => action => {
if (action.meta && action.meta.remote) {
socket.emit('action', action);
}
return next(action);
};