import { forwardRef, useState, useEffect } from "react"; import innerText from "react-innertext"; import copy from "copy-to-clipboard"; import { ClipboardOcticon, CheckOcticon } from "../Icons"; import { styled } from "../../lib/styles/stitches.config"; import type { ReactNode, Ref } from "react"; const Button = styled("button", { lineHeight: 1, cursor: "pointer", variants: { copied: { true: { color: "$success", }, false: { color: "$mediumDark", "&:hover": { color: "$link", }, }, }, }, }); const Icon = styled("svg", { width: "1.25em", height: "1.25em", verticalAlign: "-0.3em", fill: "currentColor", }); export type CopyButtonProps = { source: ReactNode; timeout?: number; className?: string; }; const CopyButton = forwardRef(function CopyButton( { source, timeout = 2000, className }: CopyButtonProps, ref: Ref ) { const [copied, setCopied] = useState(false); const handleCopy = (e) => { // prevent unintentional double-clicks by unfocusing button e.target.blur(); // send plaintext to the clipboard const didCopy = copy(innerText(source)); // indicate success setCopied(didCopy); }; useEffect(() => { if (!copied) { return; } // reset to original icon after given ms (defaults to 2 seconds) const reset = setTimeout(() => { setCopied(false); }, timeout); // cancel timeout to avoid memory leaks if unmounted in the middle of this return () => { clearTimeout(reset); }; }, [timeout, copied]); return ( ); }); export default CopyButton;