feat/generator: add orientation tags

This commit is contained in:
Kentai Radiquum 2025-02-22 00:44:43 +05:00
parent aa8bcbb209
commit ae7ccbc308
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 26 additions and 0 deletions

View file

@ -10,6 +10,30 @@ export default function Tags({ tags }: { tags: string[] }) {
> >
all all
</button> </button>
<button
className="bg-gray-800 rounded-lg px-4 py-1 text-sm"
key="all"
data-type="tag"
data-tag="portrait"
>
portrait
</button>
<button
className="bg-gray-800 rounded-lg px-4 py-1 text-sm"
key="all"
data-type="tag"
data-tag="landscape"
>
landscape
</button>
<button
className="bg-gray-800 rounded-lg px-4 py-1 text-sm"
key="all"
data-type="tag"
data-tag="square"
>
square
</button>
{tags.map((tag) => ( {tags.map((tag) => (
<button <button
className="bg-gray-800 rounded-lg px-4 py-1 text-sm hidden" className="bg-gray-800 rounded-lg px-4 py-1 text-sm hidden"

View file

@ -24,6 +24,8 @@ export default function YearPhotos({ year, images }: YearPhotosProps) {
const fmtDate = `${date.getDate()}/${(date.getMonth() + 1) const fmtDate = `${date.getDate()}/${(date.getMonth() + 1)
.toString() .toString()
.padStart(2, "0")}/${date.getFullYear()}`; .padStart(2, "0")}/${date.getFullYear()}`;
aspectRatio < 0.95 ? image.tags.push("portrait") : aspectRatio > 1.05 ? image.tags.push("landscape") : image.tags.push("square");
return ( return (
<a <a
href={image.image} href={image.image}