@shopify/react-idle
TypeScript icon, indicating that this package has built-in type declarations

3.1.2 • Public • Published

@shopify/react-idle

Build Status Build Status License: MIT npm version npm bundle size (minified + gzip)

Utilities for working with idle callbacks in React.

Installation

yarn add @shopify/react-idle

Usage

This library provides a hook (useIdleCallback) and a component (OnIdle) for registering a callback to run in the next idle callback.

Note: this callback is not called with any arguments, unlike direct usage of requestIdleCallback. This makes it more suited for use with discrete operations, rather than ones that will need to schedule themselves for subsequent idle callbacks if the work has not been completed.

import {useCallback} from 'react';
import {useIdleCallback, OnIdle} from '@shopify/react-idle';

function MyComponent() {
  const callback = useCallback(() => {
    console.log('Hello from an idle callback!');
  }, []);

  useIdleCallback(callback);

  // or

  return <OnIdle perform={callback} />;
}

If the callback ever changes, or the component unmounts, the original callback will not be run.

UnsupportedBehavior

Because not every browser supports idle callbacks, this library allows you to specify the behavior of perform when requestIdleCallback is not present. There are currently two options (each of which can be passed as an unsupportedBehavior option for the hook, or an unsupportedBehavior prop of the component):

  • UnsupportedBehavior.AnimationFrame (default): run the callback in the next animation frame using requestAnimationFrame.
  • UnsupportedBehavior.Immediate: run the callback immediately on mount.
import {useIdleCallback, UnsupportedBehavior} from '@shopify/react-idle';

function MyComponent() {
  useIdleCallback(doSomethingThatCanBeDeferred, {
    unsupportedBehavior: UnsupportedBehavior.Immediate,
  });

  return null;
}

Additional types

Because the typings for requestIdleCallback are not yet provided by the TypeScript standard library, this module also exports a number of types that are needed to interact with these globals.

Readme

Keywords

none

Package Sidebar

Install

npm i @shopify/react-idle

Weekly Downloads

31,498

Version

3.1.2

License

MIT

Unpacked Size

11.7 kB

Total Files

25

Last publish

Collaborators

  • jaimie.rockburn
  • blittle
  • shopify-admin
  • maryharte
  • crisfmb
  • pmoloney89
  • netlohan
  • st999999
  • justin-irl
  • megswim
  • wcandillon
  • nathanpjf
  • shopify-dep
  • goodforonefare
  • lemonmade
  • vsumner
  • wizardlyhel
  • antoine.grant
  • tsov
  • andyw8-shopify
  • henrytao
  • hannachen
  • vividviolet
  • bpscott