ant-design/components/radio/radio.tsx

69 lines
1.9 KiB
TypeScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import RcCheckbox from 'rc-checkbox';
2016-01-21 22:45:21 +08:00
import classNames from 'classnames';
import shallowEqual from 'shallowequal';
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
import RadioGroup from './group';
import RadioButton from './radioButton';
2015-08-21 18:24:09 +08:00
export type RadioProps = AbstractCheckboxProps;
2016-08-10 10:26:42 +08:00
export default class Radio extends React.Component<RadioProps, any> {
static Group: typeof RadioGroup;
static Button: typeof RadioButton;
2016-08-10 10:26:42 +08:00
static defaultProps = {
2016-05-11 09:32:33 +08:00
prefixCls: 'ant-radio',
type: 'radio',
2016-07-13 11:14:24 +08:00
};
static contextTypes = {
radioGroup: PropTypes.any,
};
shouldComponentUpdate(nextProps, nextState, nextContext) {
return !shallowEqual(this.props, nextProps) ||
!shallowEqual(this.state, nextState) ||
!shallowEqual(this.context.radioGroup, nextContext.radioGroup);
2016-06-12 16:15:11 +08:00
}
2015-08-21 18:24:09 +08:00
render() {
const { props, context } = this;
const {
prefixCls,
className,
children,
style,
...restProps,
} = props;
const { radioGroup } = context;
let radioProps: RadioProps = { ...restProps };
if (radioGroup) {
radioProps.onChange = radioGroup.onChange;
radioProps.checked = props.value === radioGroup.value;
radioProps.disabled = props.disabled || radioGroup.disabled;
}
const wrapperClassString = classNames(className, {
2016-06-27 17:22:03 +08:00
[`${prefixCls}-wrapper`]: true,
[`${prefixCls}-wrapper-checked`]: radioProps.checked,
[`${prefixCls}-wrapper-disabled`]: radioProps.disabled,
});
2015-08-21 18:24:09 +08:00
return (
<label
className={wrapperClassString}
style={style}
onMouseEnter={props.onMouseEnter}
onMouseLeave={props.onMouseLeave}
>
<RcCheckbox
{...radioProps}
prefixCls={prefixCls}
/>
2017-02-16 10:00:00 +08:00
{children !== undefined ? <span>{children}</span> : null}
2015-08-21 18:24:09 +08:00
</label>
);
}
}