async-abort
v2.0.0
Published
a cancelable promise utility helps prevent memory leaks in react components
Downloads
230
Maintainers
Readme
async-abort
A canceleable promise utility which helps solve memory leak in asynchronous code in a react components which cannot be solved using AbortController or other hooks which uses similar type of cancelling mechanisms.
AsyncAbort internally uses dont care policy
for the promise cancellation ie.. it won't stop the promises from settling but it stops callbacks attached from being called. It does so by detaching the loosely attached callbacks from promise and preventing memory references of these callbacks from being held by promise call which can cause memory leak if not.
Table of Contents
- Features
- Browser Support
- Installing
- Preventing Memory leaks in React Component
- Other Examples
- Resources
- Credits
- License
Features
- Ability to prevent execution of actions (then, catch, finally blocks) that happen when a promise returned from async function settles.
- Useful in Preventing Memory leaks resulting in asynchronous code in React components
- works with any kind of promises (native or bluebord or any other polyfills)
Browser Support
| | | | | | --- | --- | --- | --- | --- | --- | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 11 ✔ |
Installing
Using npm:
$ npm install async-abort
Using yarn:
$ yarn add async-abort
Preventing Memory leaks in React Component
A React Component that will leak:
function ALeakyTodoComponent({ userId }) {
const [todos, setTodos] = useState([]);
const [failed, setFailed] = useState(false);
useEffect(() => {
// on mount
fetchTodosOfUser(userId)
.then((resp) => {
setTodos(resp.todos);
})
.catch((err) => {
setFailed(true);
});
}, [userId]);
return (<div>
{ failed && <FailedMsg/>}
{todos.map((todo) => (
<div>
<h1>{todo.title}</h1>
<p>{todo.description}</p>
</div>
))}
</div>)
}
Now what happens when the above component is mounted and umounted immediately
- the
fetchTodosOfUser
is called on mount and it holds the references to thesetTodos
andsetFailed
callbacks - while the promise is still being settled the component will unmount, in order for component to completely unmount and garbage collected, all the references must be cleared. but the promise holds the references of the setState callbacks untill it settles
- this will stop the component from garbage collected and leads to memory leak
- even if you use AbortController or some flags to stop setting the state in your code, the references are still attached and it will not prevent the memory leak
Using AsyncAbort to prevent this leak:
import AsyncAbort from 'async-abort';
function ANonLeakyTodoComponent({ userId }) {
const [todos, setTodos] = useState([]);
const [failed, setFailed] = useState(false);
useEffect(() => {
// on mount
const cancel = new AsyncAbort(fetchTodosOfUser, [userId])
.then((resp) => {
setTodos(resp.todos);
})
.catch((err) => {
setFailed(true);
})
.call();
return () => {
cancel();
}
}, [userId]);
return (<div>
{ failed && <FailedMsg/>}
{todos.map((todo) => (
<div>
<h1>{todo.title}</h1>
<p>{todo.description}</p>
</div>
))}
</div>)
}
Now what happens when the above component is mounted and umounted immediately
- the
fetchTodosOfUser
is called on mount through AsyncAbort - the component gets unmounted while the promise is still being settled and
cancel()
is called in cleanup method of hook this will remove the references of then,catch,finally callbacks which are attached to thefetchTodoOfUser
note cancel won't stop promise from being settling - after calling cancel() no more references of component are held, the component is garbage collected.
- thus no more memory leaks
Other Examples
note: CommonJS usage
To get TypeScript typings (for intellisense / autocomplete) while using CommonJS imports with require()
use the following approach:
const AsyncAbort = require('async-abort').default;
// AsyncAbort.<method> will now provide autocomplete and parameter typings
Example for calling an Async Function
or Any Promise returning Function
import AsyncAbort from 'async-abort';
async function anAsyncFunc(arg1, arg2) {
// does some operations
// throws an error or returns a value
}
new AsyncAbort(anAsyncFunc, [arg1Value, arg2Value])
.then((resp) => {
// code when promise resolves
}).catch((err) => {
// code when promise rejects
}).finally(() => {
// similar to finally block
}).call();
function somePromiseReturningFunc(arg1, arg2) {
// returns a promise
return new Promise((resolve, reject) => {
// either rejects or resolves
});
}
new AsyncAbort(somePromiseReturningFunc, [arg1Value, arg2Value])
.then((resp) => {
// code when promise resolves
}).catch((err) => {
// code when promise rejects
}).finally(() => {
// similar to finally block
}).call();
Action Blocks can be omitted
// then and finally are omitted
new AsyncAbort(somePromiseReturningFunc, [arg1Value, arg2Value])
.catch((err) => {
...
}).call();
// finally is omitted
new AsyncAbort(somePromiseReturningFunc, [arg1Value, arg2Value])
.then((val) => {
...
}).catch((resp) => {
...
}).call();
note : .call()
is necessary to call the async function that is passed
Cancelling execution of Action blocks
const cancel = new AsyncAbort(somePromiseReturningFunc, [arg1Value, arg2Value])
.then((val) => {
...
}).catch((resp) => {
...
}).call();
// to prevent execution of Action blocks (then, catch, finally)
cancel();
Resources
Credits
- to setup the environment for building this npm package I used code from this repo
- used readme file from axios project as a template for this readme file