use-api-call
Minimal react hook to make api calls.
Installation
npm install use-api-call
yarn add use-api-call
Usage
// See examples on adavanced usage. import React from "react";import useApiCall from "use-api-call"; { const data error loading invoke = ; React; if loading return <p>Loading...</p>; return <div>data</div>;}
API
-
useApiCall(request, [,options])
-
request
- Function | URL string - Any function that returnsPromise
with data (or) A api url that returns JSON (uses fetch by default). (See the examples section).- Example:
useApiCall(() => axios("/request/url/here").then(res => res.data))
- Example:
-
options
- Object - Options object. -
returns an object with {data, error, loading, invoke} values. See the Returns section for details.
-
Options
-
updateOnlyIfMounted
- Will update the data, error, loading values only if component is still mounted. Prevents "Can't perform a React state update on an unmounted component" warning.
- Type: Boolean
- Default:
true
-
invokeOnMount
- Runs ajax request when the component is mounted automatically. Basically, it does
useEffect(() => { invoke(); }, [])
. - Type: Boolean
- Default:
false
- Runs ajax request when the component is mounted automatically. Basically, it does
Returns
-
data
- Whatever is returned by your ajax call on success.
- Type: any
- Default:
undefined
-
loading
- A loader indicating whether request is running. You don't have to change anything here.
- Type: Boolean
-
error
- Error thrown by the request unmodified. i.e., Axios and fetch return different Error object structure, you'll have to check their documentation.
- Type: Error
- Default:
undefined
-
invoke
- A function which you'll call to run the ajax call. Invoke can take options that you normally send with your fetch or axios call. If you have passed your own function instead of passing URL string, You have to allow your function to take arguments. Please check the examples section to see how.
- Type: Function
Examples
Check test/index.test.tsx for all different examples. I'll update some React examples soon.
// Manual invokeconst App = const data error invoke loading = ; if loading return <div>Loading...</div>; return <div> <button =>Click</button> <pre>JSON</pre> </div> ;;
// Auto invoke on mountconst App = const data error invoke loading = ; if loading return <div>Loading...</div>; return <div> <pre>JSON</pre> </div> ;;
// Without ajax library. Uses fetch by default. You might have to polyfill for wide browser support.const App = const data error invoke loading = ; if loading return <div>Loading...</div>; return <div> <pre>JSON</pre> </div> ;;
// Pass arguments to axios.const App = const data error invoke loading = ; if loading return <div>Loading...</div>; return <div> <button =>Get Users</button> <pre>JSON</pre> </div> ;;