Files
2026-07-13 12:38:34 +08:00

37 lines
1.1 KiB
TypeScript

'use client';
import { useState } from 'react';
import { Link, Check } from 'lucide-react';
interface CopyLinkProps {
href: string;
children: React.ReactNode;
className?: string;
}
export function CopyLink({ href, children, className }: CopyLinkProps) {
const [copied, setCopied] = useState(false);
const handleCopy = async () => {
const fullUrl = `${window.location.origin}${href}`;
await navigator.clipboard.writeText(fullUrl);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
};
return (
<button
onClick={handleCopy}
className={`inline-flex items-center gap-1.5 group cursor-pointer whitespace-nowrap focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2 rounded ${className}`}
aria-label="Copy link to clipboard"
>
<span>{children}</span>
{copied ? (
<Check className="w-3 h-3 text-green-500" aria-hidden="true" />
) : (
<Link className="w-3 h-3 opacity-0 group-hover:opacity-70 transition-opacity" aria-hidden="true" />
)}
</button>
);
}