You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/buttons/CopyToClipboardButton.tsx

80 lines
2.1 KiB
TypeScript

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<SessionButtonProps, 'children' | 'onClick'> & 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 (
<SessionButton
aria-label={'copy to clipboard button'}
{...props}
text={!isEmpty(text) ? text : copied ? window.i18n('copied') : window.i18n('copy')}
onClick={onClick}
/>
);
};
type CopyToClipboardIconProps = Omit<SessionIconButtonProps, 'children' | 'onClick' | 'iconType'> &
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 (
<SessionIconButton
aria-label={'copy to clipboard icon button'}
padding="0"
margin="0"
{...props}
iconType={'copy'}
onClick={onClick}
/>
);
};