mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
8cc1d30351
* feat: copy support async * feat: add test * feat: doc * feat: snap * feat: add loading * feat: 恢复 try * feat: 判断是否是 Error * feat: throw error * feat: 为了醋包了饺子 * feat: remove code * feat: add loading test * fix: test * fix: icon import way * chore: improve test case code * chore: improve test case code --------- Co-authored-by: afc163 <afc163@gmail.com>
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import * as React from 'react';
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
import CheckOutlined from '@ant-design/icons/CheckOutlined';
|
|
import CopyOutlined from '@ant-design/icons/CopyOutlined';
|
|
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 CopyConfig {
|
|
prefixCls: string;
|
|
copied: boolean;
|
|
locale: Locale['Text'];
|
|
onCopy: React.MouseEventHandler<HTMLDivElement>;
|
|
iconOnly: boolean;
|
|
loading: boolean;
|
|
}
|
|
|
|
export default function CopyBtn(props: CopyBtnProps) {
|
|
const { prefixCls, copied, locale = {}, onCopy, iconOnly, tooltips, icon, loading } = 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}
|
|
>
|
|
{copied
|
|
? getNode(iconNodes[1], <CheckOutlined />, true)
|
|
: getNode(iconNodes[0], loading ? <LoadingOutlined /> : <CopyOutlined />, true)}
|
|
</TransButton>
|
|
</Tooltip>
|
|
);
|
|
}
|