-
Notifications
You must be signed in to change notification settings - Fork 4
feat: async debounce #150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
feat: async debounce #150
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,18 +1,69 @@ | ||
| import type { DebounceOptions, ThrottleOptions } from './debounce.js' | ||
| import { _debounce, _throttle } from './debounce.js' | ||
| import type { AnyAsyncFunction, AnyFunction } from '../types.js' | ||
| import type { | ||
| AsyncDebounceOptions, | ||
| AsyncThrottleOptions, | ||
| DebounceOptions, | ||
| ThrottleOptions, | ||
| } from './debounce.js' | ||
| import { _asyncDebounce, _asyncThrottle, _debounce, _throttle } from './debounce.js' | ||
| import type { MethodDecorator } from './decorator.util.js' | ||
|
|
||
| export function _Debounce(wait: number, opt: DebounceOptions = {}): MethodDecorator { | ||
| export function _Debounce<T extends AnyFunction>( | ||
| wait: number, | ||
| opt: DebounceOptions = {}, | ||
| ): MethodDecorator<T> { | ||
| return (_target, _key, descriptor) => { | ||
| const originalFn = descriptor.value | ||
| descriptor.value = _debounce(originalFn as any, wait, opt) | ||
| const originalFn = descriptor.value! | ||
| descriptor.value = _debounce<T>(originalFn, wait, opt) | ||
| return descriptor | ||
| } | ||
| } | ||
|
|
||
| export function _Throttle(wait: number, opt: ThrottleOptions = {}): MethodDecorator { | ||
| export function _Throttle<T extends AnyFunction>( | ||
| wait: number, | ||
| opt: ThrottleOptions = {}, | ||
| ): MethodDecorator<T> { | ||
| return (_target, _key, descriptor) => { | ||
| const originalFn = descriptor.value | ||
| descriptor.value = _throttle(originalFn as any, wait, opt) | ||
| const originalFn = descriptor.value! | ||
| descriptor.value = _throttle<T>(originalFn, wait, opt) | ||
| return descriptor | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * Like `@_Debounce`, but for async methods: every call returns a real Promise resolving with the | ||
| * coalesced invocation's result, so `await`-ing never yields a stale value or a non-promise | ||
| * | ||
| * Be aware that the decorated method may resolve `undefined` if the config yields no invocation, | ||
| * which the method's `T` type can't express. | ||
| * | ||
| * @experimental | ||
| */ | ||
| export function _AsyncDebounce<T extends AnyAsyncFunction>( | ||
| wait: number, | ||
| opt: AsyncDebounceOptions = {}, | ||
| ): MethodDecorator<T> { | ||
| return (_target, _key, descriptor) => { | ||
| const originalFn = descriptor.value! | ||
| descriptor.value = _asyncDebounce<T>(originalFn, wait, opt) as any | ||
| return descriptor | ||
|
frodi-karlsson marked this conversation as resolved.
|
||
| } | ||
| } | ||
|
|
||
| /** | ||
| * Like `@_Throttle`, but for async methods. | ||
| * | ||
| * @see {@link _AsyncDebounce} | ||
| * | ||
| * @experimental | ||
| */ | ||
| export function _AsyncThrottle<T extends AnyAsyncFunction>( | ||
| wait: number, | ||
| opt: AsyncThrottleOptions = {}, | ||
| ): MethodDecorator<T> { | ||
| return (_target, _key, descriptor) => { | ||
| const originalFn = descriptor.value! | ||
| descriptor.value = _asyncThrottle<T>(originalFn, wait, opt) as any | ||
| return descriptor | ||
| } | ||
| } | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.