feat(mdx): add CodeBlockWithCopy component for enhanced code copying functionality

This commit is contained in:
cfngc4594 2025-02-26 14:32:06 +08:00
parent b39350d5a7
commit ff682d8ca2

View File

@ -0,0 +1,73 @@
"use client";
import { useRef, useState } from "react";
import { Button } from "@/components/ui/button";
import { CheckIcon, CopyIcon } from "lucide-react";
import { cn } from "@/lib/utils";
interface CodeBlockWithCopyProps {
children: React.ReactNode;
}
export function CodeBlockWithCopy({
children,
...props
}: CodeBlockWithCopyProps) {
const preRef = useRef<HTMLPreElement>(null);
const [copied, setCopied] = useState<boolean>(false);
const [hovered, setHovered] = useState<boolean>(false);
const handleCopy = async () => {
const code = preRef.current?.textContent;
if (code) {
try {
await navigator.clipboard.writeText(code);
setCopied(true);
setTimeout(() => setCopied(false), 1500);
} catch (err) {
console.error("Failed to copy text: ", err);
}
}
};
return (
<div
className="relative"
onMouseEnter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
>
<Button
variant="outline"
size="icon"
className={cn(
"absolute right-2 top-2 size-9 z-10 transition-opacity duration-200",
hovered ? "opacity-100" : "opacity-50",
"disabled:opacity-100"
)}
onClick={handleCopy}
aria-label={copied ? "Copied" : "Copy to clipboard"}
disabled={copied}
>
<div
className={cn(
"transition-all",
copied ? "scale-100 opacity-100" : "scale-0 opacity-0",
)}
>
<CheckIcon className="stroke-emerald-500" size={16} aria-hidden="true" />
</div>
<div
className={cn(
"absolute transition-all",
copied ? "scale-0 opacity-0" : "scale-100 opacity-100",
)}
>
<CopyIcon size={16} aria-hidden="true" />
</div>
</Button>
<pre ref={preRef} {...props}>
{children}
</pre>
</div>
);
}