-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update use-debounced-callback.ts to add a flush method to the returne…
…d callback as well as give an option to simply flush on unmount
- Loading branch information
Showing
1 changed file
with
37 additions
and
14 deletions.
There are no files selected for viewing
51 changes: 37 additions & 14 deletions
51
packages/@mantine/hooks/src/use-debounced-callback/use-debounced-callback.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,42 @@ | ||
import { useCallback, useEffect, useRef } from 'react'; | ||
import { useCallbackRef } from '../use-callback-ref/use-callback-ref'; | ||
import { useCallback, useEffect, useRef } from "react"; | ||
import { useCallbackRef } from "../use-callback-ref/use-callback-ref"; | ||
|
||
export function useDebouncedCallback<T extends (...args: any[]) => any>( | ||
callback: T, | ||
delay: number | ||
callback: T, | ||
options: number | { delay: number; flushOnUnmount?: boolean }, | ||
) { | ||
const handleCallback = useCallbackRef(callback); | ||
const debounceTimerRef = useRef(0); | ||
useEffect(() => () => window.clearTimeout(debounceTimerRef.current), []); | ||
const delay = typeof options === "number" ? options : options.delay; | ||
const flushOnUnmount = | ||
typeof options === "number" ? false : options.flushOnUnmount; | ||
const handleCallback = useCallbackRef(callback); | ||
const debounceTimerRef = useRef(0); | ||
|
||
return useCallback( | ||
(...args: Parameters<T>) => { | ||
window.clearTimeout(debounceTimerRef.current); | ||
debounceTimerRef.current = window.setTimeout(() => handleCallback(...args), delay); | ||
}, | ||
[handleCallback, delay] | ||
); | ||
const lastCallback: ((...args: Parameters<T>) => void) & { | ||
flush?: () => void; | ||
} = useCallback( | ||
(...args: Parameters<T>) => { | ||
window.clearTimeout(debounceTimerRef.current); | ||
const flush = () => { | ||
if (debounceTimerRef.current !== 0) { | ||
debounceTimerRef.current = 0; | ||
handleCallback(...args); | ||
} | ||
}; | ||
lastCallback.flush = flush; | ||
debounceTimerRef.current = window.setTimeout(flush, delay); | ||
}, | ||
[handleCallback, delay], | ||
); | ||
|
||
useEffect( | ||
() => () => { | ||
window.clearTimeout(debounceTimerRef.current); | ||
if (flushOnUnmount) { | ||
lastCallback.flush?.(); | ||
} | ||
}, | ||
[lastCallback, flushOnUnmount], | ||
); | ||
|
||
return lastCallback; | ||
} |