You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
838 B
28 lines
838 B
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
export interface CheckableTagProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
checked: boolean;
|
|
onChange?: (checked: Boolean) => void;
|
|
}
|
|
|
|
export default class CheckableTag extends React.Component<CheckableTagProps, any> {
|
|
handleClick = () => {
|
|
const { checked, onChange } = this.props;
|
|
if (onChange) {
|
|
onChange(!checked);
|
|
}
|
|
}
|
|
render() {
|
|
const { prefixCls = 'ant-tag', className, checked, ...restProps } = this.props;
|
|
const cls = classNames(prefixCls, {
|
|
[`${prefixCls}-checkable`]: true,
|
|
[`${prefixCls}-checkable-checked`]: checked,
|
|
}, className);
|
|
|
|
delete (restProps as any).onChange; // TypeScript cannot check delete now.
|
|
return <div {...restProps as any} className={cls} onClick={this.handleClick} />;
|
|
}
|
|
}
|
|
|