React hooks for interacting with the fetch API which includes the ability to add middleware to intercept, modify, cancel, cache, or analyze fetch calls.
$ npm i -S @bsara/react-use-fetch
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;
};
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>
);
}
// main.ts
import { addUseFetchMiddleware } from '@bsara/react-use-fetch';
import standardOptionsMiddleware from '@bsara/react-use-fetch/middleware/standard-options';
addUseFetchMiddleware(standardOptionsMiddleware);
// ...
TODO
TODO
TODO
- useFetch
- useFetchFn
- useFetchResp
- useFetchRespFn
- DELETE
- GET
- HEAD
- POST
- PUT
TODO
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.
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.