UNPKG

@wordpress/compose

Version:
39 lines (35 loc) 1.25 kB
/** * External dependencies */ import { useMemoOne } from 'use-memo-one'; /** * WordPress dependencies */ import { useEffect } from '@wordpress/element'; /** * Internal dependencies */ import { debounce } from '../../utils/debounce'; /** * Debounces a function similar to Lodash's `debounce`. A new debounced function will * be returned and any scheduled calls cancelled if any of the arguments change, * including the function to debounce, so please wrap functions created on * render in components in `useCallback`. * * @see https://lodash.com/docs/4#debounce * * @template {(...args: any[]) => void} TFunc * * @param {TFunc} fn The function to debounce. * @param {number} [wait] The number of milliseconds to delay. * @param {import('../../utils/debounce').DebounceOptions} [options] The options object. * @return {import('../../utils/debounce').DebouncedFunc<TFunc>} Debounced function. */ export default function useDebounce( fn, wait, options ) { const debounced = useMemoOne( () => debounce( fn, wait ?? 0, options ), [ fn, wait, options ] ); useEffect( () => () => debounced.cancel(), [ debounced ] ); return debounced; }