mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
cc51d06117
* test: solve test cov * test: solve test cov
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
import * as React from 'react';
|
|
import CheckOutlined from '@ant-design/icons/CheckOutlined';
|
|
import CopyOutlined from '@ant-design/icons/CopyOutlined';
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
import classNames from 'classnames';
|
|
|
|
import type { CopyConfig } from '.';
|
|
import TransButton from '../../_util/transButton';
|
|
import type { Locale } from '../../locale';
|
|
import Tooltip from '../../tooltip';
|
|
import { getNode, toList } from './util';
|
|
|
|
export interface CopyBtnProps extends Omit<CopyConfig, 'onCopy'> {
|
|
prefixCls: string;
|
|
copied: boolean;
|
|
locale: Locale['Text'];
|
|
onCopy: (e?: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
iconOnly: boolean;
|
|
loading: boolean;
|
|
}
|
|
|
|
const CopyBtn: React.FC<CopyBtnProps> = (props) => {
|
|
const {
|
|
prefixCls,
|
|
copied,
|
|
locale,
|
|
iconOnly,
|
|
tooltips,
|
|
icon,
|
|
loading: btnLoading,
|
|
tabIndex,
|
|
onCopy,
|
|
} = props;
|
|
|
|
const tooltipNodes = toList(tooltips);
|
|
const iconNodes = toList(icon);
|
|
|
|
const { copied: copiedText, copy: copyText } = locale ?? {};
|
|
|
|
const copyTitle = copied
|
|
? getNode(tooltipNodes[1], copiedText)
|
|
: getNode(tooltipNodes[0], copyText);
|
|
const systemStr = copied ? copiedText : copyText;
|
|
const ariaLabel = typeof copyTitle === 'string' ? copyTitle : systemStr;
|
|
|
|
return (
|
|
<Tooltip key="copy" title={copyTitle}>
|
|
<TransButton
|
|
className={classNames(`${prefixCls}-copy`, {
|
|
[`${prefixCls}-copy-success`]: copied,
|
|
[`${prefixCls}-copy-icon-only`]: iconOnly,
|
|
})}
|
|
onClick={onCopy}
|
|
aria-label={ariaLabel}
|
|
tabIndex={tabIndex}
|
|
>
|
|
{copied
|
|
? getNode(iconNodes[1], <CheckOutlined />, true)
|
|
: getNode(iconNodes[0], btnLoading ? <LoadingOutlined /> : <CopyOutlined />, true)}
|
|
</TransButton>
|
|
</Tooltip>
|
|
);
|
|
};
|
|
|
|
export default CopyBtn;
|