0.3.7 • Published 1 year ago
async-fetch v0.3.7
useAsyncFetch
Use async fetch hook for requests within React components.
Installation
npm i async-fetchUsage
Provide a url and handle the request.
import React from "react";
import useAsyncFetch from "async-fetch";
function App() {
const { pending, data, error, sendRequest, cancelRequest } = useAsyncFetch(
"https://jsonplaceholder.typicode.com/todos/1",
);
return (
<React.Fragment>
<button onClick={sendRequest}>Send request.</button>
<br />
<br />
<button onClick={cancelRequest} disabled={!pending}>
Cancel request.
</button>
<br />
<br />
{pending
? "Loading..."
: data
? JSON.stringify(data)
: error
? JSON.stringify(error)
: ""}
</React.Fragment>
);
}
export default App;Available IN Props And Definitions
The minimum requirement for the hook is a url string as the first argument. The second argument has the following available options, while anything else that is provided is passed to the fetch request:
| Key | Type | Definition | Default |
|---|---|---|---|
| initialPending | Boolean | Initial state for the pending constant. | |
| initialData | Any | Initial state for the data constant. | |
| initialError | Any | Initial state for the error constant. | |
| deps | Array | List of dependencies to run the request on. | |
| poll | Number | Number of milliseconds to wait for polling requests. | |
| timeout | Number | Number of milliseconds to wait before canceling the request. | 30000 |
| ignoreCleanup | Boolean | Whether or not the hook should cleanup on component unmount. | |
| ignoreRequest | Boolean | Whether or not the request should send. | |
| query | Object | JSON object to append to the url as search params. | |
| params | Object | JSON object to append to the url as search params. | |
| data | Object | JSON object to send in the request body. | |
| parser | String | Method used to parse the response. | "json" |
| onStart | Function | Callback function to call when the request starts. | |
| onSuccess | Function | Callback function to call when the response has been received. The response is available as the first argument. | |
| onFail | Function | Callback function to call when the request has failed. The error is available as the first argument. | |
| onFinish | Function | Callback function to call when the request has finished. |
Available OUT Props And Definitions
| Key | Type | Definition |
|---|---|---|
| pending | Boolean | Whether or not the request is active. |
| error | Any | The response error. |
| data | Any | The response data. |
| sendRequest | Function | Function to send the request manually. |
| cancelRequest | Function | Function to cancel the request manually. |
0.3.6
1 year ago
0.3.7
1 year ago
0.3.5
1 year ago
0.3.0
1 year ago
0.3.2
1 year ago
0.3.1
1 year ago
0.3.4
1 year ago
0.3.3
1 year ago
0.2.9
2 years ago
0.2.7
3 years ago
0.2.6
3 years ago
0.2.8
3 years ago
0.2.3
3 years ago
0.2.2
3 years ago
0.2.4
3 years ago
0.2.1
3 years ago
0.2.0
3 years ago
0.1.8
3 years ago
0.1.9
3 years ago
0.1.7
4 years ago
0.1.6
4 years ago
0.1.5
4 years ago
0.1.4
5 years ago
0.1.2
5 years ago
0.1.1
5 years ago
0.1.3
5 years ago
0.1.0
5 years ago
0.0.9
5 years ago
0.0.8
5 years ago
0.0.7
5 years ago
0.0.6
5 years ago
0.0.5
5 years ago
0.0.4
5 years ago
0.0.3
5 years ago
0.0.2
5 years ago
0.0.1
5 years ago
0.0.0
5 years ago