Ben Lin
2024-12-26 056f7fd796fcbb4f0383db72795f99007b8749ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import type { DebouncedFunc, DebounceSettings } from 'lodash-es';
import { debounce } from 'lodash-es';
import { computed, ref, watchEffect } from 'vue';
 
import type { UseRequestPlugin } from '../types';
 
const useDebouncePlugin: UseRequestPlugin<any, any[]> = (
  fetchInstance,
  { debounceWait, debounceLeading, debounceTrailing, debounceMaxWait },
) => {
  const debouncedRef = ref<DebouncedFunc<any>>();
 
  const options = computed(() => {
    const ret: DebounceSettings = {};
 
    if (debounceLeading !== undefined) {
      ret.leading = debounceLeading;
    }
    if (debounceTrailing !== undefined) {
      ret.trailing = debounceTrailing;
    }
    if (debounceMaxWait !== undefined) {
      ret.maxWait = debounceMaxWait;
    }
 
    return ret;
  });
 
  watchEffect(() => {
    if (debounceWait) {
      const _originRunAsync = fetchInstance.runAsync.bind(fetchInstance);
 
      debouncedRef.value = debounce(
        (callback) => {
          callback();
        },
        debounceWait,
        options.value,
      );
 
      // debounce runAsync should be promise
      // https://github.com/lodash/lodash/issues/4400#issuecomment-834800398
      fetchInstance.runAsync = (...args) => {
        return new Promise((resolve, reject) => {
          debouncedRef.value?.(() => {
            _originRunAsync(...args)
              .then(resolve)
              .catch(reject);
          });
        });
      };
 
      return () => {
        debouncedRef.value?.cancel();
        fetchInstance.runAsync = _originRunAsync;
      };
    }
  });
 
  if (!debounceWait) {
    return {};
  }
 
  return {
    onCancel: () => {
      debouncedRef.value?.cancel();
    },
  };
};
 
export default useDebouncePlugin;