You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
754 B
33 lines
754 B
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var vue = require('vue');
|
|
|
|
const useThrottleRender = (loading, throttle = 0) => {
|
|
if (throttle === 0)
|
|
return loading;
|
|
const throttled = vue.ref(false);
|
|
let timeoutHandle = null;
|
|
const dispatchThrottling = () => {
|
|
if (timeoutHandle) {
|
|
clearTimeout(timeoutHandle);
|
|
}
|
|
timeoutHandle = setTimeout(() => {
|
|
throttled.value = loading.value;
|
|
}, throttle);
|
|
};
|
|
vue.onMounted(dispatchThrottling);
|
|
vue.watch(() => loading.value, (val) => {
|
|
if (val) {
|
|
dispatchThrottling();
|
|
} else {
|
|
throttled.value = val;
|
|
}
|
|
});
|
|
return throttled;
|
|
};
|
|
|
|
exports.useThrottleRender = useThrottleRender;
|
|
//# sourceMappingURL=index.js.map
|