2024-12-02 10:45:50 +01:00
|
|
|
(function() {
|
|
|
|
// Configuration
|
2025-03-26 20:27:07 +01:00
|
|
|
const imageStatusInterval = 500;
|
|
|
|
const scrollThreshold = 500;
|
2024-12-02 21:32:30 +01:00
|
|
|
const loadingIndicator = document.getElementById('message-bottom-left');
|
|
|
|
let loadingTimer;
|
2024-12-02 10:45:50 +01:00
|
|
|
let isFetching = false;
|
|
|
|
let page = parseInt(document.getElementById('template-data').getAttribute('data-page')) || 1;
|
|
|
|
let query = document.getElementById('template-data').getAttribute('data-query');
|
|
|
|
let hardCacheEnabled = document.getElementById('template-data').getAttribute('data-hard-cache-enabled') === 'true';
|
2025-03-26 20:27:07 +01:00
|
|
|
let noMoreImages = false;
|
2024-12-02 10:45:50 +01:00
|
|
|
|
|
|
|
let imageElements = [];
|
|
|
|
let imageIds = [];
|
2025-03-26 20:27:07 +01:00
|
|
|
let imageStatusTimer;
|
2024-12-02 10:45:50 +01:00
|
|
|
|
|
|
|
function handleImageError(imgElement, retryCount = 3, retryDelay = 1000) {
|
|
|
|
if (retryCount > 0) {
|
|
|
|
setTimeout(() => {
|
|
|
|
imgElement.src = imgElement.getAttribute('data-full');
|
2025-03-26 20:27:07 +01:00
|
|
|
imgElement.onerror = () => handleImageError(imgElement, retryCount - 1, retryDelay);
|
2024-12-02 10:45:50 +01:00
|
|
|
}, retryDelay);
|
|
|
|
} else {
|
2025-03-26 20:27:07 +01:00
|
|
|
console.warn('Image failed to load:', imgElement.getAttribute('data-full'));
|
|
|
|
imgElement.parentElement.style.display = 'none';
|
2024-12-02 10:45:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function ensureScrollable() {
|
2025-03-26 20:27:07 +01:00
|
|
|
if (noMoreImages) return;
|
2024-12-02 10:45:50 +01:00
|
|
|
if (document.body.scrollHeight <= window.innerHeight) {
|
|
|
|
fetchNextPage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function fetchNextPage() {
|
|
|
|
if (isFetching || noMoreImages) return;
|
2024-12-02 21:32:30 +01:00
|
|
|
loadingTimer = setTimeout(() => {
|
|
|
|
loadingIndicator.style.display = 'flex';
|
|
|
|
}, 150);
|
2024-12-02 10:45:50 +01:00
|
|
|
isFetching = true;
|
|
|
|
page += 1;
|
2025-03-26 20:27:07 +01:00
|
|
|
|
2024-12-02 10:45:50 +01:00
|
|
|
fetch(`/search?q=${encodeURIComponent(query)}&t=image&p=${page}&ajax=true`)
|
|
|
|
.then(response => response.text())
|
|
|
|
.then(html => {
|
2025-03-26 20:27:07 +01:00
|
|
|
clearTimeout(loadingTimer);
|
|
|
|
loadingIndicator.style.display = 'none';
|
|
|
|
|
|
|
|
let tempDiv = document.createElement('div');
|
|
|
|
tempDiv.innerHTML = html;
|
|
|
|
let newImages = tempDiv.querySelectorAll('.image');
|
|
|
|
|
2024-12-02 10:45:50 +01:00
|
|
|
if (newImages.length > 0) {
|
|
|
|
let resultsContainer = document.querySelector('.images');
|
|
|
|
newImages.forEach(imageDiv => {
|
2025-03-26 20:27:07 +01:00
|
|
|
let clonedImageDiv = imageDiv.cloneNode(true);
|
|
|
|
resultsContainer.appendChild(clonedImageDiv);
|
|
|
|
|
|
|
|
let img = clonedImageDiv.querySelector('img');
|
|
|
|
if (img && img.getAttribute('data-id')) {
|
2024-12-02 10:45:50 +01:00
|
|
|
if (hardCacheEnabled) {
|
|
|
|
img.src = '/static/images/placeholder.svg';
|
2025-03-26 20:27:07 +01:00
|
|
|
img.onerror = () => handleImageError(img);
|
|
|
|
imageElements.push(img);
|
|
|
|
imageIds.push(img.getAttribute('data-id'));
|
2024-12-05 19:19:18 +01:00
|
|
|
} else {
|
|
|
|
img.src = img.getAttribute('data-full');
|
2025-03-26 20:27:07 +01:00
|
|
|
img.onerror = () => handleImageError(img);
|
2024-12-02 10:45:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2025-03-26 20:27:07 +01:00
|
|
|
|
2024-12-02 10:45:50 +01:00
|
|
|
if (hardCacheEnabled) {
|
2025-03-26 20:27:07 +01:00
|
|
|
checkImageStatus(); // Immediately check status for new images
|
2024-12-02 10:45:50 +01:00
|
|
|
}
|
|
|
|
ensureScrollable();
|
|
|
|
} else {
|
|
|
|
noMoreImages = true;
|
|
|
|
}
|
|
|
|
isFetching = false;
|
|
|
|
})
|
|
|
|
.catch(error => {
|
2025-03-26 20:27:07 +01:00
|
|
|
clearTimeout(loadingTimer);
|
|
|
|
loadingIndicator.style.display = 'none';
|
|
|
|
console.error('Fetch error:', error);
|
2024-12-02 10:45:50 +01:00
|
|
|
isFetching = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkImageStatus() {
|
2025-03-26 20:27:07 +01:00
|
|
|
if (!hardCacheEnabled || imageIds.length === 0) return;
|
2024-12-02 10:45:50 +01:00
|
|
|
|
|
|
|
fetch(`/image_status?image_ids=${imageIds.join(',')}`)
|
|
|
|
.then(response => response.json())
|
|
|
|
.then(statusMap => {
|
2025-03-26 20:27:07 +01:00
|
|
|
const pendingImages = [];
|
|
|
|
const pendingIds = [];
|
|
|
|
|
|
|
|
imageElements.forEach(img => {
|
|
|
|
const id = img.getAttribute('data-id');
|
2024-12-02 10:45:50 +01:00
|
|
|
if (statusMap[id]) {
|
|
|
|
img.src = statusMap[id];
|
2025-03-26 20:27:07 +01:00
|
|
|
img.onerror = () => handleImageError(img);
|
|
|
|
} else {
|
|
|
|
pendingImages.push(img);
|
|
|
|
pendingIds.push(id);
|
2024-12-02 10:45:50 +01:00
|
|
|
}
|
|
|
|
});
|
2025-03-26 20:27:07 +01:00
|
|
|
|
|
|
|
imageElements = pendingImages;
|
|
|
|
imageIds = pendingIds;
|
2024-12-02 10:45:50 +01:00
|
|
|
ensureScrollable();
|
|
|
|
})
|
|
|
|
.catch(error => {
|
2025-03-26 20:27:07 +01:00
|
|
|
console.error('Status check error:', error);
|
2024-12-02 10:45:50 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2025-03-26 20:27:07 +01:00
|
|
|
// Initialize
|
|
|
|
document.querySelectorAll('img[data-id]').forEach(img => {
|
|
|
|
const id = img.getAttribute('data-id');
|
|
|
|
if (id) {
|
|
|
|
imageElements.push(img);
|
|
|
|
imageIds.push(id);
|
|
|
|
if (hardCacheEnabled) {
|
|
|
|
img.src = '/static/images/placeholder.svg';
|
|
|
|
} else {
|
|
|
|
img.src = img.getAttribute('data-full');
|
|
|
|
}
|
|
|
|
img.onerror = () => handleImageError(img);
|
|
|
|
}
|
|
|
|
});
|
2024-12-02 10:45:50 +01:00
|
|
|
|
2024-12-05 19:19:18 +01:00
|
|
|
if (hardCacheEnabled) {
|
2025-03-26 20:27:07 +01:00
|
|
|
imageStatusTimer = setInterval(checkImageStatus, imageStatusInterval);
|
|
|
|
checkImageStatus();
|
2024-12-02 10:45:50 +01:00
|
|
|
}
|
|
|
|
|
2024-12-05 19:19:18 +01:00
|
|
|
window.addEventListener('load', ensureScrollable);
|
2025-03-26 20:27:07 +01:00
|
|
|
window.addEventListener('scroll', () => {
|
2024-12-02 10:45:50 +01:00
|
|
|
if (isFetching || noMoreImages) return;
|
|
|
|
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - scrollThreshold) {
|
|
|
|
fetchNextPage();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2025-03-26 20:27:07 +01:00
|
|
|
// Cleanup
|
|
|
|
window.addEventListener('beforeunload', () => {
|
|
|
|
if (imageStatusTimer) clearInterval(imageStatusTimer);
|
|
|
|
});
|
2024-12-02 10:45:50 +01:00
|
|
|
})();
|