JavaScript promises have been a huge catalyst for asynchronous coding in the language. They have vastly improved the performance and experience for web development. One shortcoming of native promises has been that we were not able to cancel an HTTP fetch request once it was initiated. But now there is a way to do so.
A new controller known as AbortController has been added to the DOM Standard that allows us to use it as a signal to cancel an HTTP fetch request. It makes use of an AbortSignal property to do so.
It was added in 2017 and is supported in most of the browsers (except IE, obviously). But now that IE support is ending soon, it might be that big of a deal.
Before we get into the how-to part, let us first see why we would need to cancel an HTTP fetch request.
When we have an application that is composed of multiple components that can be dynamically added and removed to the DOM tree, many of the components are bound to make HTTP requests. And it might so happen that one of these components gets unmounted before the fetch request is completed. This could be fairly common in slow network conditions or if the user jumps is jumping around pages.
Because the fetch request is asynchronous, it will keep executing in the background and this might lead to some bugs when it gets completed, if not handled properly.
The default fetch timeout is 300 seconds for Chrome and 90 seconds for Firefox. These are way more than what a user would want to wait in case of unreliable network conditions. Therefore we definitely would want to implement our own way to cancel an HTTP fetch request, if needed.
The AbortController and AbortSignal API are provided by the DOM standard, and have been kept generic so that they can be used by other web standards. To declare a controller:
const controller = new AbortController();
JavaScriptand for the signal:
const signal = controller.signal;
JavaScriptThe controller only has one abort method. And when that is invoked, the signal gets notified.
controller.abort();
signal.addEventListener('abort', () => {
console.log(signal.aborted); // true
});
JavaScriptThe fetch API itself does not allow programmatic cancellation of requests. But it can take in AbortSignal as a parameter. Then we can abort the fetch request after a specific time duration if we want to.
const controller = new AbortController();
const signal = controller.signal;
fetch(url, { signal })
.catch(err => {
if (err.name === 'AbortError') {
console.log('Fetch was aborted');
}
});
// Abort the request after 4s
// aborts the fetch with 'AbortError'
setTimeout(() => {
controller.abort();
}, 4000);
JavaScriptWe can even create our own wrapper of a fetch with a timeout call if we want to:
async function cancellableFetch(url, data, timeout = 4000) {
const controller = new AbortController();
const timer = setTimeout(() => controller.abort(), timeout);
const response = await fetch(url, {
...data,
signal: controller.signal
});
clearTimeout(timer);
return response;
}
JavaScriptA few things to note:
And that is how you can cancel an HTTP fetch request after a timeout, or abort it programmatically. I am excited about being able to do so and hope you are too. Let me know in the comments section if you plan on using this.
I am terrible at optimizing my keyboard layout for anything. But off lately, my little…
I recently switched completely to the Brave browser and have set ad blocking to aggressive…
I was preparing a slide deck for a hackathon and decided to put in a…
I have been using npx a lot lately, especially whenever I want to use a…
Manually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is…
While working on a project, I wanted to do an integrity check of a file…