ant-design/components/tag/CheckableTag.tsx
Tom Xu 8ae2b1f542
feat: tag support ref (#23632)
* feat: tag support ref

* feat done

* Update index.tsx
2020-04-27 13:14:00 +08:00

38 lines
1.0 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;
checked: boolean;
onChange?: (checked: boolean) => void;
}
const CheckableTag: React.FC<CheckableTagProps> = props => {
const { getPrefixCls } = React.useContext(ConfigContext);
const handleClick = () => {
const { checked, onChange } = props;
if (onChange) {
onChange(!checked);
}
};
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} />;
};
export default CheckableTag;