ant-design/components/checkbox/index.tsx

29 lines
1008 B
TypeScript
Raw Normal View History

2015-12-24 15:03:06 +08:00
import RcCheckbox from 'rc-checkbox';
import React from 'react';
import CheckboxGroup from './Group';
2016-02-17 18:02:33 +08:00
import classNames from 'classnames';
import PureRenderMixin from 'react-addons-pure-render-mixin';
2016-06-22 13:18:43 +08:00
import splitObject from '../_util/splitObject';
export default class Checkbox extends React.Component {
static Group = CheckboxGroup;
static defaultProps = {
2016-05-11 09:32:33 +08:00
prefixCls: 'ant-checkbox',
}
shouldComponentUpdate(...args) {
return PureRenderMixin.shouldComponentUpdate.apply(this, args);
}
2015-08-18 14:03:44 +08:00
render() {
2016-06-22 13:18:43 +08:00
const [{ prefixCls, style, children, className },restProps] = splitObject(this.props, ['prefixCls', 'style', 'children', 'className']);
2016-02-17 18:02:33 +08:00
const classString = classNames({
[className]: !!className,
[`${prefixCls}-wrapper`]: true,
});
return (
<label className={classString} style={style}>
<RcCheckbox {...restProps} prefixCls={prefixCls} children={null} />
{children !== undefined ? <span>{children}</span> : null}
2016-02-17 18:02:33 +08:00
</label>
);
2015-07-15 16:01:24 +08:00
}
}