This commit is contained in:
Laura Hausmann 2023-11-23 15:01:34 +01:00
parent 818eb47663
commit eacf726043
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -71,18 +71,15 @@ defineExpose({
scrollTop, scrollTop,
}); });
const fetchedRecently = ref(false); const lastFetchPos = ref(0);
setInterval(() => { setInterval(() => {
if (!tlEl.value || fetchedRecently.value) return; if (!tlEl.value) return;
const viewport = document.documentElement.clientHeight; const viewport = document.documentElement.clientHeight;
const left = document.documentElement.scrollHeight - document.documentElement.scrollTop; const left = document.documentElement.scrollHeight - document.documentElement.scrollTop;
if (left <= viewport * 3) { if (left <= viewport * 3) {
pagingComponent.value.fetchMore(); pagingComponent.value.fetchMore();
fetchedRecently.value = true; lastFetchPos.value = document.documentElement.scrollTop;
setTimeout(() => {
fetchedRecently.value = false;
}, 500);
} }
}, 100); }, 100);
</script> </script>