127 lines
3.6 KiB
TypeScript
127 lines
3.6 KiB
TypeScript
import { IconDetails } from "@/components/icon-details"
|
|
import { StructuredData } from "@/components/structured-data"
|
|
import { BASE_URL, GITHUB_URL, ICON_DETAIL_KEYWORDS, SITE_NAME, SITE_TAGLINE, TITLE_SEPARATOR, WEB_URL, getIconDescription, getIconSchema } from "@/constants"
|
|
import { getAllIcons, getAuthorData } from "@/lib/api"
|
|
import type { Metadata, ResolvingMetadata } from "next"
|
|
import Script from "next/script"
|
|
import { notFound } from "next/navigation"
|
|
|
|
export const dynamicParams = false
|
|
|
|
export async function generateStaticParams() {
|
|
const iconsData = await getAllIcons()
|
|
return Object.keys(iconsData).map((icon) => ({
|
|
icon,
|
|
}))
|
|
}
|
|
|
|
export const dynamic = "force-static"
|
|
|
|
type Props = {
|
|
params: Promise<{ icon: string }>
|
|
searchParams: Promise<{ [key: string]: string | string[] | undefined }>
|
|
}
|
|
|
|
export async function generateMetadata({ params, searchParams }: Props, parent: ResolvingMetadata): Promise<Metadata> {
|
|
const { icon } = await params
|
|
const iconsData = await getAllIcons()
|
|
if (!iconsData[icon]) {
|
|
notFound()
|
|
}
|
|
const authorData = await getAuthorData(iconsData[icon].update.author.id)
|
|
const authorName = authorData.name || authorData.login
|
|
const updateDate = new Date(iconsData[icon].update.timestamp)
|
|
const totalIcons = Object.keys(iconsData).length
|
|
|
|
console.debug(`Generated metadata for ${icon} by ${authorName} (${authorData.html_url}) updated at ${updateDate.toLocaleString()}`)
|
|
|
|
const iconImageUrl = `${BASE_URL}/png/${icon}.png`
|
|
const pageUrl = `${WEB_URL}/icons/${icon}`
|
|
const formattedIconName = icon
|
|
.split("-")
|
|
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
|
.join(" ")
|
|
|
|
const title = `${formattedIconName} Icon ${TITLE_SEPARATOR} ${SITE_NAME}`
|
|
const fullTitle = `${formattedIconName} Icon ${TITLE_SEPARATOR} ${SITE_NAME} ${TITLE_SEPARATOR} ${SITE_TAGLINE}`
|
|
const description = getIconDescription(formattedIconName, totalIcons)
|
|
|
|
return {
|
|
title,
|
|
description,
|
|
assets: [iconImageUrl],
|
|
category: "Icons",
|
|
keywords: ICON_DETAIL_KEYWORDS(formattedIconName),
|
|
icons: {
|
|
icon: iconImageUrl,
|
|
},
|
|
abstract: description,
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
openGraph: {
|
|
title: fullTitle,
|
|
description,
|
|
type: "article",
|
|
url: pageUrl,
|
|
authors: [authorName],
|
|
publishedTime: updateDate.toISOString(),
|
|
modifiedTime: updateDate.toISOString(),
|
|
section: "Icons",
|
|
tags: [formattedIconName, ...ICON_DETAIL_KEYWORDS(formattedIconName)],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: fullTitle,
|
|
description,
|
|
images: [iconImageUrl],
|
|
},
|
|
alternates: {
|
|
canonical: pageUrl,
|
|
media: {
|
|
png: iconImageUrl,
|
|
svg: `${BASE_URL}/svg/${icon}.svg`,
|
|
webp: `${BASE_URL}/webp/${icon}.webp`,
|
|
},
|
|
},
|
|
other: {
|
|
"revisit-after": "7 days",
|
|
}
|
|
}
|
|
}
|
|
|
|
export default async function IconPage({ params }: { params: Promise<{ icon: string }> }) {
|
|
const { icon } = await params
|
|
const iconsData = await getAllIcons()
|
|
const originalIconData = iconsData[icon]
|
|
|
|
if (!originalIconData) {
|
|
notFound()
|
|
}
|
|
|
|
const authorData = await getAuthorData(originalIconData.update.author.id)
|
|
const updateDate = new Date(originalIconData.update.timestamp)
|
|
const authorName = authorData.name || authorData.login
|
|
const formattedIconName = icon
|
|
.split("-")
|
|
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
|
.join(" ")
|
|
|
|
const imageSchema = getIconSchema(
|
|
formattedIconName,
|
|
icon,
|
|
authorName,
|
|
authorData.html_url,
|
|
updateDate.toISOString(),
|
|
Object.keys(iconsData).length
|
|
)
|
|
|
|
return (
|
|
<>
|
|
<StructuredData data={imageSchema} id="image-schema" />
|
|
<IconDetails icon={icon} iconData={originalIconData} authorData={authorData} />
|
|
</>
|
|
)
|
|
}
|