Skip to content

Commit

Permalink
Retry infinite scroll errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zedeus committed Jul 24, 2023
1 parent 39192bf commit 20b5cce
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions public/js/infiniteScroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function insertBeforeLast(node, elem) {
}

function getLoadMore(doc) {
return doc.querySelector('.show-more:not(.timeline-item)');
return doc.querySelector(".show-more:not(.timeline-item)");
}

function isDuplicate(item, itemClass) {
Expand All @@ -15,18 +15,19 @@ function isDuplicate(item, itemClass) {
return document.querySelector(itemClass + " .tweet-link[href='" + href + "']") != null;
}

window.onload = function() {
window.onload = function () {
const url = window.location.pathname;
const isTweet = url.indexOf("/status/") !== -1;
const containerClass = isTweet ? ".replies" : ".timeline";
const itemClass = containerClass + ' > div:not(.top-ref)';
const itemClass = containerClass + " > div:not(.top-ref)";

var html = document.querySelector("html");
var container = document.querySelector(containerClass);
var loading = false;

window.addEventListener('scroll', function() {
function handleScroll(failed) {
if (loading) return;

if (html.scrollTop + html.clientHeight >= html.scrollHeight - 3000) {
loading = true;
var loadMore = getLoadMore(document);
Expand All @@ -35,13 +36,15 @@ window.onload = function() {
loadMore.children[0].text = "Loading...";

var url = new URL(loadMore.children[0].href);
url.searchParams.append('scroll', 'true');
url.searchParams.append("scroll", "true");

fetch(url.toString()).then(function (response) {
if (response.status === 404) throw "error";

return response.text();
}).then(function (html) {
var parser = new DOMParser();
var doc = parser.parseFromString(html, 'text/html');
var doc = parser.parseFromString(html, "text/html");
loadMore.remove();

for (var item of doc.querySelectorAll(itemClass)) {
Expand All @@ -57,10 +60,18 @@ window.onload = function() {
if (isTweet) container.appendChild(newLoadMore);
else insertBeforeLast(container, newLoadMore);
}).catch(function (err) {
console.warn('Something went wrong.', err);
loading = true;
console.warn("Something went wrong.", err);
if (failed > 3) {
loadMore.children[0].text = "Error";
return;
}

loading = false;
handleScroll((failed || 0) + 1);
});
}
});
}

window.addEventListener("scroll", () => handleScroll());
};
// @license-end

0 comments on commit 20b5cce

Please sign in to comment.