UNPKG

dh-c

Version:

The front-end development engineers jimberton gulp react component

77 lines (58 loc) 2.78 kB
'use strict'; exports.__esModule = true; 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; }; var _react = require('react'); var _react2 = _interopRequireDefault(_react); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var Group = function (_Component) { _inherits(Group, _Component); function Group(props) { _classCallCheck(this, Group); var _this = _possibleConstructorReturn(this, _Component.call(this, props)); _this.state = { checked: props.defaultValue }; _this.onSelectChange = _this.onSelectChange.bind(_this); return _this; } Group.prototype.onSelectChange = function onSelectChange(checked, idx) { if (checked && this.state.checked != idx) { this.setState({ checked: idx }); this.props.onChange(idx); } }; Group.prototype.render = function render() { var _this2 = this; var children = this.props.children; var checked = this.state.checked; return _react2.default.createElement( 'div', null, _react2.default.Children.map(children, function (child, i) { var props = _extends({}, child.props, { onChange: function onChange(checked) { return _this2.onSelectChange(checked, i); }, checked: i == checked, key: i }); return _extends({}, child, { props: props }); }) ); }; return Group; }(_react.Component); Group.propTypes = { defaultValue: _react.PropTypes.number, onChange: _react.PropTypes.function }; Group.defaultProps = { defaultValue: 0, onChange: function onChange() {} }; exports.default = Group;