@element-plus-next/vue-hooks
Version:
Vue hooks for Element Plus.
32 lines (27 loc) • 665 B
text/typescript
import { onMounted, ref, watch } from 'vue'
import type { Ref } from 'vue'
export const useThrottleRender = (loading: Ref<boolean>, throttle = 0) => {
if (throttle === 0) return loading
const throttled = ref(false)
let timeoutHandle = 0
const dispatchThrottling = () => {
if (timeoutHandle) {
clearTimeout(timeoutHandle)
}
timeoutHandle = window.setTimeout(() => {
throttled.value = loading.value
}, throttle)
}
onMounted(dispatchThrottling)
watch(
() => loading.value,
(val) => {
if (val) {
dispatchThrottling()
} else {
throttled.value = val
}
}
)
return throttled
}