tdesign-vue
Version:
44 lines (40 loc) • 1.39 kB
JavaScript
/**
* tdesign v1.14.1
* (c) 2025 tdesign
* @license MIT
*/
import { computed, ref, onMounted, nextTick } from '@vue/composition-api';
import observe from '../_common/js/utils/observe.js';
function useLazyLoad(containerRef, childRef, params) {
var tRowHeight = computed(function () {
return Math.max(params.rowHeight || 48, 48);
});
var isInit = ref(false);
var hasLazyLoadHolder = computed(function () {
return (params === null || params === void 0 ? void 0 : params.type) === "lazy" && !isInit.value;
});
var requestAnimationFrame = (typeof window === "undefined" ? false : window.requestAnimationFrame) || function (cb) {
return setTimeout(cb, 16.6);
};
var init = function init() {
if (!isInit.value) {
requestAnimationFrame(function () {
isInit.value = true;
});
}
};
onMounted(function () {
if ((params === null || params === void 0 ? void 0 : params.type) !== "lazy") return;
nextTick(function () {
var bufferSize = Math.max(10, params.bufferSize || 10);
var height = tRowHeight.value * bufferSize;
observe(childRef.value, containerRef === null || containerRef === void 0 ? void 0 : containerRef.value, init, height);
});
});
return {
hasLazyLoadHolder: hasLazyLoadHolder,
tRowHeight: tRowHeight
};
}
export { useLazyLoad as default };
//# sourceMappingURL=useLazyLoad.js.map