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