useThrottleFn

A hook that deal with the throttled function.

Examples

Default usage

Clicked count:0

Default usage

Frequent calls run, but the function is only executed every 500ms.

API

const {  run,  cancel,  flush} = useThrottleFn(  fn: (...args: any[]) => any,  options?: Options);
const {  run,  cancel,  flush} = useThrottleFn(  fn: (...args: any[]) => any,  options?: Options);

Params

PropertyDescriptionTypeDefault
fnThe function to throttle.(...args: any[]) => any-
optionsConfig for the throttle behaviorsOptions-

Options

PropertyDescriptionTypeDefault
waitThe number of milliseconds to delay.number1000
noLeadingSpecify not invoking on the leading edge of the timeout.booleantrue
noTrailingSpecify not invoking on the trailing edge of the timeout.booleantrue

Result

PropertyDescriptionType
runInvoke and pass parameters to fn.(...args: any[]) => any
cancelCancel the invocation of currently throttled function.() => void
flushImmediately invoke currently throttled function() => void