mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
bbd16a08e9
* refactor(hooks): remove use-css-var * refactor(hooks): remove use-events * refactor(hooks): remove use-migrating * refactor(hooks): remove use-transition * refactor(hooks): named export useAttrs * refactor(hooks): named export useFocus * refactor(hooks): refactor useFormItem * refactor(hooks): refactor useGlobalConfig * refactor(hooks): refactor useLocale * refactor(hooks): refactor useLockscreen * refactor(hooks): refactor useModal * refactor(hooks): refactor useModelToggle * refactor(hooks): refactor usePreventGlobal * refactor(hooks): refactor useRestoreActive * refactor(hooks): refactor useTeleport * refactor(hooks): refactor useThrottleRender * refactor(hooks): refactor useTimeout * refactor(hooks): refactor useTransitionFallthrogh
32 lines
665 B
TypeScript
32 lines
665 B
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
|
|
}
|