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

use-elapsed-time

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

use-elapsed-time

React hook to measure elapsed time using requestAnimationFrame

  • 2.1.7
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45K
increased by0.49%
Maintainers
1
Weekly downloads
 
Created
Source

useElapsedTime React hook

npm npm Codecov npm bundle size

React hook to measure elapsed time using requestAnimationFrame. The time measurement can be played and paused, additionally the start time and duration can be set. The primary use case of the hooks is in animations where the most important part of the animation is time.

  • Toggle play/pause
  • Set start time and duration
  • Easily repeat the measurement
  • Combine with any easing function to get the right animation
  • Built-in and ready-to-use TypeScript type definitions.

Installation

yarn add use-elapsed-time

Basic usage

import { useElapsedTime } from 'use-elapsed-time'

const MyComponent = () => {
  const isPlaying = true
  const { elapsedTime } = useElapsedTime(isPlaying)

  return elapsedTime
}

Basic usage demo

Function signature

  function useElapsedTime(
    isPlaying: boolean,
    options?: {
      duration?: number,
      startAt?: number,
      autoResetKey?: string | number,
      onComplete?: (totalElapsedTime: number) => void | { shouldRepeat: boolean, delay: number, newStartAt: number }
    }
  ): {
    elapsedTime: number,
    reset?: (newStartAt: number) => void
  }

1st arg. isPlaying: boolean

Default: isPlaying = false

Indicates if the loop to get the elapsed time is running or it is paused.

2nd arg. options: object

Default: options = {}

Prop NameTypeDefaultDescription
durationnumber-Animation duration in seconds
startAtnumber0Shift the start time to a different value than 0
autoResetKeystring | number-Auto reset animation when the key changes. It works similar to React's key prop
onComplete(totalElapsedTime: number) => void | { shouldRepeat: boolean, delay: number, newStartAt: number }-onComplete callback will be fired when the duration is reached. The callback will receive as an argument the totalElapsedTime in seconds. onComplete can be used to restart the elapsed time loop by returning an object with the following params: shouldRepeat indicates if the loop should start over; delay - delay before looping again in seconds; newStartAt set new start at value.

Return value { elapsedTime, reset }

The hook returns an object with elapsedTime in seconds and reset method.

Use cases

Countdown timer
Edit priceless-hill-2tbiq

Count up animation
Edit hungry-cray-hl6wn

Non-liner path animation
Edit inspiring-austin-d6ol6

Keywords

FAQs

Package last updated on 25 Mar 2021

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