npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-api-toolkit

v1.0.3

Published

A set of custom React hooks for handling API calls using Axios.

Downloads

273

Readme

Here’s an updated README including the usePolling hook:


react-api-toolkit

Welcome to react-api-toolkit, a versatile and powerful collection of React hooks for handling API requests, mutations, pagination, infinite scrolling, file uploads, polling, and more. Whether you're building a robust application or a simple prototype, react-api-toolkit simplifies your data-fetching needs and helps you focus on building great features.

🚀 Features

  • useFetch: Fetch data with ease, handle loading and error states, and refetch data when needed.
  • useMutation: Manage API mutations (POST, PUT, DELETE), track loading and error states, and handle success and failure scenarios.
  • usePagination: Simplify paginated data fetching and management.
  • useInfiniteScroll: Effortlessly implement infinite scrolling for your data-driven UIs.
  • useUpload: Handle file uploads with progress tracking and multipart data support.
  • usePolling: Automatically poll an API endpoint at regular intervals.

🔗 Installation

Install the package via npm or yarn:

npm install react-api-toolkit

or

yarn add react-api-toolkit

📚 Usage

useFetch

Fetch data from an API and handle loading, error, and data states.

import { useFetch } from 'react-api-toolkit';

const { data, loading, error, refetch } = useFetch({
  url: '/api/data',
  token: 'your-token',
  onSuccess: (data) => console.log('Data fetched successfully:', data),
  onError: (error) => console.error('Error fetching data:', error),
});

if (loading) return <div>Loading...</div>;
if (error) return <div>Error: {error}</div>;
return <div>Data: {JSON.stringify(data)}</div>;

useMutation

Perform mutations (POST, PUT, DELETE) and handle different states.

import { useMutation } from 'react-api-toolkit';

const { data, loading, error, mutate } = useMutation({
  method: 'post',
  url: '/api/submit',
  data: { key: 'value' },
  onSuccess: (response) => console.log('Mutation successful:', response),
  onError: (error) => console.error('Mutation error:', error),
});

const handleSubmit = async () => {
  await mutate();
};

if (loading) return <div>Loading...</div>;
if (error) return <div>Error: {error}</div>;
return <button onClick={handleSubmit}>Submit</button>;

usePagination

Manage paginated data fetching.

import { usePagination } from 'react-api-toolkit';

const { data, loading, error, fetchNextPage } = usePagination({
  url: '/api/data',
  params: { page: 1, size: 10 },
});

return (
  <div>
    {loading && <div>Loading...</div>}
    {error && <div>Error: {error}</div>}
    {data && (
      <div>
        <ul>
          {data.map(item => <li key={item.id}>{item.name}</li>)}
        </ul>
        <button onClick={fetchNextPage}>Load More</button>
      </div>
    )}
  </div>
);

useInfiniteScroll

Implement infinite scrolling with ease.

import { useInfiniteScroll } from 'react-api-toolkit';

const { data, loading, error, loadMore } = useInfiniteScroll({
  url: '/api/infinite',
  params: { page: 1, size: 10 },
});

return (
  <div>
    {loading && <div>Loading...</div>}
    {error && <div>Error: {error}</div>}
    {data && (
      <div>
        <ul>
          {data.map(item => <li key={item.id}>{item.name}</li>)}
        </ul>
        <button onClick={loadMore}>Load More</button>
      </div>
    )}
  </div>
);

useUpload

Handle file uploads with progress.

import { useUpload } from 'react-api-toolkit';

const { progress, error, upload } = useUpload({
  url: '/api/upload',
  onSuccess: (response) => console.log('Upload successful:', response),
  onError: (error) => console.error('Upload error:', error),
});

const handleUpload = (event: React.ChangeEvent<HTMLInputElement>) => {
  if (event.target.files) {
    upload(event.target.files[0]);
  }
};

return (
  <div>
    <input type="file" onChange={handleUpload} />
    {progress && <div>Upload progress: {progress}%</div>}
    {error && <div>Error: {error}</div>}
  </div>
);

usePolling

Poll an API endpoint at regular intervals.

import { usePolling } from 'react-api-toolkit';

const { data, loading, error } = usePolling({
  url: '/api/polling',
  interval: 5000, // Poll every 5 seconds
  onSuccess: (data) => console.log('Polling data:', data),
  onError: (error) => console.error('Polling error:', error),
});

if (loading) return <div>Loading...</div>;
if (error) return <div>Error: {error}</div>;
return <div>Data: {JSON.stringify(data)}</div>;

🛠️ Development

To build the package:

npm run build

📦 Publishing

To publish your package to npm:

  1. Ensure you're logged in:

    npm login
  2. Publish:

    npm publish

💬 Support

For any issues or questions, please open an issue on GitHub.


Feel free to adjust any specifics based on your package’s features and your preferred documentation style.