Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-useasync-hooks

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-useasync-hooks

React useasync timeout utils

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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.

Keywords

FAQs

Package last updated on 30 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc