Files

95 lines
2.8 KiB
TypeScript
Raw Permalink Normal View History

import type { Metadata } from "next"
import { getTranslations, getMessages, setRequestLocale } from "next-intl/server"
import { Link } from "@/i18n/navigation"
import { DocHeader } from "@/components/ui/doc-header"
import { Callout } from "@/components/ui/callout"
import { CommandTable, type CommandGroup } from "@/components/ui/command-table"
export async function generateMetadata({
params,
}: {
params: Promise<{ locale: string }>
}): Promise<Metadata> {
const { locale } = await params
const t = await getTranslations({ locale, namespace: "docs.helpInfo.systemCommands.meta" })
return {
title: t("title"),
description: t("description"),
keywords: [
"proxmox commands",
"pveversion",
"proxmox system commands",
"journalctl proxmox",
"systemctl proxmox",
"proxmox linux commands",
"pveperf",
"proxmox cli",
],
alternates: { canonical: "https://proxmenux.com/docs/help-info/system-commands" },
openGraph: {
title: t("ogTitle"),
description: t("ogDescription"),
type: "article",
url: "https://proxmenux.com/docs/help-info/system-commands",
},
twitter: {
card: "summary",
title: t("twitterTitle"),
description: t("twitterDescription"),
},
}
}
type RelatedItem = { href: string; label: string; tail?: string }
export default async function SystemCommandsPage({
params,
}: {
params: Promise<{ locale: string }>
}) {
const { locale } = await params
setRequestLocale(locale)
const t = await getTranslations({ locale, namespace: "docs.helpInfo.systemCommands" })
const messages = (await getMessages({ locale })) as unknown as {
docs: { helpInfo: { systemCommands: {
commandGroups: CommandGroup[]
related: { items: RelatedItem[] }
} } }
}
const commandGroups = messages.docs.helpInfo.systemCommands.commandGroups
const relatedItems = messages.docs.helpInfo.systemCommands.related.items
const em = (chunks: React.ReactNode) => <em>{chunks}</em>
return (
<div>
<DocHeader
title={t("header.title")}
description={t("header.description")}
section={t("header.section")}
estimatedMinutes={3}
scriptPath="help_info_menu.sh"
/>
<Callout variant="info" title={t("intro.title")}>
{t.rich("intro.body", { em })}
</Callout>
<CommandTable groups={commandGroups} />
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("related.heading")}</h2>
<ul className="list-disc pl-6 text-gray-800 leading-relaxed space-y-1">
{relatedItems.map((item) => (
<li key={item.href}>
<Link href={item.href} className="text-blue-600 hover:underline">
{item.label}
</Link>
{item.tail}
</li>
))}
</ul>
</div>
)
}