alizeait / use-debounce

React hook to debounce values

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

use-debounce Check Coverage

A tiny (~230B) debounce hook.

Creates a debounced value that gets updated after delay milliseconds have elapsed since the last time useDebounce was invoked. If delay is omitted in an environment with requestAnimationFrame, value will be debounced until the next frame is drawn (typically about 16ms).

Installation

$ yarn add @alizeait/use-debounce

or

$ npm install @alizeait/use-debounce

Usage

import React, { useState } from "react";
import { useDebounce } from "@alizeait/use-debounce";

export default function Input() {
  const [value, setValue] = useState("Initial");
  const debouncedValue = useDebounce(value, 1000);

  return (
    <div>
      <input
        defaultValue="Initial"
        onChange={(e) => {
          setValue(e.target.value);
        }}
      />
      <p>Actual value: {value}</p>
      <p>Debounced value: {debouncedValue}</p>
    </div>
  );
}

API

useDebounce(value:T, delay?:number)

Returns: value

About

React hook to debounce values

License:MIT License


Languages

Language:TypeScript 97.7%Language:JavaScript 2.3%