useCustomRequest
basic
Using useCustomRequest
you can create your own async function and integare it into resource
module. And in same time you still can use all other resource
methods.
useCustomRequest accepts 2 arguments:
- asyncFunction
- Resource Config
Creating async function
danger
Note that async function that is passed to useCustomRequest
should return Promise
This will not work:
API
Instance of API.
tip
It is recommended to use API module for sending HTTP request.
API already has global interceptor to handle 401 to logout user, so that you don't need to handle this exception.
API returns special type of Promise that has cancel
method to terminate request.
payload
Action payload, or params that will be passed to request
function
meta
store
simple syntax
You can define namespace as a String
Aborting requests
Default API implementation
By, default API
module already returns Promise with extra method cancel
that will use AbortController to abort Pending requests.
Own implementation
In case your async function does not return instance of API
Request, you will need:
- create your own instance of
AbortController
- pass AbortController
signal
toAPI
module - Wrap Promise from async function with
makeCancelablePromise