UNPKG

@gechiui/compose

Version:
36 lines (33 loc) 1.2 kB
/** * External dependencies */ import { throttle } from 'lodash'; import { useMemoOne } from 'use-memo-one'; /** * GeChiUI dependencies */ import { useEffect } from '@gechiui/element'; /** * Throttles a function with Lodash's `throttle`. A new throttled function will * be returned and any scheduled calls cancelled if any of the arguments change, * including the function to throttle, so please wrap functions created on * render in components in `useCallback`. * * @see https://docs-lodash.com/v4/throttle/ * * @template {(...args: any[]) => void} TFunc * * @param {TFunc} fn The function to throttle. * @param {number} [wait] The number of milliseconds to throttle invocations to. * @param {import('lodash').ThrottleSettings} [options] The options object. See linked documentation for details. * @return {import('lodash').DebouncedFunc<TFunc>} Throttled function. */ export default function useThrottle( fn, wait, options ) { const throttled = useMemoOne( () => throttle( fn, wait, options ), [ fn, wait, options, ] ); useEffect( () => () => throttled.cancel(), [ throttled ] ); return throttled; }