python-gallery/onlylegs/static/js/grid.js

88 lines
2.7 KiB
JavaScript

function makeGrid() {
// Get the container and images
const container = document.querySelector('.gallery-grid');
const images = document.querySelectorAll('.gallery-item');
// Set the gap between images
const gap = 0.6 * 16;
const maxWidth = container.clientWidth - gap;
const maxHeight = 13 * 16;
if (window.innerWidth < 800) {
for (let i = 0; i < images.length; i++) {
images[i].style.height = images[i].offsetWidth + 'px';
images[i].style.width = null;
images[i].style.left = null;
images[i].style.top = null;
}
container.style.height = null;
return;
}
// Calculate the width and height of each image
let calculated = {};
for (let i = 0; i < images.length; i++) {
const image = images[i].querySelector('img');
const width = image.naturalWidth;
const height = image.naturalHeight;
let ratio = width / height;
const newWidth = maxHeight * ratio;
if (newWidth > maxWidth) {
newWidth = maxWidth / 3 - gap; // 3 images per row max
ratio = newWidth / height;
}
calculated[i] = {"width": newWidth,
"height": maxHeight,
"ratio": ratio};
}
// Next images position
let nextTop = gap;
let nextLeft = gap;
for (let i = 0; i < images.length; i++) {
let currentRow = [];
let currectLength = 0;
// While the row is not full add images to it
while (currectLength < maxWidth && i !== images.length) {
currentRow.push(i);
currectLength += calculated[i]["width"];
i++;
}
// Go back one image since the last one pushed the row over the limit
i--;
// Calculate the amount of space required to fill the row
const currentRowDiff = (currectLength - maxWidth);
// Cycle through the images in the row and adjust their width and left position
for (let j = 0; j < currentRow.length; j++) {
const image = images[currentRow[j]];
const data = calculated[currentRow[j]];
// Shrink compared to the % of the row it takes up
const shrink = currentRowDiff * (data["width"] / currectLength);
image.style.width = data["width"] - shrink - gap + 'px';
image.style.height = data["height"] + 'px';
image.style.left = nextLeft + 'px';
image.style.top = nextTop + 'px';
nextLeft += data["width"] - shrink;
}
// Reset for the next row
nextTop += maxHeight + gap;
nextLeft = gap;
}
container.style.height = nextTop + 'px';
}