Files
Dominik Ferber d94c1df4a2 fix logos (#281)
2026-02-23 07:09:37 +02:00

161 lines
4.3 KiB
TypeScript

"use client";
import { CheckIcon, CopyIcon } from "lucide-react";
import { NextLogo } from "@/components/custom/logos/next";
import { SvelteKitLogo } from "@/components/custom/logos/sveltekit";
import {
type CSSProperties,
type ReactNode,
useCallback,
useRef,
useState,
} from "react";
import { toast } from "sonner";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { cn } from "@/lib/utils";
type CodeBlockProps = {
children: ReactNode;
className?: string;
icon?: ReactNode;
style?: CSSProperties;
tabIndex?: number;
title?: string;
"data-line-numbers"?: string;
"data-line-highlighting"?: string;
};
const FRAMEWORK_ICONS: Record<string, ReactNode> = {
next: <NextLogo className="dark:invert" />,
svelte: <SvelteKitLogo className="grayscale" />,
};
function parseFrameworkFromTitle(title: string): {
cleanTitle: string;
frameworkIcon: ReactNode | undefined;
} {
const match = title.match(/#(\w+)$/);
if (!match) return { cleanTitle: title, frameworkIcon: undefined };
const framework = match[1];
return {
cleanTitle: title.slice(0, -match[0].length),
frameworkIcon: FRAMEWORK_ICONS[framework],
};
}
export const CodeBlock = ({
children,
className,
icon: iconProp,
style,
tabIndex,
title: titleProp,
...rest
}: CodeBlockProps) => {
const { cleanTitle: title, frameworkIcon } = titleProp
? parseFrameworkFromTitle(titleProp)
: { cleanTitle: titleProp, frameworkIcon: undefined };
const icon = frameworkIcon ?? (
typeof iconProp === "string"
? <div dangerouslySetInnerHTML={{ __html: iconProp }} />
: iconProp
);
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?.innerText;
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">
{icon ? (
<div className="size-3.5 shrink-0 [&>svg]:size-full">{icon}</div>
) : null}
<CardTitle className="flex-1 font-mono font-normal text-sm tracking-tight">
{title}
</CardTitle>
<Button
className={cn("shrink-0", className)}
onClick={copyToClipboard}
size="icon"
variant="ghost"
>
<Icon size={14} />
</Button>
</CardHeader>
<CardContent className="p-0">
<CodeBlockComponent
className={cn(
className,
"rounded-none border-none",
lineNumbers ? "line-numbers" : ""
)}
/>
</CardContent>
</Card>
);
};