mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 12:38:27 -04:00
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
import { forwardRef, useState, useEffect } from "react";
|
|
import classNames from "classnames/bind";
|
|
import copy from "copy-to-clipboard";
|
|
import innerText from "react-innertext";
|
|
import { ClipboardOcticon, CheckOcticon } from "../Icons";
|
|
import type { ReactNode, Ref } from "react";
|
|
|
|
import styles from "./CopyButton.module.css";
|
|
const cx = classNames.bind(styles);
|
|
|
|
type Props = {
|
|
source: ReactNode;
|
|
timeout?: number;
|
|
className?: string;
|
|
};
|
|
|
|
const CopyButton = forwardRef(function CopyButton(
|
|
{ source, timeout = 2000, className }: Props,
|
|
ref: Ref<HTMLButtonElement>
|
|
) {
|
|
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(() => {
|
|
// reset to original icon after given ms (defaults to 2 seconds)
|
|
if (copied) {
|
|
const reset = setTimeout(() => {
|
|
setCopied(false);
|
|
}, timeout);
|
|
|
|
return () => clearTimeout(reset);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
return () => {};
|
|
}, [timeout, copied]);
|
|
|
|
return (
|
|
<button
|
|
className={cx({ button: true, success: !!copied }, className)}
|
|
title="Copy to clipboard"
|
|
aria-label="Copy to clipboard"
|
|
onClick={handleCopy}
|
|
disabled={!!copied}
|
|
ref={ref}
|
|
>
|
|
{copied ? <CheckOcticon fill="currentColor" /> : <ClipboardOcticon fill="currentColor" />}
|
|
</button>
|
|
);
|
|
});
|
|
|
|
export default CopyButton;
|