-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCodeBlock.tsx
54 lines (48 loc) · 1.35 KB
/
CodeBlock.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"use client";
import * as React from "react";
import { cn } from "@/lib/utils";
import { Button } from "@/components/ui";
interface ICodeBlock extends React.HTMLAttributes<HTMLPreElement> {}
export async function copyToClipboardWithMeta(value: string, event?: Event) {
navigator.clipboard.writeText(value);
if (event) {
// trackEvent(event);
}
}
export function CodeBlock({ className, children, ...props }: ICodeBlock) {
const [hasCopied, setHasCopied] = React.useState(false);
const preRef = React.useRef<HTMLPreElement>(null);
const handleClickCopy = async () => {
const code = preRef.current?.textContent;
if (code) {
setHasCopied(true);
await navigator.clipboard.writeText(code);
setTimeout(() => {
setHasCopied(false);
}, 3000);
}
};
return (
<div className="relative">
<pre
className={cn(
"overflow-x-auto rounded-sm bg-[#282A36] mt-3 mb-6 p-4",
className
)}
{...props}
>
<Button
id="cody-copy-button"
data-umami-event="copy-code-button"
disabled={hasCopied}
className="absolute top-4 right-4 z-10"
size="sm"
onClick={handleClickCopy}
>
{hasCopied ? "Copied" : "Copy"}
</Button>
<span ref={preRef}>{children}</span>
</pre>
</div>
);
}