mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 15:54:31 +00:00
feat/generator: add orientation tags
This commit is contained in:
parent
aa8bcbb209
commit
ae7ccbc308
2 changed files with 26 additions and 0 deletions
|
@ -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"
|
||||||
|
|
|
@ -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}
|
||||||
|
|
Loading…
Add table
Reference in a new issue