mirror of
https://github.com/skidoodle/hostinfo
synced 2026-04-28 17:47:36 +02:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import { CheckIcon, ClipboardDocumentIcon } from '@heroicons/react/24/outline';
|
|
|
|
export const CopyButton = ({ text }: { text: string }) => {
|
|
const [copied, setCopied] = useState(false);
|
|
|
|
useEffect(() => {
|
|
let timeout: ReturnType<typeof setTimeout>;
|
|
if (copied) {
|
|
timeout = setTimeout(() => setCopied(false), 2000);
|
|
}
|
|
return () => clearTimeout(timeout);
|
|
}, [copied]);
|
|
|
|
const handleCopy = async (e: React.MouseEvent) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
await navigator.clipboard.writeText(text);
|
|
setCopied(true);
|
|
};
|
|
|
|
return (
|
|
<button
|
|
onClick={handleCopy}
|
|
className="ml-2 p-1 rounded-md text-gray-400 hover:text-gray-600 hover:bg-gray-100 dark:hover:text-gray-200 dark:hover:bg-gray-800 transition-all opacity-0 group-hover:opacity-100 focus:opacity-100 cursor-pointer"
|
|
title="Copy to clipboard"
|
|
>
|
|
{copied ? <CheckIcon className="w-3.5 h-3.5 text-green-500" /> : <ClipboardDocumentIcon className="w-3.5 h-3.5" />}
|
|
</button>
|
|
);
|
|
};
|