ant-design/components/radio/radio.tsx

70 lines
2.0 KiB
TypeScript
Raw Normal View History

import RcRadio from 'rc-radio';
import React, { PropTypes } from 'react';
2016-01-21 22:45:21 +08:00
import classNames from 'classnames';
import shallowEqual from 'shallowequal';
2015-08-21 18:24:09 +08:00
2016-08-10 10:26:42 +08:00
export interface RadioProps {
/** 指定当前是否选中*/
checked?: boolean;
/** 初始是否选中*/
defaultChecked?: boolean;
/** 根据 value 进行比较,判断是否选中 */
value?: any;
2016-08-10 10:26:42 +08:00
style?: React.CSSProperties;
prefixCls?: string;
disabled?: boolean;
className?: string;
onChange?: (e: any) => any;
onMouseEnter?: React.FormEventHandler<any>;
onMouseLeave?: React.FormEventHandler<any>;
2016-08-10 10:26:42 +08:00
}
export default class Radio extends React.Component<RadioProps, any> {
static Group: any;
static Button: any;
static defaultProps = {
2016-05-11 09:32:33 +08:00
prefixCls: 'ant-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 { prefixCls, className, children, style, ...restProps } = this.props;
let radioProps: RadioProps = { ...restProps };
if (this.context.radioGroup) {
radioProps.onChange = this.context.radioGroup.onChange;
radioProps.checked = this.props.value === this.context.radioGroup.value;
radioProps.disabled = this.props.disabled || this.context.radioGroup.disabled;
}
2016-06-27 17:22:03 +08:00
const wrapperClassString = classNames({
[`${prefixCls}-wrapper`]: true,
[`${prefixCls}-wrapper-checked`]: radioProps.checked,
[`${prefixCls}-wrapper-disabled`]: radioProps.disabled,
}, className);
2015-08-21 18:24:09 +08:00
return (
<label
className={wrapperClassString}
style={style}
onMouseEnter={this.props.onMouseEnter}
onMouseLeave={this.props.onMouseLeave}
>
<RcRadio
{...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>
);
}
}