52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
![]() |
import type { Metadata, ResolvingMetadata } from "next";
|
||
|
import { get } from "@/lib/server-actions/events/cache";
|
||
|
|
||
|
export async function generateMetadata(
|
||
|
{ params }: { params: { naddr: string } },
|
||
|
parent: ResolvingMetadata,
|
||
|
): Promise<Metadata> {
|
||
|
// read route params
|
||
|
const identifier = params.naddr;
|
||
|
|
||
|
// fetch data
|
||
|
const event = await get(identifier);
|
||
|
|
||
|
// optionally access and extend (rather than replace) parent metadata
|
||
|
const previousImages = (await parent).openGraph?.images || [];
|
||
|
if (!event) {
|
||
|
return {
|
||
|
title: "Flockstr Calendar",
|
||
|
openGraph: {
|
||
|
images: previousImages,
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
const title = `${event.name} | Flockstr`;
|
||
|
const images = event.image
|
||
|
? [event.image, ...previousImages]
|
||
|
: previousImages;
|
||
|
return {
|
||
|
title: title,
|
||
|
description: event.description,
|
||
|
openGraph: {
|
||
|
title: title,
|
||
|
description: event.description,
|
||
|
images: images,
|
||
|
},
|
||
|
twitter: {
|
||
|
title: title,
|
||
|
description: event.description,
|
||
|
images: images,
|
||
|
card: "summary_large_image",
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default function metadataLayout({
|
||
|
children,
|
||
|
}: {
|
||
|
children: React.ReactNode;
|
||
|
}) {
|
||
|
return <>{children}</>;
|
||
|
}
|