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-use-async-hook

v0.0.14

Published

Managed state for async tasks

Downloads

112

Readme

⚠️ No new features! This repository is here for legacy purposes. Use react-use-async-fn instead for a better experience.

React Hook for async tasks

Perform async tasks like calling your API and manage them through react hooks

Installing

Using NPM:

npm i react-use-async-hook

Using yarn:

yarn add react-use-async-hook

Usage

This hooks takes the following options:

  • task: (required) A function which gets performs the async task.
  • dataLoader: (optional) A function which extracts the required data from the async task. For example, we may not need the whole response object from the API response, but just the data that is returned by the API.
  • initialData: (optional, defaults to null) The place holder data to be used in place of the original data until the data is fetched from the async task.
  • executeOnLoad: (optional, defaults to true) Should the task execute every time with the useEffect hook is executed.
  • autoExecute: Alias for executeOnLoad. If both are given, this is ignored.
  • onError: (optional) This function is called when an error occurs. The default behavior just logs to the console.
  • executeOnChange: (optional, defaults to true) If true, Execute the task if either of dataLoader, onError, task change. The execution behavior for various combinations are described below.

| executeOnLoad | executeOnChange | Behavior | --- | --- | ----------- | | true | true | executes on load and executes on task change | | true | false | executes on load and doesn't execute on task change | | false | true | doesn't executes on load, executes on task change | | false | false | doesn't executes on load, doesn't execute on task change |

This hook return an object containing:

  • data: The data that is returned by the async task. This is obtained by passing this value to the dataLoader.
  • loading: Boolean indicating if the async task is still in progress.
  • error: The error that occurred during the async task.
  • taskResult: The whole returned value from the async task.
  • execute: A function that can be called to execute the task when ever needed.

Example

import useAsync from 'react-use-async'

function List (props){
  const makeAPICall = useCallback((page)=>{
      // Simulated API call
      return new Promise((resolve) => {
          setTimeout(() => {
              resolve({
                  data: [1,2,3],
                  page,
              })
          }, 3000);
      })
  }, []);

  let {
      data, loading, error, execute: refresh
  } = useAsync({
      task: makeAPICall,
      dataLoader: useCallback((response) => {
          return response.data;
      }, []),
      initialData: useMemo(()=>([]), []),
  });

  return (
      <>
        {
          loading ? (
            <>
              <div>Loading...</div>
            </>
          ) : (
            <div>
              <button type="button" onClick={() => refresh(1)}>Refresh</button>
              {data.map(x => <div key={x}>{x}</div>)}
            </div>
          )
        }
      </>
  )
}