mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 15:14:12 +00:00
348 lines
9.6 KiB
TypeScript
348 lines
9.6 KiB
TypeScript
// @ts-nocheck
|
|
"use client"
|
|
|
|
import * as React from "react"
|
|
import Image from "next/image"
|
|
import Link from "next/link"
|
|
import { useMDXComponent } from "next-contentlayer2/hooks"
|
|
import { NpmCommands } from "types/unist"
|
|
|
|
import { Event } from "@/lib/events"
|
|
import { cn } from "@/lib/utils"
|
|
import { useConfig } from "@/hooks/use-config"
|
|
import { Callout } from "@/components/callout"
|
|
import { CodeBlockCommand } from "@/components/code-block-command"
|
|
import { CodeBlockWrapper } from "@/components/code-block-wrapper"
|
|
import { CodeTabs } from "@/components/code-tabs"
|
|
import { ComponentExample } from "@/components/component-example"
|
|
import { ComponentPreview } from "@/components/component-preview"
|
|
import { ComponentSource } from "@/components/component-source"
|
|
import { CopyButton, CopyNpmCommandButton } from "@/components/copy-button"
|
|
import { FrameworkDocs } from "@/components/framework-docs"
|
|
import { StyleWrapper } from "@/components/style-wrapper"
|
|
import {
|
|
Accordion,
|
|
AccordionContent,
|
|
AccordionItem,
|
|
AccordionTrigger,
|
|
} from "@/registry/new-york/ui/accordion"
|
|
import {
|
|
Alert,
|
|
AlertDescription,
|
|
AlertTitle,
|
|
} from "@/registry/new-york/ui/alert"
|
|
import { AspectRatio } from "@/registry/new-york/ui/aspect-ratio"
|
|
import { Button } from "@/registry/new-york/ui/button"
|
|
import {
|
|
Tabs,
|
|
TabsContent,
|
|
TabsList,
|
|
TabsTrigger,
|
|
} from "@/registry/new-york/ui/tabs"
|
|
import { Style } from "@/registry/registry-styles"
|
|
|
|
const components = {
|
|
Accordion,
|
|
AccordionContent,
|
|
AccordionItem,
|
|
AccordionTrigger,
|
|
Alert,
|
|
AlertTitle,
|
|
AlertDescription,
|
|
Button,
|
|
h1: ({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) => (
|
|
<h1
|
|
className={cn(
|
|
"font-heading mt-2 scroll-m-20 text-4xl font-bold",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h2: ({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) => (
|
|
<h2
|
|
className={cn(
|
|
"font-heading mt-16 scroll-m-20 border-b pb-4 text-xl font-semibold tracking-tight first:mt-0",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h3: ({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) => (
|
|
<h3
|
|
className={cn(
|
|
"font-heading mt-8 scroll-m-20 text-lg font-semibold tracking-tight",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h4: ({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) => (
|
|
<h4
|
|
className={cn(
|
|
"font-heading mt-8 scroll-m-20 text-lg font-semibold tracking-tight",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h5: ({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) => (
|
|
<h5
|
|
className={cn(
|
|
"mt-8 scroll-m-20 text-lg font-semibold tracking-tight",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h6: ({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>) => (
|
|
<h6
|
|
className={cn(
|
|
"mt-8 scroll-m-20 text-base font-semibold tracking-tight",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
a: ({ className, ...props }: React.HTMLAttributes<HTMLAnchorElement>) => (
|
|
<a
|
|
className={cn("font-medium underline underline-offset-4", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
p: ({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) => (
|
|
<p
|
|
className={cn("leading-[1.65rem] [&:not(:first-child)]:mt-6", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
strong: ({ className, ...props }: React.HTMLAttributes<HTMLElement>) => (
|
|
<strong className={cn("font-semibold", className)} {...props} />
|
|
),
|
|
ul: ({ className, ...props }: React.HTMLAttributes<HTMLUListElement>) => (
|
|
<ul className={cn("my-6 ml-6 list-disc", className)} {...props} />
|
|
),
|
|
ol: ({ className, ...props }: React.HTMLAttributes<HTMLOListElement>) => (
|
|
<ol className={cn("my-6 ml-6 list-decimal", className)} {...props} />
|
|
),
|
|
li: ({ className, ...props }: React.HTMLAttributes<HTMLElement>) => (
|
|
<li className={cn("mt-2", className)} {...props} />
|
|
),
|
|
blockquote: ({ className, ...props }: React.HTMLAttributes<HTMLElement>) => (
|
|
<blockquote
|
|
className={cn("mt-6 border-l-2 pl-6 italic", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
img: ({
|
|
className,
|
|
alt,
|
|
...props
|
|
}: React.ImgHTMLAttributes<HTMLImageElement>) => (
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
<img className={cn("rounded-md", className)} alt={alt} {...props} />
|
|
),
|
|
hr: ({ ...props }: React.HTMLAttributes<HTMLHRElement>) => (
|
|
<hr className="my-4 md:my-8" {...props} />
|
|
),
|
|
table: ({ className, ...props }: React.HTMLAttributes<HTMLTableElement>) => (
|
|
<div className="my-6 w-full overflow-y-auto">
|
|
<table
|
|
className={cn(
|
|
"relative w-full overflow-hidden border-none text-sm",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
</div>
|
|
),
|
|
tr: ({ className, ...props }: React.HTMLAttributes<HTMLTableRowElement>) => (
|
|
<tr
|
|
className={cn("last:border-b-none m-0 border-b", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
th: ({ className, ...props }: React.HTMLAttributes<HTMLTableCellElement>) => (
|
|
<th
|
|
className={cn(
|
|
"px-4 py-2 text-left font-bold [&[align=center]]:text-center [&[align=right]]:text-right",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
td: ({ className, ...props }: React.HTMLAttributes<HTMLTableCellElement>) => (
|
|
<td
|
|
className={cn(
|
|
"px-4 py-2 text-left [&[align=center]]:text-center [&[align=right]]:text-right",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
pre: ({
|
|
className,
|
|
__rawString__,
|
|
__npmCommand__,
|
|
__yarnCommand__,
|
|
__pnpmCommand__,
|
|
__bunCommand__,
|
|
__withMeta__,
|
|
__src__,
|
|
__event__,
|
|
__style__,
|
|
...props
|
|
}: React.HTMLAttributes<HTMLPreElement> & {
|
|
__style__?: Style["name"]
|
|
__rawString__?: string
|
|
__withMeta__?: boolean
|
|
__src__?: string
|
|
__event__?: Event["name"]
|
|
} & NpmCommands) => {
|
|
const isNpmCommand =
|
|
__npmCommand__ && __yarnCommand__ && __pnpmCommand__ && __bunCommand__
|
|
|
|
if (isNpmCommand) {
|
|
return (
|
|
<CodeBlockCommand
|
|
__npmCommand__={__npmCommand__}
|
|
__yarnCommand__={__yarnCommand__}
|
|
__pnpmCommand__={__pnpmCommand__}
|
|
__bunCommand__={__bunCommand__}
|
|
/>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<StyleWrapper styleName={__style__}>
|
|
<pre
|
|
className={cn(
|
|
"mb-4 mt-6 max-h-[650px] overflow-x-auto rounded-xl bg-zinc-950 py-4 dark:bg-zinc-900",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
{__rawString__ && (
|
|
<CopyButton
|
|
value={__rawString__}
|
|
src={__src__}
|
|
event={__event__}
|
|
className={cn("absolute right-4 top-4", __withMeta__ && "top-16")}
|
|
/>
|
|
)}
|
|
</StyleWrapper>
|
|
)
|
|
},
|
|
code: ({ className, ...props }: React.HTMLAttributes<HTMLElement>) => (
|
|
<code
|
|
className={cn(
|
|
"relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
Image,
|
|
Callout,
|
|
ComponentPreview,
|
|
ComponentExample,
|
|
ComponentSource,
|
|
AspectRatio,
|
|
CodeBlockWrapper: ({ ...props }) => (
|
|
<CodeBlockWrapper className="rounded-md border" {...props} />
|
|
),
|
|
CodeTabs,
|
|
Step: ({ className, ...props }: React.ComponentProps<"h3">) => (
|
|
<h3
|
|
className={cn(
|
|
"font-heading mt-8 scroll-m-20 text-xl font-semibold tracking-tight",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
Steps: ({ ...props }) => (
|
|
<div
|
|
className="[&>h3]:step steps mb-12 [counter-reset:step] md:ml-4 md:border-l md:pl-8"
|
|
{...props}
|
|
/>
|
|
),
|
|
Tabs: ({ className, ...props }: React.ComponentProps<typeof Tabs>) => (
|
|
<Tabs className={cn("relative mt-6 w-full", className)} {...props} />
|
|
),
|
|
TabsList: ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof TabsList>) => (
|
|
<TabsList
|
|
className={cn(
|
|
"w-full justify-start rounded-none border-b bg-transparent p-0",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
TabsTrigger: ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof TabsTrigger>) => (
|
|
<TabsTrigger
|
|
className={cn(
|
|
"relative h-9 rounded-none border-b-2 border-b-transparent bg-transparent px-4 pb-3 pt-2 font-semibold text-muted-foreground shadow-none transition-none data-[state=active]:border-b-primary data-[state=active]:text-foreground data-[state=active]:shadow-none",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
TabsContent: ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof TabsContent>) => (
|
|
<TabsContent
|
|
className={cn(
|
|
"relative [&_h3.font-heading]:text-base [&_h3.font-heading]:font-semibold",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
FrameworkDocs: ({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<typeof FrameworkDocs>) => (
|
|
<FrameworkDocs className={cn(className)} {...props} />
|
|
),
|
|
Link: ({ className, ...props }: React.ComponentProps<typeof Link>) => (
|
|
<Link
|
|
className={cn("font-medium underline underline-offset-4", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
LinkedCard: ({ className, ...props }: React.ComponentProps<typeof Link>) => (
|
|
<Link
|
|
className={cn(
|
|
"flex w-full flex-col items-center rounded-xl border bg-card p-6 text-card-foreground shadow transition-colors hover:bg-muted/50 sm:p-10",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
}
|
|
|
|
interface MdxProps {
|
|
code: string
|
|
}
|
|
|
|
export function Mdx({ code }: MdxProps) {
|
|
const [config] = useConfig()
|
|
const Component = useMDXComponent(code, {
|
|
style: config.style,
|
|
})
|
|
|
|
return (
|
|
<div className="mdx">
|
|
<Component components={components} />
|
|
</div>
|
|
)
|
|
}
|