@bsara/react-use-fetch
v1.0.0-beta.8
Published
React hooks for interacting with the fetch API which includes the ability to add middleware to intercept, modify, cancel, cache, or analyze fetch calls.
Downloads
370
Maintainers
Readme
react-use-fetch
React hooks for interacting with the fetch API which includes the ability to add middleware to intercept, modify, cancel, cache, or analyze fetch calls.
Installation
$ npm i -S @bsara/react-use-fetch
Basic Usage
Basic Usage (Immediate Execution)
import { useFetchGet } from '@bsara/react-use-fetch';
export function MyComponent() {
const { loading, error, value: movie } = useFetchGet<Movie>('/api/movies/42'); // NOTE: Only submits request if URL changes.
return (
loading ? <div>Loading...</div>
: error ? <div>Error: {error.message}</div>
: <div>{movie.title} ({movie.year}) by {movie.director}</div>
);
}
type Movie = {
id: number;
title: string;
year: number;
director: string;
};
Basic Usage (On-Demand Execution)
import { useState } from 'react';
import { useFetchGetFn } from '@bsara/react-use-fetch';
export function MyComponent() {
const [ { loading, error, value: movie }, fetchMovie ] = useFetchGetFn<Movie>(`/api/movies/42`);
return (
loading ? <div>Loading...</div>
: error ? <div>Error: {error.message}</div>
: movie ? <div>{movie.title} ({movie.year}) by {movie.director}</div>
: <button onClick={fetchMovie}>Fetch It!</button>
);
}
Add "Standard" Options for All Requests (Without Provider)
// main.ts
import { addUseFetchMiddleware } from '@bsara/react-use-fetch';
import standardOptionsMiddleware from '@bsara/react-use-fetch/middleware/standard-options';
addUseFetchMiddleware(standardOptionsMiddleware);
// ...
Advanced Usage
TODO
Adding Middleware
TODO
Aborting a Request
TODO
Hooks
- useFetch
- useFetchFn
- useFetchResp
- useFetchRespFn
- DELETE
- GET
- HEAD
- POST
- PUT
Middleware
TODO
Provided Middleware
Fetch Wrappers
These are provided in case you need to make a request but do not wish to use a hook to do so. This allows all middleware and other options to still be used even when not using a hook.
License
ISC License (ISC)
Copyright (c) 2024, Brandon D. Sara (https://bsara.dev/)
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.