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-useasync-hooks

v1.0.4

Published

React useasync timeout utils

Downloads

10

Readme

Install

$ npm install react-useasync-hooks --save

or

$ yarn add react-useasync-hooks

Direct link to npmjs.com

The problem

In many times we have to run

useEffect(() => {
  (async () => {
    // some async code
  })();
}, [some_depenencies])

And manage it. The code is ugly and there are so many issues managing it. instead we could now run

const status = useAsyncEffect(() => {
  // some async code
}, [some_depenencies])

Or

const method = useCallback(() => {
  (async() => {
    // some async code
  })();
});

Or even using timeouts in your code.

The API to the help:

Let's set up some types to make the code easier:

type MyType = {
  name: string;
  isValid: boolean;
};

useAsync()

const [status, callback] = useAsync<MyType>(async () => {
  /** call some asynchronous code which returs MyType **/
  }, [some_depenencies])

Or if we want to have init status

const [status, callback] = useAsync<MyType>(async (prop1: string, prop2: boolean) => {
  /** call some asynchronous code which returs MyType **/
  }, {useInit: true} // optional parameter, by default it is set to false
, [some_depenencies])

First argument is funciton and second one, which is not required is configuration, if we would like to see init status. The reason for not seeing init status is in most cases we load stuff and do not care if it is in init state.

The status is either:

  • init (status.type === AsyncStatus.INIT) // only in case useInit is set to true (by default, when props are not set it is set to false) fails back to AsyncStatus.WORKING when useInit is set to false
  • init (status.type === AsyncStatus.WORKING) // when the callback is working
  • init (status.type === AsyncStatus.SUCCESS) // when callback has finished working
  • init (status.type === AsyncStatus.ERROR) // when some error happened
  • init (status.type === AsyncStatus.CANCELLED) // when user interrupted the code

Status also might have value (status.value) which type is MyType and has always value when status is a success. In other cases it keeps the cached value. In case of Error it also has an error value (status.error) which can be second argument in type (useAsync<MyType, ErrorType>).

The callback is function to call but also has property to cancel callback.cancel() which tries to interrupt the call

useAsyncEffect()

This is a mix of useAsync and useEffect it returns just a status object which is described above.

useTimeoutAsync()

It is similar to useAsyncEffect method except with milliseconds argument in configuration which defines when to make the call

const [status, callback] = useTimeoutAsync<MyType>(async (prop1: string, prop2: boolean) => {
  /** call some asynchronous code which returs MyType **/
  }, {useInit: true, milliseconds: 500} // the
, [some_depenencies])

or

const [status, callback] = useTimeoutAsync<MyType>(async (prop1: string, prop2: boolean) => {
  /** call some asynchronous code which returs MyType **/
  }, {milliseconds: 500} // the
, [some_depenencies])

or defaults to 100

const [status, callback] = useTimeoutAsync<MyType>(async (prop1: string, prop2: boolean) => {
  /** call some asynchronous code which returs MyType **/
  }
, [some_depenencies])

Everything else works as described at useAsync

useTimeoutAsyncEffect()

Utilizes the useTimeoutAsync and is mix with useEffect method and is triggered on dependency changes.

credits

The project is based on the work of @react-hook/async but as it grew I decided to make a stand alone project with less dependencies and some additional configuration changes.