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

react-timing-hooks

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-timing-hooks

React hooks for creating timing-related effects (setTimeout, setInterval, requestAnimationFrame, requestIdleCallback)

  • 0.1.0-alpha.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
866
decreased by-1.25%
Maintainers
1
Weekly downloads
 
Created
Source

react-timing-hooks

This library contains (or will contain) a bunch of hooks that can be used to trigger effects containing timeouts, intervals etc. without having to worry about storing "timeoutIds" or proper clean up of leaking timers. Apart from that this lib is super light-weight, since it doesn't include any other dependencies.

TL;DR
  • less boilerplate to write
  • no new API to learn (same es useEffect)
  • super leight-weight

Examples

You often have timeouts that run under a certain condition. In these cases a cleanup often has to be done in a separate useEffect call that really only cleans up on unmount.

You might have code like this for example:

  import { useEffect } from 'react'

  // ... 

  const timeoutId = useRef(null)

  useEffect(() => {
    if (depA && depB) {
      timeoutId.current = setTimeout(() => doSomething(), 1000)
    }
  }, [depA, depB])

  useEffect(() => {
    return function onUnmount() {
      if (timeoutId.current !== null) {
        clearTimeout(timeoutId.current)
      }
    }
  }, [timeoutId])

With react-timing-hooks you can just write:

  import { useTimeoutEffect } from 'react-timing-hooks'

  // ... 
  
  useTimeoutEffect((timeout) => {
    if (depA && depB) {
      timeout(() => doSomething(), 1000)
    }
  }, [depA, depB])

react-timing-hooks will automatically take care of cleaning up the timeouts for you.

Documentation

Note: At this moment, useIntervalEffect, and hooks for requestAnimationFrame and requestIdleCallback are still in development.

useTimeoutEffect(effectCallback, deps)

  • effectCallback will receive one argument timeout(f, timeout) that has the same signature as a native setTimeout

  • deps is your regular useEffect dependency array

Example:

useTimeoutEffect(timeout => {
  if (foo) {
    timeout(() => doSomething(), 1000)
  }
}, [foo])

useIntervalEffect(effectCallback, deps)

Note: Still in development.

  • effectCallback will receive one argument interval(f, timeout) that has the same signature as a native setInterval

  • deps is your regular useEffect dependency array

Example:

useIntervalEffect(interval => {
  if (foo) {
    interval(() => doSomething(), 1000)
  }
}, [foo])

Keywords

FAQs

Package last updated on 07 Nov 2019

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