Skip to content

Instantly share code, notes, and snippets.

@ever-dev
Created August 21, 2020 10:21
Show Gist options
  • Save ever-dev/4d0360402d09048a11060ea224d7eedc to your computer and use it in GitHub Desktop.
Save ever-dev/4d0360402d09048a11060ea224d7eedc to your computer and use it in GitHub Desktop.
useDebouce Custom Hook
import { useState, useEffect } from "react";
export const useDebounce = (value: any, delay: number) => {
// State and setters for debounced value
const [debouncedValue, setDebouncedValue] = useState(value);
useEffect(
() => {
// Update debounced value after delay
const handler = setTimeout(() => {
setDebouncedValue(value);
}, delay);
// Cancel the timeout if value changes (also on delay change or unmount)
// This is how we prevent debounced value from updating if value is changed ...
// .. within the delay period. Timeout gets cleared and restarted.
return () => {
clearTimeout(handler);
};
},
[value, delay] // Only re-call effect if value or delay changes
);
return debouncedValue;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment