You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
3.6 KiB
144 lines
3.6 KiB
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import omit from 'rc-util/lib/omit';
|
|
import CloseOutlined from '@ant-design/icons/CloseOutlined';
|
|
|
|
import CheckableTag from './CheckableTag';
|
|
import { ConfigContext } from '../config-provider';
|
|
import {
|
|
PresetColorTypes,
|
|
PresetStatusColorTypes,
|
|
PresetColorType,
|
|
PresetStatusColorType,
|
|
} from '../_util/colors';
|
|
import Wave from '../_util/wave';
|
|
import { LiteralUnion } from '../_util/type';
|
|
|
|
export { CheckableTagProps } from './CheckableTag';
|
|
|
|
export interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
color?: LiteralUnion<PresetColorType | PresetStatusColorType, string>;
|
|
closable?: boolean;
|
|
closeIcon?: React.ReactNode;
|
|
visible?: boolean;
|
|
onClose?: (e: React.MouseEvent<HTMLElement>) => void;
|
|
style?: React.CSSProperties;
|
|
icon?: React.ReactNode;
|
|
}
|
|
|
|
const PresetColorRegex = new RegExp(`^(${PresetColorTypes.join('|')})(-inverse)?$`);
|
|
const PresetStatusColorRegex = new RegExp(`^(${PresetStatusColorTypes.join('|')})$`);
|
|
|
|
export interface TagType
|
|
extends React.ForwardRefExoticComponent<TagProps & React.RefAttributes<HTMLElement>> {
|
|
CheckableTag: typeof CheckableTag;
|
|
}
|
|
|
|
const InternalTag: React.ForwardRefRenderFunction<HTMLSpanElement, TagProps> = (
|
|
{
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
style,
|
|
children,
|
|
icon,
|
|
color,
|
|
onClose,
|
|
closeIcon,
|
|
closable = false,
|
|
...props
|
|
},
|
|
ref,
|
|
) => {
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
const [visible, setVisible] = React.useState(true);
|
|
|
|
React.useEffect(() => {
|
|
if ('visible' in props) {
|
|
setVisible(props.visible!);
|
|
}
|
|
}, [props.visible]);
|
|
|
|
const isPresetColor = (): boolean => {
|
|
if (!color) {
|
|
return false;
|
|
}
|
|
return PresetColorRegex.test(color) || PresetStatusColorRegex.test(color);
|
|
};
|
|
|
|
const tagStyle = {
|
|
backgroundColor: color && !isPresetColor() ? color : undefined,
|
|
...style,
|
|
};
|
|
|
|
const presetColor = isPresetColor();
|
|
const prefixCls = getPrefixCls('tag', customizePrefixCls);
|
|
const tagClassName = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-${color}`]: presetColor,
|
|
[`${prefixCls}-has-color`]: color && !presetColor,
|
|
[`${prefixCls}-hidden`]: !visible,
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
className,
|
|
);
|
|
|
|
const handleCloseClick = (e: React.MouseEvent<HTMLElement>) => {
|
|
e.stopPropagation();
|
|
if (onClose) {
|
|
onClose(e);
|
|
}
|
|
|
|
if (e.defaultPrevented) {
|
|
return;
|
|
}
|
|
if (!('visible' in props)) {
|
|
setVisible(false);
|
|
}
|
|
};
|
|
|
|
const renderCloseIcon = () => {
|
|
if (closable) {
|
|
return closeIcon ? (
|
|
<span className={`${prefixCls}-close-icon`} onClick={handleCloseClick}>
|
|
{closeIcon}
|
|
</span>
|
|
) : (
|
|
<CloseOutlined className={`${prefixCls}-close-icon`} onClick={handleCloseClick} />
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
const isNeedWave =
|
|
'onClick' in props || (children && (children as React.ReactElement<any>).type === 'a');
|
|
const tagProps = omit(props, ['visible']);
|
|
const iconNode = icon || null;
|
|
const kids = iconNode ? (
|
|
<>
|
|
{iconNode}
|
|
<span>{children}</span>
|
|
</>
|
|
) : (
|
|
children
|
|
);
|
|
|
|
const tagNode = (
|
|
<span {...tagProps} ref={ref} className={tagClassName} style={tagStyle}>
|
|
{kids}
|
|
{renderCloseIcon()}
|
|
</span>
|
|
);
|
|
|
|
return isNeedWave ? <Wave>{tagNode}</Wave> : tagNode;
|
|
};
|
|
|
|
const Tag = React.forwardRef<unknown, TagProps>(InternalTag) as TagType;
|
|
|
|
Tag.displayName = 'Tag';
|
|
|
|
Tag.CheckableTag = CheckableTag;
|
|
|
|
export default Tag;
|
|
|