mirror of
https://github.com/wah-su/wahs.wah.su.git
synced 2025-04-05 15:54:37 +00:00
40 lines
1 KiB
JavaScript
40 lines
1 KiB
JavaScript
async function __tmp_loadImages() {
|
|
const container = document.getElementById("images_images");
|
|
|
|
let config = await get("/data/config.json");
|
|
let images = await get("/data/images.json");
|
|
|
|
const start = getOffset();
|
|
const end = getOffset() + getImagesPerPage();
|
|
|
|
const url = new URL(window.location.toString());
|
|
|
|
if (start < 0) {
|
|
url.searchParams.set("offset", 0);
|
|
window.location.href = url.href;
|
|
} else if (end > images.length) {
|
|
url.searchParams.set("offset", images.length - getImagesPerPage());
|
|
window.location.href = url.href;
|
|
}
|
|
|
|
images.slice(start, end).forEach((image, idx) => {
|
|
container.appendChild(Placeholder());
|
|
let Images = document.querySelectorAll('[data-type="placeholder__image__container"]');
|
|
const iid = Number(start) + Number(idx);
|
|
setTimeout(() => {
|
|
renderImage(
|
|
config.endpoint,
|
|
config.bucket,
|
|
config.prefix,
|
|
image,
|
|
iid,
|
|
Images[idx]
|
|
);
|
|
}, 250);
|
|
});
|
|
}
|
|
|
|
window.onload = () => {
|
|
enableNav();
|
|
__tmp_loadImages();
|
|
};
|