Skip to content

Commit e0f20f6

Browse files
committed
feat(question): add #345 - useDebounce
1 parent 5bffe68 commit e0f20f6

File tree

5 files changed

+53
-0
lines changed

5 files changed

+53
-0
lines changed

questions/345-usedebounce/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!--info-header-start-->
2+
<!--info-header-end-->
3+
4+
5+
For this challenge, you need implement a debounce Composable Function. Let's go.
6+
7+
8+
<!--info-footer-start-->
9+
<!--info-footer-end-->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!--info-header-start-->
2+
<!--info-header-end-->
3+
4+
5+
<i>For this challenge, you need implement a debounce Composable Function.</i><b>对于此挑战,您需要实现可访问的可组合功能。</b> <i>Let&#39;s go.</i><b>我们走吧。</b>
6+
7+
8+
<!--info-footer-start-->
9+
<!--info-footer-end-->

questions/345-usedebounce/info.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
difficulty: hard
2+
title: useDebounce
3+
tags: Composable Function
4+
author:
5+
github: murongg
6+
name: 木荣
7+
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
difficulty: hard
2+
title: 用过
3+
tags: Composable Function
4+
author:
5+
github: murongg
6+
name: 木荣
7+
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { Ref} from 'vue'
2+
3+
interface UseDebounceOptions {
4+
leading?: boolean // Specify invoking on the leading edge of the timeout.
5+
maxWait?: number // The maximum time func is allowed to be delayed before it's invoked.
6+
trailing?: boolean // Specify invoking on the trailing edge of the timeout.
7+
}
8+
9+
type MaybeRef<T> = T | Ref<T>
10+
type UseDebounce = <T extends (...args: any[]) => any>(fn: T, wait: MaybeRef<number>, options?: UseDebounceOptions) => T
11+
12+
/**
13+
* useDebounce
14+
* @param fn The function to debounce.
15+
* @param wait The number of milliseconds to delay.
16+
* @param options The options object.
17+
* @return Returns the new debounced function.
18+
*/
19+
const useDebounce: UseDebounce = (fn, wait, options) => {
20+
// do someting...
21+
}

0 commit comments

Comments
 (0)