ant-design/components/tag/CheckableTag.tsx
Tom Xu cf3d611f59
refactor(tag): rewrite with hook (#23466)
* refactor(tag): rewrite with hook

* fix lint
2020-04-22 10:59:24 +08:00

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;