mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
1155d44321
* fix: checked 非必须
* docs: desc
* fix: 😶
* Update CheckableTag.tsx
Co-authored-by: 二货机器人 <smith3816@gmail.com>
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
export interface CheckableTagProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
/**
|
|
* @description it is an absolute controlled component and has no uncontrolled mode.
|
|
* @description.zh-CN 该组件为完全受控组件,不支持非受控用法。
|
|
*/
|
|
checked: boolean;
|
|
onChange?: (checked: boolean) => void;
|
|
onClick?: (e: React.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
|
|
}
|
|
|
|
const CheckableTag: React.FC<CheckableTagProps> = ({
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
checked,
|
|
onChange,
|
|
onClick,
|
|
...restProps
|
|
}) => {
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
|
|
const handleClick = (e: React.MouseEvent<HTMLSpanElement, MouseEvent>) => {
|
|
if (onChange) {
|
|
onChange(!checked);
|
|
}
|
|
if (onClick) {
|
|
onClick(e);
|
|
}
|
|
};
|
|
|
|
const prefixCls = getPrefixCls('tag', customizePrefixCls);
|
|
const cls = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-checkable`]: true,
|
|
[`${prefixCls}-checkable-checked`]: checked,
|
|
},
|
|
className,
|
|
);
|
|
|
|
return <span {...restProps} className={cls} onClick={handleClick} />;
|
|
};
|
|
|
|
export default CheckableTag;
|