material-ui
Version:
Material Design UI components built with React
146 lines (114 loc) • 4.6 kB
JavaScript
'use strict';
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
var React = require('react');
var RadioButton = require('./radio-button');
var StylePropable = require('./mixins/style-propable');
var DefaultRawTheme = require('./styles/raw-themes/light-raw-theme');
var ThemeManager = require('./styles/theme-manager');
var RadioButtonGroup = React.createClass({
displayName: 'RadioButtonGroup',
mixins: [StylePropable],
contextTypes: {
muiTheme: React.PropTypes.object
},
//for passing default theme context to children
childContextTypes: {
muiTheme: React.PropTypes.object
},
getChildContext: function getChildContext() {
return {
muiTheme: this.state.muiTheme
};
},
propTypes: {
name: React.PropTypes.string.isRequired,
valueSelected: React.PropTypes.string,
defaultSelected: React.PropTypes.string,
labelPosition: React.PropTypes.oneOf(['left', 'right']),
onChange: React.PropTypes.func
},
_hasCheckAttribute: function _hasCheckAttribute(radioButton) {
return radioButton.props.hasOwnProperty('checked') && radioButton.props.checked;
},
getInitialState: function getInitialState() {
return {
numberCheckedRadioButtons: 0,
selected: this.props.valueSelected || this.props.defaultSelected || '',
muiTheme: this.context.muiTheme ? this.context.muiTheme : ThemeManager.getMuiTheme(DefaultRawTheme)
};
},
getDefaultProps: function getDefaultProps() {
return {
style: {}
};
},
componentWillMount: function componentWillMount() {
var _this = this;
var cnt = 0;
React.Children.forEach(this.props.children, function (option) {
if (_this._hasCheckAttribute(option)) cnt++;
}, this);
this.setState({ numberCheckedRadioButtons: cnt });
},
componentWillReceiveProps: function componentWillReceiveProps(nextProps, nextContext) {
var newMuiTheme = nextContext.muiTheme ? nextContext.muiTheme : this.state.muiTheme;
var newState = { muiTheme: newMuiTheme };
if (nextProps.hasOwnProperty('valueSelected')) {
newState.selected = nextProps.valueSelected;
}
this.setState(newState);
},
render: function render() {
var _this2 = this;
var options = React.Children.map(this.props.children, function (option) {
var _option$props = option.props;
var name = _option$props.name;
var value = _option$props.value;
var label = _option$props.label;
var onCheck = _option$props.onCheck;
var other = _objectWithoutProperties(_option$props, ['name', 'value', 'label', 'onCheck']);
return React.createElement(RadioButton, _extends({}, other, {
ref: option.props.value,
name: _this2.props.name,
key: option.props.value,
value: option.props.value,
label: option.props.label,
labelPosition: _this2.props.labelPosition,
onCheck: _this2._onChange,
checked: option.props.value === _this2.state.selected }));
}, this);
return React.createElement(
'div',
{
style: this.prepareStyles(this.props.style),
className: this.props.className || '' },
options
);
},
_updateRadioButtons: function _updateRadioButtons(newSelection) {
if (this.state.numberCheckedRadioButtons === 0) {
this.setState({ selected: newSelection });
} else if (process.env.NODE_ENV !== 'production') {
var message = "Cannot select a different radio button while another radio button " + "has the 'checked' property set to true.";
console.error(message);
}
},
_onChange: function _onChange(e, newSelection) {
this._updateRadioButtons(newSelection);
// Successful update
if (this.state.numberCheckedRadioButtons === 0) {
if (this.props.onChange) this.props.onChange(e, newSelection);
}
},
getSelectedValue: function getSelectedValue() {
return this.state.selected;
},
setSelectedValue: function setSelectedValue(newSelectionValue) {
this._updateRadioButtons(newSelectionValue);
},
clearValue: function clearValue() {
this.setSelectedValue('');
}
});
module.exports = RadioButtonGroup;