2026-03-02 00:55:08 +01:00
|
|
|
import type { ReactNode } from "react";
|
|
|
|
|
import Link from "next/link";
|
|
|
|
|
import { cn } from "@/utils/ui";
|
|
|
|
|
import { getSectionTitle, groupAndOrderChanges } from "../utils";
|
|
|
|
|
import type { Release } from "../utils";
|
|
|
|
|
|
|
|
|
|
export function ReleaseArticle({
|
|
|
|
|
variant,
|
|
|
|
|
isLatest,
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
variant: "list" | "detail";
|
|
|
|
|
isLatest?: boolean;
|
|
|
|
|
children: ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
if (variant === "list") {
|
|
|
|
|
return (
|
|
|
|
|
<article className="relative sm:pl-10">
|
|
|
|
|
<div aria-hidden className="absolute left-0 top-[3px] hidden sm:block">
|
|
|
|
|
<div
|
|
|
|
|
className={cn(
|
|
|
|
|
"size-[11px] rounded-full border-[1.5px]",
|
|
|
|
|
isLatest
|
|
|
|
|
? "border-foreground bg-foreground"
|
|
|
|
|
: "border-muted-foreground/30 bg-background",
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex flex-col gap-5">{children}</div>
|
|
|
|
|
</article>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return <article className="flex flex-col gap-8">{children}</article>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function ReleaseMeta({ release }: { release: Release }) {
|
|
|
|
|
return (
|
|
|
|
|
<span className="text-sm font-medium tracking-widest text-muted-foreground">
|
|
|
|
|
{release.version} — {release.date}
|
|
|
|
|
</span>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const titleSizes: Record<"h1" | "h2", string> = {
|
|
|
|
|
h1: "text-4xl",
|
|
|
|
|
h2: "text-2xl",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export function ReleaseTitle({
|
|
|
|
|
as: As,
|
|
|
|
|
href,
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
as: "h1" | "h2";
|
|
|
|
|
href?: string;
|
|
|
|
|
children: ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<As className={cn("font-bold tracking-tight", titleSizes[As])}>
|
|
|
|
|
{href ? (
|
|
|
|
|
<Link href={href} className="hover:underline underline-offset-4">
|
2026-03-02 13:13:07 +01:00
|
|
|
{children}
|
2026-03-02 00:55:08 +01:00
|
|
|
</Link>
|
|
|
|
|
) : (
|
|
|
|
|
children
|
|
|
|
|
)}
|
|
|
|
|
</As>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function ReleaseDescription({ children }: { children: ReactNode }) {
|
|
|
|
|
return (
|
|
|
|
|
<p className="text-base text-foreground leading-relaxed max-w-xl">
|
|
|
|
|
{children}
|
|
|
|
|
</p>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function ReleaseChanges({ release }: { release: Release }) {
|
|
|
|
|
const { grouped, orderedTypes } = groupAndOrderChanges({
|
|
|
|
|
changes: release.changes,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col gap-4">
|
|
|
|
|
{orderedTypes.map((type) => (
|
|
|
|
|
<div key={type} className="flex flex-col gap-1.5">
|
|
|
|
|
<h3 className="text-base font-semibold text-foreground">
|
|
|
|
|
{getSectionTitle(type)}:
|
|
|
|
|
</h3>
|
|
|
|
|
<ul className="list-disc pl-5 space-y-1.5">
|
|
|
|
|
{grouped[type].map((change) => (
|
|
|
|
|
<li
|
|
|
|
|
key={change.text}
|
|
|
|
|
className="text-base text-foreground leading-relaxed"
|
|
|
|
|
>
|
|
|
|
|
{change.text}
|
|
|
|
|
</li>
|
|
|
|
|
))}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|