Adding gallery navigation

main
Nicolas Ong 2025-02-23 15:10:40 +01:00
parent 25cabd1ccc
commit 7feb2c3039
3 changed files with 13 additions and 6 deletions

View File

@ -2,11 +2,13 @@
final class Gallery
{
public string $id;
public string $label;
public array $images = [];
public function __construct(string $label)
public function __construct(string $id, string $label)
{
$this->id = $id;
$this->label = $label;
}

View File

@ -46,14 +46,14 @@ final class Portfolio
if (!is_file($meta)) {
continue;
}
$galleries[] = $this->loadGallery($path, trim(file_get_contents($meta)));
$galleries[] = $this->loadGallery($path, $dir, trim(file_get_contents($meta)));
}
return $galleries;
}
private function loadGallery(string $dir, string $title): Gallery
private function loadGallery(string $dir, string $id, string $title): Gallery
{
$gallery = new Gallery($title);
$gallery = new Gallery($id, $title);
foreach (array_diff(scandir($dir, SCANDIR_SORT_DESCENDING), [".", ".."]) as $file) {
$path = "$dir/$file";
$meta = "$path.meta.txt";

View File

@ -9,10 +9,15 @@
<header>
<h1><a href="<?=$url?>"><?=$title?></a></h1>
</header>
<nav>
<?php foreach ($galleries as $gallery): ?>
<a href="#<?=$gallery->id?>"><?=$gallery->label?></a>
<?php endforeach; ?>
</nav>
<main>
<?php foreach ($galleries as $gallery): ?>
<h2><?=$gallery->label?></h2>
<ul class="gallery">
<ul id="<?=$gallery->id?>" class="gallery">
<?php foreach ($gallery->images as $image): ?>
<li>
<a class="thumbnail" href="<?=$image->full?>">