You've already forked Ghost-Theme-Source
Pagination, responsive video, and lightbox
This commit is contained in:
95
assets/js/pagination.js
Normal file
95
assets/js/pagination.js
Normal file
@@ -0,0 +1,95 @@
|
||||
function pagination(isInfinite = true, done, isMasonry = false) {
|
||||
const feedElement = document.querySelector('.gh-feed');
|
||||
if (!feedElement) return;
|
||||
|
||||
let loading = false;
|
||||
const target = feedElement.nextElementSibling || document.querySelector('.gh-footer');
|
||||
const buttonElement = document.querySelector('.gh-loadmore');
|
||||
|
||||
if (!document.querySelector('link[rel=next]') && buttonElement) {
|
||||
buttonElement.remove();
|
||||
}
|
||||
|
||||
const loadNextPage = async function () {
|
||||
const nextElement = document.querySelector('link[rel=next]');
|
||||
if (!nextElement) return;
|
||||
|
||||
try {
|
||||
const res = await fetch(nextElement.href);
|
||||
const html = await res.text();
|
||||
const parser = new DOMParser();
|
||||
const doc = parser.parseFromString(html, 'text/html');
|
||||
|
||||
const postElements = doc.querySelectorAll('.gh-feed:not(.gh-featured):not(.gh-related) > *');
|
||||
const fragment = document.createDocumentFragment();
|
||||
const elems = [];
|
||||
|
||||
postElements.forEach(function (post) {
|
||||
var clonedItem = document.importNode(post, true);
|
||||
|
||||
if (isMasonry) {
|
||||
clonedItem.style.visibility = 'hidden';
|
||||
}
|
||||
|
||||
fragment.appendChild(clonedItem);
|
||||
elems.push(clonedItem);
|
||||
});
|
||||
|
||||
feedElement.appendChild(fragment);
|
||||
|
||||
if (done) {
|
||||
done(elems, loadNextWithCheck);
|
||||
}
|
||||
|
||||
const resNextElement = doc.querySelector('link[rel=next]');
|
||||
if (resNextElement && resNextElement.href) {
|
||||
nextElement.href = resNextElement.href;
|
||||
} else {
|
||||
nextElement.remove();
|
||||
if (buttonElement) {
|
||||
buttonElement.remove();
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
nextElement.remove();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
||||
const loadNextWithCheck = async function () {
|
||||
if (target.getBoundingClientRect().top <= window.innerHeight && document.querySelector('link[rel=next]')) {
|
||||
await loadNextPage();
|
||||
}
|
||||
}
|
||||
|
||||
const callback = async function (entries) {
|
||||
if (loading) return;
|
||||
|
||||
loading = true;
|
||||
|
||||
if (entries[0].isIntersecting) {
|
||||
// keep loading next page until target is out of the viewport or we've loaded the last page
|
||||
if (!isMasonry) {
|
||||
while (target.getBoundingClientRect().top <= window.innerHeight && document.querySelector('link[rel=next]')) {
|
||||
await loadNextPage();
|
||||
}
|
||||
} else {
|
||||
await loadNextPage();
|
||||
}
|
||||
}
|
||||
|
||||
loading = false;
|
||||
|
||||
if (!document.querySelector('link[rel=next]')) {
|
||||
observer.disconnect();
|
||||
}
|
||||
};
|
||||
|
||||
const observer = new IntersectionObserver(callback);
|
||||
|
||||
if (isInfinite) {
|
||||
observer.observe(target);
|
||||
} else {
|
||||
buttonElement.addEventListener('click', loadNextPage);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user