Skip to content

Instantly share code, notes, and snippets.

@Tirael
Forked from adamwathan/promise-take-at-least.js
Created January 11, 2019 10:24
Show Gist options
  • Save Tirael/85014cf2dc2dc1c7638330d78d0f1dc9 to your computer and use it in GitHub Desktop.
Save Tirael/85014cf2dc2dc1c7638330d78d0f1dc9 to your computer and use it in GitHub Desktop.
Promise.takeAtLeast
// Creates a new promise that automatically resolves after some timeout:
Promise.delay = function (time) {
return new Promise((resolve, reject) => {
setTimeout(resolve, time)
})
}
// Throttle this promise to resolve no faster than the specified time:
Promise.prototype.takeAtLeast = function (time) {
return new Promise((resolve, reject) => {
Promise.all([this, Promise.delay(time)]).then(([result]) => {
resolve(result)
}, reject)
})
}
// Make sure this doesn't resolve for at least 300ms, useful for things like
// keeping a loading spinner on screen just long enough to not look janky:
axios.post(`/published-products`, payload)
.takeAtLeast(300)
.then(response => {
this.loading = false
// ...
})
.catch(response => {
this.loading = false
// ...
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment