use-api-request
v0.1.0
Published
A React Hook for Making Api Requests Using Axios
Downloads
2
Readme
use-api-request
A simple React hook for making network requests using Axios.
Install
npm install --save use-api-request
Example
import axios from 'axios';
import { useApiRequest } from 'use-api-request';
function MyComponent() {
const apiConfig = {
axios: axios.create({
baseURL: "https://whereami.com/"
}),
key: "example",
debug: true
};
const { state, makeApiRequest } = useApiRequest(apiConfig);
const { fetching, resources: { posts }, errors } = state;
const requestConfig = {
posts: {
url: "/posts"
}
};
return (
<>
<button onClick={() => makeApiRequest(requestConfig)}>Get Posts</button>
<>
{fetching.includes("posts") && <div>fetching</div>}
{posts.data.length > 0 && posts.data.map(post =>
<div key={post.id}>{post.title}</div>) }
{errors.posts && <div>{errors.posts.message}</div>}
</>
</>
);
}
Usage
Pass a config object with an Axios instance and a
key
string, intouseApiRequest
. The Axios instance takes the exact same configurations as specified in the documentation. Optionally include adebug
flag if you'd like to see redux-like logging in your console.Create a request object -- again, refer to the Axios documentation for examples -- and pass it into
makeApiRequest
. Note that this library usesAxios.request()
under the hood. The request object is nothing more than an Axios request config object assigned to a resource key of your choosing. So, if you name the keythings
, you will findthings
many times within the state object. See below for more details.Call
makeApiRequest
and look for your response on the resources key of thestate
object provided byuseApiRequest
.
Features
Make a single request:
const singleRequestConfig = {
posts: {
url: "/posts"
}
};
makeApiRequest(singleRequestConfig);
Make multiple concurrent requests:
const concurrentRequestsConfig = {
albums: {
url: "/albums"
},
users: {
url: "/users"
}
};
makeApiRequests(concurrentRequestsConfig);
Make a sequential request (dependent variables are wrapped in double curly brackets and will always be properties of data
):
const sequentialRequestConfig = {
userPosts: {
url: "/posts/1",
next: {
url: "/posts?userId={{data.userId}}"
}
}
};
makeApiRequest(sequentialRequestConfig);
API
const { state, makeApiRequest, makeApiRequests } = useApiRequest(apiConfig);
const { fetching, resources, errors } = state;
fetching
- array of strings corresponding to the resource key(s) used in the request config
resources
- object of successful responses; each response can be found under the key used in the request config, and each response contains the entire response generated by Axios
errors
- object of errors; each error can be found under the key used in the request config, and each error contains the entire error generated by Axios
License
MIT © jmpolitzer