mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 07:44: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
|
||||
</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) => (
|
||||
<button
|
||||
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)
|
||||
.toString()
|
||||
.padStart(2, "0")}/${date.getFullYear()}`;
|
||||
aspectRatio < 0.95 ? image.tags.push("portrait") : aspectRatio > 1.05 ? image.tags.push("landscape") : image.tags.push("square");
|
||||
|
||||
return (
|
||||
<a
|
||||
href={image.image}
|
||||
|
|
Loading…
Add table
Reference in a new issue