forked from MarsX-dev/floatui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodeBlock.tsx
58 lines (51 loc) · 1.52 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
55
56
57
58
import Prism from "prismjs";
import "prismjs/components/prism-jsx";
import { MouseEventHandler, useEffect, useState } from "react";
import { IconClipboard } from "./icons";
type Props = {
children?: string;
};
export default (props: Props) => {
const { children } = props;
const [copyState, setCopyState] = useState<boolean>(false);
// Copy the link
const handleCopy: MouseEventHandler<HTMLButtonElement> = () => {
navigator.clipboard.writeText(children || "").then(
function () {
setCopyState(true);
},
function (err) {
console.error("Async: Could not copy text: ", err);
}
);
};
useEffect(() => {
Prism.highlightAll();
}, []);
useEffect(() => {
if (copyState) {
setTimeout(() => setCopyState(false), 3000);
}
}, [copyState]);
return (
<div className='relative'>
<button
className={`absolute top-4 right-4 text-gray-300 hover:text-gray-400 duration-150 ${
copyState ? "text-indigo-600 pointer-events-none" : ""
}`}
onClick={handleCopy}>
<IconClipboard />
{copyState ? (
<div className='absolute -top-12 -left-3 px-2 py-1.5 rounded-xl bg-indigo-600 font-semibold text-white text-[10px] after:absolute after:inset-x-0 after:mx-auto after:top-[22px] after:w-2 after:h-2 after:bg-indigo-600 after:rotate-45'>
Copied
</div>
) : (
""
)}
</button>
<pre>
<code className='lang-jsx'>{children}</code>
</pre>
</div>
);
};