18 lines
413 B
TypeScript
18 lines
413 B
TypeScript
import { useState, useEffect } from "react";
|
|
import { debounce } from "lodash";
|
|
|
|
export const useDebounce = <T>(value: T, delay = 300): T => {
|
|
const [debouncedValue, setDebouncedValue] = useState(value);
|
|
|
|
useEffect(() => {
|
|
const handler = debounce(() => setDebouncedValue(value), delay);
|
|
|
|
handler();
|
|
return () => {
|
|
handler.cancel();
|
|
};
|
|
}, [value, delay]);
|
|
|
|
return debouncedValue;
|
|
};
|