import { isEmpty } from 'lodash'; import { useState } from 'react'; import { clipboard } from 'electron'; import { useHotkey } from '../../hooks/useHotkey'; import { ToastUtils } from '../../session/utils'; import { SessionButton, SessionButtonProps } from '../basic/SessionButton'; import { SessionIconButton } from '../icon'; import { SessionIconButtonProps } from '../icon/SessionIconButton'; type CopyProps = { copyContent?: string; onCopyComplete?: (copiedValue: string | undefined) => void; hotkey?: boolean; }; type CopyToClipboardButtonProps = Omit & CopyProps; export const CopyToClipboardButton = (props: CopyToClipboardButtonProps) => { const { copyContent, onCopyComplete, hotkey = false, text } = props; const [copied, setCopied] = useState(false); const onClick = () => { try { const toCopy = copyContent || text; if (!toCopy) { throw Error('Nothing to copy!'); } clipboard.writeText(toCopy); ToastUtils.pushCopiedToClipBoard(); setCopied(true); if (onCopyComplete) { onCopyComplete(text); } } catch (err) { window.log.error('CopyToClipboard:', err); } }; useHotkey('c', onClick, !hotkey); return ( ); }; type CopyToClipboardIconProps = Omit & CopyProps; export const CopyToClipboardIcon = (props: CopyToClipboardIconProps & { copyContent: string }) => { const { copyContent, onCopyComplete, hotkey = false } = props; const onClick = () => { clipboard.writeText(copyContent); ToastUtils.pushCopiedToClipBoard(); if (onCopyComplete) { onCopyComplete(copyContent); } }; useHotkey('c', onClick, !hotkey); return ( ); };