mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
80e46b7662
* chore: enable cssVar in imageTest * fix: tree select style * chore: fix avatar group style * fix: cascader panel style * fix: form style * fix: slider disabled style * fix: mentions style * fix: tag style * fix: tabs style * fix: Rate style * fix: table custom token * chore: update snapshot * fix: menu style * fix: InputNumber style * chore: recover image test * chore: add css var image test
71 lines
1.6 KiB
TypeScript
71 lines
1.6 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { ConfigContext } from '../config-provider';
|
|
import useStyle from './style';
|
|
import useCSSVar from './style/cssVar';
|
|
|
|
export interface CheckableTagProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
/**
|
|
* It is an absolute controlled component and has no uncontrolled mode.
|
|
*
|
|
* .zh-cn 该组件为完全受控组件,不支持非受控用法。
|
|
*/
|
|
checked: boolean;
|
|
children?: React.ReactNode;
|
|
onChange?: (checked: boolean) => void;
|
|
onClick?: (e: React.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
|
|
}
|
|
|
|
const CheckableTag = React.forwardRef<HTMLSpanElement, CheckableTagProps>((props, ref) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
style,
|
|
className,
|
|
checked,
|
|
onChange,
|
|
onClick,
|
|
...restProps
|
|
} = props;
|
|
const { getPrefixCls, tag } = React.useContext(ConfigContext);
|
|
|
|
const handleClick = (e: React.MouseEvent<HTMLSpanElement, MouseEvent>) => {
|
|
onChange?.(!checked);
|
|
onClick?.(e);
|
|
};
|
|
|
|
const prefixCls = getPrefixCls('tag', customizePrefixCls);
|
|
// Style
|
|
const [, hashId] = useStyle(prefixCls);
|
|
const wrapCSSVar = useCSSVar(prefixCls);
|
|
|
|
const cls = classNames(
|
|
prefixCls,
|
|
`${prefixCls}-checkable`,
|
|
{
|
|
[`${prefixCls}-checkable-checked`]: checked,
|
|
},
|
|
tag?.className,
|
|
className,
|
|
hashId,
|
|
);
|
|
|
|
return wrapCSSVar(
|
|
<span
|
|
{...restProps}
|
|
ref={ref}
|
|
style={{
|
|
...style,
|
|
...tag?.style,
|
|
}}
|
|
className={cls}
|
|
onClick={handleClick}
|
|
/>,
|
|
);
|
|
});
|
|
|
|
export default CheckableTag;
|