Skip to content

Instantly share code, notes, and snippets.

@vldvel
Last active June 15, 2020 06:15
Show Gist options
  • Save vldvel/fef77236367944b2770a6ce1712faa1a to your computer and use it in GitHub Desktop.
Save vldvel/fef77236367944b2770a6ce1712faa1a to your computer and use it in GitHub Desktop.
const getWeatherDataTimedout = async dispatch => {
await getWeatherData()(dispatch);
setTimeout(() => updateMessages(dispatch), 30 * 1000);
};
const getWeatherDataMiddleware = ({ dispatch }) => next => {
getWeatherDataTimedout(dispatch);
return action => next(action);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment