UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

55 lines 4.33 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Radio = void 0; const tslib_1 = require("tslib"); const jsx_runtime_1 = require("react/jsx-runtime"); const react_1 = require("react"); const radio_1 = tslib_1.__importDefault(require("@patternfly/react-styles/css/components/Radio/radio")); const react_styles_1 = require("@patternfly/react-styles"); const helpers_1 = require("../../helpers"); const SSRSafeIds_1 = require("../../helpers/SSRSafeIds/SSRSafeIds"); class Radio extends react_1.Component { constructor(props) { super(props); this.handleChange = (event) => { this.props.onChange(event, event.currentTarget.checked); }; if (!props.label && !props['aria-label']) { // eslint-disable-next-line no-console console.error('Radio:', 'Radio requires an aria-label to be specified'); } } render() { const _a = this.props, { 'aria-label': ariaLabel, 'aria-describedby': ariaDescribedBy, checked, className, inputClassName, defaultChecked, isLabelWrapped, labelPosition = 'end', isChecked, isDisabled, isValid, label, // eslint-disable-next-line @typescript-eslint/no-unused-vars onChange, description, body, ouiaId, ouiaSafe = true, component } = _a, props = tslib_1.__rest(_a, ['aria-label', 'aria-describedby', "checked", "className", "inputClassName", "defaultChecked", "isLabelWrapped", "labelPosition", "isChecked", "isDisabled", "isValid", "label", "onChange", "description", "body", "ouiaId", "ouiaSafe", "component"]); if (!props.id) { // eslint-disable-next-line no-console console.error('Radio:', 'id is required to make input accessible'); } return ((0, jsx_runtime_1.jsx)(SSRSafeIds_1.SSRSafeIds, { prefix: "pf-radio-description-", ouiaComponentType: "Radio", children: (descriptionId, generatedOuiaId) => { let ariaDescribedByValue; if (ariaDescribedBy !== undefined) { ariaDescribedByValue = ariaDescribedBy === '' ? undefined : ariaDescribedBy; } else if (description) { ariaDescribedByValue = descriptionId; } const inputRendered = ((0, jsx_runtime_1.jsx)("input", Object.assign({}, props, { className: (0, react_styles_1.css)(radio_1.default.radioInput, inputClassName), type: "radio", onChange: this.handleChange, "aria-invalid": !isValid, "aria-describedby": ariaDescribedByValue, disabled: isDisabled, checked: checked || isChecked }, (checked === undefined && { defaultChecked }), (!label && { 'aria-label': ariaLabel }), (0, helpers_1.getOUIAProps)(Radio.displayName, ouiaId !== undefined ? ouiaId : generatedOuiaId, ouiaSafe)))); const wrapWithLabel = (isLabelWrapped && !component) || component === 'label'; const Label = wrapWithLabel ? 'span' : 'label'; const labelRendered = label ? ((0, jsx_runtime_1.jsx)(Label, { className: (0, react_styles_1.css)(radio_1.default.radioLabel, isDisabled && radio_1.default.modifiers.disabled), htmlFor: !wrapWithLabel ? props.id : undefined, children: label })) : null; const WrapperComponent = component !== null && component !== void 0 ? component : (wrapWithLabel ? 'label' : 'div'); return ((0, jsx_runtime_1.jsxs)(WrapperComponent, { className: (0, react_styles_1.css)(radio_1.default.radio, !label && radio_1.default.modifiers.standalone, className), htmlFor: wrapWithLabel ? props.id : undefined, children: [labelPosition === 'start' ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [labelRendered, inputRendered] })) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [inputRendered, labelRendered] })), description && ((0, jsx_runtime_1.jsx)("span", { id: descriptionId, className: (0, react_styles_1.css)(radio_1.default.radioDescription), children: description })), body && (0, jsx_runtime_1.jsx)("span", { className: (0, react_styles_1.css)(radio_1.default.radioBody), children: body })] })); } })); } } exports.Radio = Radio; Radio.displayName = 'Radio'; Radio.defaultProps = { className: '', isDisabled: false, isValid: true, onChange: () => { } }; //# sourceMappingURL=Radio.js.map