mirror of
https://github.com/vercel/ai-elements.git
synced 2026-09-14 19:48:26 +08:00
30cbcfec97
* Migrate to oxlint / oxfmt * Initial fixes * Misc fixes * Temporary fixes * Update Ultracite * Update .oxlintrc.json * Update .oxlintrc.json * Start running manual fixes * Update .oxlintrc.json * AI Fixes Part 2 * AI Fixes Part 3 * AI Fixes Part 4 * AI Fixes Part 5 * AI Fixes Part 6 * AI Fixes Part 7 * AI Fixes Part 8 * AI Fixes Part 9 * AI Fixes Part 10 * AI Fixes Part 11 * AI Fixes Part 12 * Fix tests * Lint / test fixes * Update chat.tsx * Fix AI SDK React version * Misc fixes * Build fixes
136 lines
3.5 KiB
TypeScript
136 lines
3.5 KiB
TypeScript
"use client";
|
|
|
|
import type { CSSProperties, ReactNode } from "react";
|
|
|
|
import { Button } from "@repo/shadcn-ui/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@repo/shadcn-ui/components/ui/card";
|
|
import { cn } from "@repo/shadcn-ui/lib/utils";
|
|
import { CheckIcon, CopyIcon } from "lucide-react";
|
|
import { useCallback, useRef, useState } from "react";
|
|
import { toast } from "sonner";
|
|
|
|
interface CodeBlockProps {
|
|
children: ReactNode;
|
|
className?: string;
|
|
icon?: ReactNode;
|
|
style?: CSSProperties;
|
|
tabIndex?: number;
|
|
title?: string;
|
|
"data-line-numbers"?: string;
|
|
"data-line-highlighting"?: string;
|
|
}
|
|
|
|
export const CodeBlock = ({
|
|
children,
|
|
className,
|
|
icon,
|
|
style,
|
|
tabIndex,
|
|
title,
|
|
...rest
|
|
}: CodeBlockProps) => {
|
|
const ref = useRef<HTMLPreElement>(null);
|
|
const [isCopied, setIsCopied] = useState(false);
|
|
const { "data-line-numbers": lineNumbers } = rest;
|
|
|
|
const copyToClipboard = useCallback(async () => {
|
|
if (typeof window === "undefined" || !navigator?.clipboard?.writeText) {
|
|
toast.error("Clipboard API not available");
|
|
return;
|
|
}
|
|
|
|
const code = ref.current?.textContent;
|
|
|
|
if (!code) {
|
|
toast.error("No code to copy");
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await navigator.clipboard.writeText(code);
|
|
setIsCopied(true);
|
|
setTimeout(() => setIsCopied(false), 2000);
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : "Unknown error";
|
|
|
|
toast.error(message);
|
|
}
|
|
}, []);
|
|
|
|
const Icon = isCopied ? CheckIcon : CopyIcon;
|
|
|
|
const CodeBlockComponent = useCallback(
|
|
(props: { className?: string }) => (
|
|
<pre
|
|
className={cn(
|
|
"not-prose flex-1 overflow-x-auto rounded-sm border bg-background py-3 text-sm outline-none",
|
|
"[&>code]:grid [&>code]:min-w-max",
|
|
className,
|
|
props.className
|
|
)}
|
|
ref={ref}
|
|
style={style}
|
|
tabIndex={tabIndex}
|
|
>
|
|
{children}
|
|
</pre>
|
|
),
|
|
[children, style, tabIndex, className]
|
|
);
|
|
|
|
if (!title) {
|
|
return (
|
|
<div className="relative mb-6">
|
|
<CodeBlockComponent
|
|
className={cn(lineNumbers ? "line-numbers" : "", className)}
|
|
/>
|
|
<Button
|
|
className="absolute top-[5px] right-[5px] bg-background/80 backdrop-blur-sm"
|
|
onClick={copyToClipboard}
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<Icon size={14} />
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Card className="not-prose mb-6 gap-0 overflow-hidden rounded-sm p-0 shadow-none">
|
|
<CardHeader className="flex items-center gap-2 border-b bg-sidebar py-1.5! pr-1.5 pl-4 text-muted-foreground">
|
|
<div
|
|
className="size-3.5 shrink-0"
|
|
// biome-ignore lint/security/noDangerouslySetInnerHtml: "Required for icon prop."
|
|
dangerouslySetInnerHTML={{ __html: icon as unknown as TrustedHTML }}
|
|
/>
|
|
<CardTitle className="flex-1 font-mono font-normal text-sm tracking-tight">
|
|
{title}
|
|
</CardTitle>
|
|
<Button
|
|
className="shrink-0"
|
|
onClick={copyToClipboard}
|
|
size="icon"
|
|
variant="ghost"
|
|
>
|
|
<Icon size={14} />
|
|
</Button>
|
|
</CardHeader>
|
|
<CardContent className="p-0">
|
|
<CodeBlockComponent
|
|
className={cn(
|
|
"rounded-none border-none",
|
|
className,
|
|
lineNumbers ? "line-numbers" : ""
|
|
)}
|
|
/>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
};
|