mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-12 05:08:27 +00:00
* feat: Episode ingestion update Benchmarking CORE * Feat: Spaces in knowledge graph * fix: remove daily assignment * Feat: add spaces * Feat: spaces --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
24 lines
633 B
TypeScript
24 lines
633 B
TypeScript
import { useState, useEffect } from 'react';
|
|
|
|
/**
|
|
* Hook that debounces a value, delaying updates until after a specified delay
|
|
* @param value - The value to debounce
|
|
* @param delay - Delay in milliseconds
|
|
* @returns The debounced value
|
|
*/
|
|
export function useDebounce<T>(value: T, delay: number): T {
|
|
const [debouncedValue, setDebouncedValue] = useState<T>(value);
|
|
|
|
useEffect(() => {
|
|
const handler = setTimeout(() => {
|
|
setDebouncedValue(value);
|
|
}, delay);
|
|
|
|
// Cleanup function that cancels the timeout
|
|
return () => {
|
|
clearTimeout(handler);
|
|
};
|
|
}, [value, delay]);
|
|
|
|
return debouncedValue;
|
|
} |