mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
71 lines
2.0 KiB
TypeScript
71 lines
2.0 KiB
TypeScript
"use client";
|
|
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from "@/components/ui/tooltip";
|
|
import { cn } from "@/lib/utils";
|
|
import { useState } from "react";
|
|
import { Check, Copy } from "lucide-react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { useCodeEditorStore } from "@/store/useCodeEditorStore";
|
|
|
|
export default function CopyButton() {
|
|
const [copied, setCopied] = useState(false);
|
|
const { editor } = useCodeEditorStore();
|
|
|
|
const handleCopy = async () => {
|
|
try {
|
|
await navigator.clipboard.writeText(editor?.getValue() || "");
|
|
setCopied(true);
|
|
setTimeout(() => setCopied(false), 1500);
|
|
} catch (err) {
|
|
console.error("Failed to copy text: ", err);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<TooltipProvider delayDuration={0}>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
className="h-6 w-6 border-none shadow-none px-1.5 py-0.5 disabled:opacity-100 hover:bg-muted"
|
|
onClick={handleCopy}
|
|
aria-label={copied ? "Copied" : "Copy to clipboard"}
|
|
disabled={copied}
|
|
>
|
|
<div
|
|
className={cn(
|
|
"transition-all",
|
|
copied ? "scale-100 opacity-100" : "scale-0 opacity-0"
|
|
)}
|
|
>
|
|
<Check
|
|
className="stroke-emerald-500"
|
|
size={16}
|
|
strokeWidth={2}
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
<div
|
|
className={cn(
|
|
"absolute transition-all",
|
|
copied ? "scale-0 opacity-0" : "scale-100 opacity-100"
|
|
)}
|
|
>
|
|
<Copy size={16} strokeWidth={2} aria-hidden="true" />
|
|
</div>
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent className="px-2 py-1 text-xs">
|
|
Click to Copy
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
);
|
|
}
|