Coder Social home page Coder Social logo

use-poll's Introduction

@jnnnnn/use-poll-await

A custom React Hook that will repeatedly call a function and await the result.

This hook is forked from an implementation of Dan Abramov's blog post "Making setInterval Declarative with React Hooks".

Installation

$ npm i @jnnnnn/use-poll
OR
$ yarn add @jnnnnn/use-poll

Example

Here is a typical usage

const ProgressBar = () => {
  const [progress, setProgress] = useState(0);
  const [error, setError] = useState('');

  async function checkStatus(isCancelled) {
    try {
      const currentProgress = await fetch(progress);
      if (!isCancelled()) {
        setProgress(currentProgress);
      }
    } catch {
      setError('Something went wrong');
    }
  }

  const stopPolling = progress === 100 || error;

  usePoll({
    callback: checkStatus,
    delay: stopPolling ? null : 1000, // poll once per second until error or progress=100
  });

  return <>{error ? `An error occurred!` : `Current progress: ${progress}%`}</>;
};

Parameters

Here are the parameters that you can use.

Parameter Description
callback A function that will be awaited every delay milliseconds.
delay A number representing the delay in msecs. Set to null to "pause" polling.
dependencies An array of effect dependencies. When one of these changes, the current poll will be cancelled and a new one will start.

use-poll's People

Contributors

donavon avatar allcontributors[bot] avatar jnnnnn avatar linonetwo avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.