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

  • 1.2.1
  • 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

or

npm install 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,
    config?: {
      startAt: number,
      durationMilliseconds: number,
      onComplete?: (totalElapsedTime: number) => void | [shouldRepeat: boolean, delay: number]
    }
  ): number;

The first argument isPlaying indicates if the loop to get the elapsed time is running or it is paused. The second argument config is optional. durationMilliseconds option set the animation duration in milliseconds. onComplete callback will be fired when the duration is reached. The callback will receive as an argument the totalElapsedTime, which could be useful when we repeat the animation. onComplete can be used to restart the elapsed time loop by returning an array where the first element shouldRepeat indicates if the loop should start over and second element delay specifies the delay before looping again in milliseconds. startAt option can shift the start time to a different value than 0. { durationMilliseconds: 5000, startAt: 2000 } will return the elapsed time from 2000 to 5000 milliseconds.

The hook returns elapsed time in milliseconds.

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 27 Apr 2020

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