mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
62 lines
1.5 KiB
TypeScript
62 lines
1.5 KiB
TypeScript
"use client";
|
|
|
|
import React, { useState } from "react";
|
|
import { Highlight, themes } from "prism-react-renderer";
|
|
import { Check, Copy } from "lucide-react";
|
|
import { Button } from "@/components/ui/button";
|
|
import theme from "./theme";
|
|
|
|
interface CodeEditorProps {
|
|
code: string;
|
|
language: string;
|
|
}
|
|
|
|
export function CodeEditor({ code, language }: CodeEditorProps) {
|
|
const [isCopied, setIsCopied] = useState(false);
|
|
|
|
const copyToClipboard = async () => {
|
|
try {
|
|
await navigator.clipboard.writeText(code);
|
|
setIsCopied(true);
|
|
setTimeout(() => setIsCopied(false), 2000);
|
|
} catch (err) {
|
|
console.error("Failed to copy text: ", err);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="relative">
|
|
<Highlight theme={theme} code={code} language={language}>
|
|
{({ className, style, tokens, getLineProps, getTokenProps }) => (
|
|
<pre
|
|
className={`${className} p-4 overflow-auto max-h-[400px] rounded-md`}
|
|
style={style}
|
|
>
|
|
{tokens.map((line, i) => (
|
|
<div key={i} {...getLineProps({ line, key: i })}>
|
|
<span className="mr-4 text-gray-500 select-none">{i + 1}</span>
|
|
{line.map((token, key) => (
|
|
<span key={key} {...getTokenProps({ token, key })} />
|
|
))}
|
|
</div>
|
|
))}
|
|
</pre>
|
|
)}
|
|
</Highlight>
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
className="absolute top-2 right-2"
|
|
onClick={copyToClipboard}
|
|
aria-label="Copy code"
|
|
>
|
|
{isCopied ? (
|
|
<Check className="h-4 w-4" />
|
|
) : (
|
|
<Copy className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|