UNPKG

@blueprintjs/core

Version:
82 lines 3.54 kB
/* * Copyright 2016 Palantir Technologies, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import * as tslib_1 from "tslib"; import * as React from "react"; import { polyfill } from "react-lifecycles-compat"; import { AbstractPureComponent2, Classes } from "../../common"; import * as Errors from "../../common/errors"; import { DISPLAYNAME_PREFIX } from "../../common/props"; import { isElementOfType } from "../../common/utils"; import { Radio } from "./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 (isElementOfType(child, 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(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 = DISPLAYNAME_PREFIX + ".RadioGroup"; RadioGroup = tslib_1.__decorate([ polyfill ], RadioGroup); return RadioGroup; }(AbstractPureComponent2)); export { RadioGroup }; //# sourceMappingURL=radioGroup.js.map