-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
debounce sync and save -- only run them every 100ms
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** throttle( callback, rate ) | ||
* Returns a throttle function with a build in debounce timer that runs after `wait` ms. | ||
* | ||
* Note that the args go inside the parameter and you should be careful not to | ||
* recreate the function on each usage. (In React, see useMemo().) | ||
* | ||
* | ||
* Example usage: | ||
* const callback = throttle((ev) => { doSomethingExpensiveOrOccasional() }, 100) | ||
* target.addEventListener('frequent-event', callback); | ||
* | ||
*/ | ||
|
||
export const throttle = <F extends (...args: Parameters<F>) => ReturnType<F>>( | ||
fn: F, | ||
rate: number | ||
) => { | ||
let timeout: ReturnType<typeof setTimeout> | ||
return function (...args: Parameters<F>) { | ||
clearTimeout(timeout) | ||
timeout = setTimeout(() => { | ||
fn.apply(null, args) | ||
}, rate) | ||
} | ||
} |