mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
74 lines
2.1 KiB
TypeScript
74 lines
2.1 KiB
TypeScript
import { useCopyToClipboard } from '@documenso/lib/client-only/hooks/use-copy-to-clipboard';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
import { AnimatePresence, motion } from 'framer-motion';
|
|
import { CheckSquareIcon, CopyIcon } from 'lucide-react';
|
|
import { useState } from 'react';
|
|
|
|
import { cn } from '../../lib/utils';
|
|
|
|
export type CopyTextButtonProps = {
|
|
value: string;
|
|
badgeContentUncopied?: React.ReactNode;
|
|
badgeContentCopied?: React.ReactNode;
|
|
onCopySuccess?: () => void;
|
|
};
|
|
|
|
export const CopyTextButton = ({
|
|
value,
|
|
onCopySuccess,
|
|
badgeContentUncopied,
|
|
badgeContentCopied,
|
|
}: CopyTextButtonProps) => {
|
|
const [, copy] = useCopyToClipboard();
|
|
|
|
const [copiedTimeout, setCopiedTimeout] = useState<NodeJS.Timeout | null>(null);
|
|
|
|
const onCopy = async () => {
|
|
await copy(value).then(() => onCopySuccess?.());
|
|
|
|
if (copiedTimeout) {
|
|
clearTimeout(copiedTimeout);
|
|
}
|
|
|
|
setCopiedTimeout(
|
|
setTimeout(() => {
|
|
setCopiedTimeout(null);
|
|
}, 2000),
|
|
);
|
|
};
|
|
|
|
return (
|
|
<Button
|
|
type="button"
|
|
variant="none"
|
|
className="ml-2 h-7 rounded-md border-border bg-muted px-0.5 font-normal"
|
|
onClick={async () => onCopy()}
|
|
>
|
|
<AnimatePresence mode="wait" initial={false}>
|
|
<motion.div
|
|
className="flex flex-row items-center"
|
|
key={copiedTimeout ? 'copied' : 'copy'}
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
exit={{ opacity: 0, transition: { duration: 0.1 } }}
|
|
>
|
|
{copiedTimeout ? badgeContentCopied : badgeContentUncopied}
|
|
|
|
<div
|
|
className={cn(
|
|
'flex h-6 w-6 items-center justify-center rounded transition-all hover:bg-muted-foreground/10 hover:active:bg-muted-foreground/20',
|
|
{
|
|
'ml-1': Boolean(badgeContentCopied || badgeContentUncopied),
|
|
},
|
|
)}
|
|
>
|
|
<div className="absolute">
|
|
{copiedTimeout ? <CheckSquareIcon className="h-3.5 w-3.5" /> : <CopyIcon className="h-3.5 w-3.5" />}
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
</AnimatePresence>
|
|
</Button>
|
|
);
|
|
};
|