Skip to content

Instantly share code, notes, and snippets.

@phainamikaze
Last active August 5, 2020 09:05
Show Gist options
  • Save phainamikaze/0654fa01287e54b2cda4d36d55558599 to your computer and use it in GitHub Desktop.
Save phainamikaze/0654fa01287e54b2cda4d36d55558599 to your computer and use it in GitHub Desktop.
const debouncedx = useDebounce(x, 100);
useEffect(()=>{
console.log(debouncedx)
},[debouncedx])
// Hook
function useDebounce(value, delay) {
// 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