mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 03:29:39 +08:00
cf3d611f59
* refactor(tag): rewrite with hook * fix lint
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
|
|
export interface CheckableTagProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
checked: boolean;
|
|
onChange?: (checked: boolean) => void;
|
|
}
|
|
|
|
const CheckableTag: React.FC<CheckableTagProps> = props => {
|
|
const handleClick = () => {
|
|
const { checked, onChange } = props;
|
|
if (onChange) {
|
|
onChange(!checked);
|
|
}
|
|
};
|
|
|
|
const renderCheckableTag = ({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const { prefixCls: customizePrefixCls, className, checked, ...restProps } = props;
|
|
const prefixCls = getPrefixCls('tag', customizePrefixCls);
|
|
const cls = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-checkable`]: true,
|
|
[`${prefixCls}-checkable-checked`]: checked,
|
|
},
|
|
className,
|
|
);
|
|
|
|
delete (restProps as any).onChange; // TypeScript cannot check delete now.
|
|
return <span {...(restProps as any)} className={cls} onClick={handleClick} />;
|
|
};
|
|
|
|
return <ConfigConsumer>{renderCheckableTag}</ConfigConsumer>;
|
|
};
|
|
|
|
export default CheckableTag;
|