1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/utils/goToOnSuccess.js
2021-05-22 04:17:02 +02:00

23 lines
756 B
JavaScript

/**
* Decorator which adds a redirect on success to an event handler.
*
* @param func - The function to decorate.
* @param history - The history to push the destination to.
* @param destination - The path of the destination.
*/
export default function goToOnSuccess(func, history, destination) {
return async (...args) => {
let result
try {
console.debug("Executing: ", func)
result = await func(...args)
console.debug("Executed successfully: ", func, " moving to a different page.")
history.push(destination)
return result
}
catch(e) {
console.debug("Execution failed: ", func, ", not doing anything.")
throw e
}
}
}