mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
33 lines
731 B
TypeScript
33 lines
731 B
TypeScript
import { onMounted, ref, watch } from 'vue'
|
|
|
|
import type { Ref } from 'vue'
|
|
import type { TimeoutHandle } from '@element-plus/utils/types'
|
|
|
|
export default function (loading: Ref<boolean>, throttle = 0) {
|
|
if (throttle === 0) return loading
|
|
const throttled = ref(false)
|
|
let timeoutHandle: 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
|
|
}
|