@blueprintjs/core
Version:
Core styles & components
71 lines • 3.19 kB
JavaScript
/*
* Copyright 2016 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the terms of the LICENSE file distributed with this project.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var abstractPureComponent_1 = require("../../common/abstractPureComponent");
var Classes = tslib_1.__importStar(require("../../common/classes"));
var Errors = tslib_1.__importStar(require("../../common/errors"));
var props_1 = require("../../common/props");
var utils_1 = require("../../common/utils");
var controls_1 = require("./controls");
var counter = 0;
function nextName() {
return RadioGroup.displayName + "-" + counter++;
}
var RadioGroup = /** @class */ (function (_super) {
tslib_1.__extends(RadioGroup, _super);
function RadioGroup() {
var _this = _super !== null && _super.apply(this, arguments) || this;
// a unique name for this group, which can be overridden by `name` prop.
_this.autoGroupName = nextName();
return _this;
}
RadioGroup.prototype.render = function () {
var label = this.props.label;
return (React.createElement("div", { className: this.props.className },
label == null ? null : React.createElement("label", { className: Classes.LABEL }, label),
Array.isArray(this.props.options) ? this.renderOptions() : this.renderChildren()));
};
RadioGroup.prototype.validateProps = function () {
if (this.props.children != null && this.props.options != null) {
console.warn(Errors.RADIOGROUP_WARN_CHILDREN_OPTIONS_MUTEX);
}
};
RadioGroup.prototype.renderChildren = function () {
var _this = this;
return React.Children.map(this.props.children, function (child) {
if (utils_1.isElementOfType(child, controls_1.Radio)) {
return React.cloneElement(child, _this.getRadioProps(child.props));
}
else {
return child;
}
});
};
RadioGroup.prototype.renderOptions = function () {
var _this = this;
return this.props.options.map(function (option) { return (React.createElement(controls_1.Radio, tslib_1.__assign({}, _this.getRadioProps(option), { key: option.value, labelElement: option.label || option.value }))); });
};
RadioGroup.prototype.getRadioProps = function (optionProps) {
var name = this.props.name;
var className = optionProps.className, disabled = optionProps.disabled, value = optionProps.value;
return {
checked: value === this.props.selectedValue,
className: className,
disabled: disabled || this.props.disabled,
inline: this.props.inline,
name: name == null ? this.autoGroupName : name,
onChange: this.props.onChange,
value: value,
};
};
RadioGroup.displayName = props_1.DISPLAYNAME_PREFIX + ".RadioGroup";
return RadioGroup;
}(abstractPureComponent_1.AbstractPureComponent));
exports.RadioGroup = RadioGroup;
//# sourceMappingURL=radioGroup.js.map
;