Files
ProxMenux/web/app/[locale]/docs/help-info/zfs-commands/page.tsx

100 lines
2.9 KiB
TypeScript
Raw 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.zfsCommands.meta" })
return {
title: t("title"),
description: t("description"),
keywords: [
"zfs proxmox",
"zpool proxmox",
"zfs snapshot",
"zfs send receive",
"zpool scrub",
"zfs replication proxmox",
"zfs commands",
"zpool status",
"proxmox zfs cli",
],
alternates: { canonical: "https://proxmenux.com/docs/help-info/zfs-commands" },
openGraph: {
title: t("ogTitle"),
description: t("ogDescription"),
type: "article",
url: "https://proxmenux.com/docs/help-info/zfs-commands",
},
twitter: {
card: "summary",
title: t("twitterTitle"),
description: t("twitterDescription"),
},
}
}
type RelatedItem = { href: string; label: string; tail?: string }
export default async function ZFSManagementPage({
params,
}: {
params: Promise<{ locale: string }>
}) {
const { locale } = await params
setRequestLocale(locale)
const t = await getTranslations({ locale, namespace: "docs.helpInfo.zfsCommands" })
const messages = (await getMessages({ locale })) as unknown as {
docs: { helpInfo: { zfsCommands: {
commandGroups: CommandGroup[]
related: { items: RelatedItem[] }
} } }
}
const commandGroups = messages.docs.helpInfo.zfsCommands.commandGroups
const relatedItems = messages.docs.helpInfo.zfsCommands.related.items
const code = (chunks: React.ReactNode) => <code>{chunks}</code>
return (
<div>
<DocHeader
title={t("header.title")}
description={t("header.description")}
section={t("header.section")}
estimatedMinutes={5}
scriptPath="help_info_menu.sh"
/>
<Callout variant="info" title={t("intro.title")}>
{t.rich("intro.body", { code })}
</Callout>
<CommandTable groups={commandGroups} />
<Callout variant="tip" title={t("bestPractices.title")}>
{t.rich("bestPractices.bodyRich", { code })}
</Callout>
<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>
)
}