mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* feat: add rhea * fix: blocks * feat: build chat example * fix * fix: sidebar * fix * feat: update home * fix * fix * fix * feat: optimizine fonts * feat * fix * fix * fix * fix * fix * fix * fix: font in preview * fix
147 lines
3.6 KiB
TypeScript
147 lines
3.6 KiB
TypeScript
import * as React from "react"
|
|
import { type Metadata } from "next"
|
|
import { notFound } from "next/navigation"
|
|
|
|
import { siteConfig } from "@/lib/config"
|
|
import { absoluteUrl } from "@/lib/utils"
|
|
import { TailwindIndicator } from "@/components/tailwind-indicator"
|
|
import { BASES, type Base } from "@/registry/config"
|
|
import { ActionMenuScript } from "@/app/(app)/create/components/action-menu"
|
|
import { DesignSystemProvider } from "@/app/(app)/create/components/design-system-provider"
|
|
import { HistoryScript } from "@/app/(app)/create/components/history-buttons"
|
|
import { DarkModeScript } from "@/app/(app)/create/components/mode-switcher"
|
|
import { OpenPresetScript } from "@/app/(app)/create/components/open-preset"
|
|
import { PreviewStyle } from "@/app/(app)/create/components/preview-style"
|
|
import { RandomizeScript } from "@/app/(app)/create/components/random-button"
|
|
import { getBaseComponent, getBaseItem } from "@/app/(app)/create/lib/api"
|
|
|
|
import "@/app/style-registry.css"
|
|
|
|
export const revalidate = false
|
|
export const dynamic = "force-static"
|
|
export const dynamicParams = true
|
|
|
|
const STATIC_PREVIEW_ITEMS = ["preview", "preview-02"] as const
|
|
|
|
function PreventScrollOnFocusScript() {
|
|
return (
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `(function(){var f=HTMLElement.prototype.focus;HTMLElement.prototype.focus=function(o){f.call(this,Object.assign({},o,{preventScroll:true}))};})();`,
|
|
}}
|
|
/>
|
|
)
|
|
}
|
|
|
|
const getCacheRegistryItem = React.cache(
|
|
async (name: string, base: Base["name"]) => {
|
|
return await getBaseItem(name, base)
|
|
}
|
|
)
|
|
|
|
const getCachedRegistryComponent = React.cache(
|
|
async (name: string, base: Base["name"]) => {
|
|
return await getBaseComponent(name, base)
|
|
}
|
|
)
|
|
|
|
export async function generateMetadata({
|
|
params,
|
|
}: {
|
|
params: Promise<{
|
|
base: string
|
|
name: string
|
|
}>
|
|
}): Promise<Metadata> {
|
|
const paramBag = await params
|
|
const base = BASES.find((l) => l.name === paramBag.base)
|
|
|
|
if (!base) {
|
|
return {}
|
|
}
|
|
const item = await getBaseItem(paramBag.name, base.name)
|
|
|
|
if (!item) {
|
|
return {}
|
|
}
|
|
|
|
const title = item.name
|
|
const description = item.description
|
|
|
|
return {
|
|
title: item.name,
|
|
description,
|
|
openGraph: {
|
|
title,
|
|
description,
|
|
type: "article",
|
|
url: absoluteUrl(`/preview/${base.name}/${item.name}`),
|
|
images: [
|
|
{
|
|
url: siteConfig.ogImage,
|
|
width: 1200,
|
|
height: 630,
|
|
alt: siteConfig.name,
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title,
|
|
description,
|
|
images: [siteConfig.ogImage],
|
|
creator: "@shadcn",
|
|
},
|
|
}
|
|
}
|
|
|
|
export async function generateStaticParams() {
|
|
return BASES.flatMap((base) =>
|
|
STATIC_PREVIEW_ITEMS.map((name) => ({
|
|
base: base.name,
|
|
name,
|
|
}))
|
|
)
|
|
}
|
|
|
|
export default async function BlockPage({
|
|
params,
|
|
}: {
|
|
params: Promise<{
|
|
base: string
|
|
name: string
|
|
}>
|
|
}) {
|
|
const paramBag = await params
|
|
const base = BASES.find((l) => l.name === paramBag.base)
|
|
|
|
if (!base) {
|
|
return notFound()
|
|
}
|
|
|
|
const [item, Component] = await Promise.all([
|
|
getCacheRegistryItem(paramBag.name, base.name),
|
|
getCachedRegistryComponent(paramBag.name, base.name),
|
|
])
|
|
|
|
if (!item || !Component) {
|
|
return notFound()
|
|
}
|
|
|
|
return (
|
|
<div className="relative bg-background">
|
|
<PreventScrollOnFocusScript />
|
|
<PreviewStyle />
|
|
<ActionMenuScript />
|
|
<OpenPresetScript />
|
|
<RandomizeScript />
|
|
<HistoryScript />
|
|
<DarkModeScript />
|
|
<DesignSystemProvider>
|
|
<Component />
|
|
</DesignSystemProvider>
|
|
<TailwindIndicator forceMount />
|
|
</div>
|
|
)
|
|
}
|