From 35f491efb88c9e35e87b719a9e8b1be90c3c5918 Mon Sep 17 00:00:00 2001 From: tdro Date: Wed, 22 Nov 2023 15:06:15 -0500 Subject: static/js: Ensure correct width and height references --- assets/js/index.js | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 48 insertions(+), 2 deletions(-) (limited to 'assets') diff --git a/assets/js/index.js b/assets/js/index.js index 8a47f5a..543b5a1 100644 --- a/assets/js/index.js +++ b/assets/js/index.js @@ -573,7 +573,7 @@ } }; const view = element.getBoundingClientRect(); - return view.top >= -options.offset.top && view.left >= -options.offset.left && view.bottom <= (window.innerHeight || self.documentElement.clientHeight) + options.offset.bottom && view.right <= (window.innerWidth || self.documentElement.clientWidth) + options.offset.right; + return view.top >= -options.offset.top && view.left >= -options.offset.left && view.bottom <= (self.innerHeight || document.documentElement.clientHeight) + options.offset.bottom && view.right <= (self.innerWidth || document.documentElement.clientWidth) + options.offset.right; } [ "scroll", @@ -599,6 +599,52 @@ }); }); })(); +(function() { + function fetch(url, method, callback) { + const http = new XMLHttpRequest(); + http.onreadystatechange = function() { + if (callback && http.readyState === 4 && http.status === 200) { + callback(http); + } + }; + http.open(method, url); + http.send(); + return http; + } + [ + "scroll", + "DOMContentLoaded" + ].forEach(function(event) { + self.addEventListener(event, function() { + const remaining = Math.abs(document.documentElement.scrollHeight - document.documentElement.clientHeight - document.documentElement.scrollTop); + const traversed = self.pageYOffset; + const journey = remaining + traversed; + const ratio = traversed / journey * 100; + const threshold = ratio >= 50; + const pagination = document.querySelector('[data-type="pagination"]'); + if (!pagination) return; + const main = document.querySelector("main"); + const next = pagination.querySelector('[rel="next"]'); + const end = pagination.querySelector('[rel="last"]').title === "hidden"; + const asynchronous = document.querySelectorAll("[data-type='pagination']").length !== 1; + if (end || asynchronous) return pagination.remove(); + if (threshold) { + pagination.remove(); + fetch(next.href, "GET", function(http) { + const page = new DOMParser().parseFromString(http.responseText, "text/html"); + const items = page.querySelector("main").childNodes; + const paginate = page.querySelector('[data-type="pagination"]'); + for(let i1 = 0; i1 < items.length; i1++){ + main.appendChild(items[i1]); + } + main.after(paginate); + console.log("Fetch:", next.href, items); + }); + } + console.log("r:", remaining, "t:", traversed, "j:", journey, "%:", ratio); + }); + }); +})(); (function() { const relative = new Intl.RelativeTimeFormat("en", { localeMatcher: "best fit", @@ -609,7 +655,7 @@ offset: 100 }) { const view = element.getBoundingClientRect(); - return view.top >= -options.offset && view.left >= -options.offset && view.bottom <= (window.innerHeight || self.documentElement.clientHeight) + options.offset && view.right <= (window.innerWidth || self.documentElement.clientWidth) + options.offset; + return view.top >= -options.offset && view.left >= -options.offset && view.bottom <= (self.innerHeight || document.documentElement.clientHeight) + options.offset && view.right <= (self.innerWidth || document.documentElement.clientWidth) + options.offset; } const date = function(update) { const elements = document.querySelectorAll("time"); -- cgit v1.2.3