Skip to content

Commit f219d7b

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

File tree

5 files changed

+101
-0
lines changed

5 files changed

+101
-0
lines changed

questions/345-usedebounce/README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
```ts
8+
import type { Ref} from 'vue'
9+
10+
interface UseDebounceOptions {
11+
leading?: boolean // Specify invoking on the leading edge of the timeout.
12+
maxWait?: number // The maximum time func is allowed to be delayed before it's invoked.
13+
trailing?: boolean // Specify invoking on the trailing edge of the timeout.
14+
}
15+
16+
type MaybeRef<T> = T | Ref<T>
17+
type UseDebounce = <T extends (...args: any[]) => any>(fn: T, wait: MaybeRef<number>, options?: UseDebounceOptions) => T
18+
19+
/**
20+
* useDebounce
21+
* @param fn The function to debounce.
22+
* @param wait The number of milliseconds to delay.
23+
* @param options The options object.
24+
* @return Returns the new debounced function.
25+
*/
26+
const useDebounce: UseDebounce = (fn, wait, options) => {
27+
// do someting...
28+
}
29+
```
30+
31+
32+
<!--info-footer-start-->
33+
<!--info-footer-end-->
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
``TS
8+
导入类型{ref}从&#39;vue&#39;
9+
10+
接口使用ebounceOptions {
11+
领导?:布尔值//指定在超时的前沿调用。
12+
MaxWait?:NUMBER //允许弹药延迟的最大时间在调用之前被延迟。
13+
尾随?:布尔值//指定在超时的后缘上调用。
14+
}
15+
16+
<i>type MaybeRef</i><b>类型Mayberef</b><T> <i>= T |</i> <b>= t |</b> <i>Ref</i><b>参考</b><T>
17+
<i>type UseDebounce =</i><b>类型使用的bounce =</b><T extends (...args: any[]) => <i>any&gt;(fn: T, wait: MaybeRef</i><b>任何&gt;(fn:t,等等:Mayberef</b><number> <i>, options?: UseDebounceOptions) =&gt; T</i> <b>,选项?:使用了ebouncoptions)=&gt; t</b>
18+
19+
/**
20+
*使用
21+
* @param fn要调试的功能。
22+
* @Param等待毫秒延迟的毫秒数。
23+
* @param选项选项对象。
24+
* @return返回新的拒绝功能。
25+
*/
26+
const usedebounce:undereebounce =(fn,wait,options)=&gt; {
27+
//做一些...
28+
}
29+
````````
30+
31+
32+
<!--info-footer-start-->
33+
<!--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)