import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Radio/radio'; import { css } from '@patternfly/react-styles'; import { PickOptional } from '../../helpers/typeUtils'; import { getOUIAProps, OUIAProps, getDefaultOUIAId } from '../../helpers'; export interface RadioProps extends Omit, 'disabled' | 'label' | 'onChange' | 'type'>, OUIAProps { /** Additional classes added to the radio wrapper. This will be a div element if * isLabelWrapped is true, otherwise this will be a label element. */ className?: string; /** Additional classed added to the radio input */ inputClassName?: string; /** Id of the radio. */ id: string; /** Flag to show if the radio label is wrapped on small screen. */ isLabelWrapped?: boolean; /** Flag to show if the radio label is shown before the radio button. */ isLabelBeforeButton?: boolean; /** Flag to show if the radio is checked. */ checked?: boolean; /** Flag to show if the radio is checked. */ isChecked?: boolean; /** Flag to show if the radio is disabled. */ isDisabled?: boolean; /** Flag to show if the radio selection is valid or invalid. */ isValid?: boolean; /** Label text of the radio. */ label?: React.ReactNode; /** Name for group of radios */ name: string; /** A callback for when the radio selection changes. */ onChange?: (event: React.FormEvent, checked: boolean) => void; /** Aria label for the radio. */ 'aria-label'?: string; /** Description text of the radio. */ description?: React.ReactNode; /** Body of the radio. */ body?: React.ReactNode; /** Value to overwrite the randomly generated data-ouia-component-id.*/ ouiaId?: number | string; /** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */ ouiaSafe?: boolean; } class Radio extends React.Component { static displayName = 'Radio'; static defaultProps: PickOptional = { className: '', isDisabled: false, isValid: true, onChange: () => {} }; constructor(props: RadioProps) { super(props); if (!props.label && !props['aria-label']) { // eslint-disable-next-line no-console console.error('Radio:', 'Radio requires an aria-label to be specified'); } this.state = { ouiaStateId: getDefaultOUIAId(Radio.displayName) }; } handleChange = (event: React.FormEvent) => { this.props.onChange(event, event.currentTarget.checked); }; render() { const { 'aria-label': ariaLabel, checked, className, inputClassName, defaultChecked, isLabelWrapped, isLabelBeforeButton, isChecked, isDisabled, isValid, label, // eslint-disable-next-line @typescript-eslint/no-unused-vars onChange, description, body, ouiaId, ouiaSafe = true, ...props } = this.props; if (!props.id) { // eslint-disable-next-line no-console console.error('Radio:', 'id is required to make input accessible'); } const inputRendered = ( ); let labelRendered: React.ReactNode = null; if (label && isLabelWrapped) { labelRendered = {label}; } else if (label) { labelRendered = ( ); } const descRender = description ? {description} : null; const bodyRender = body ? {body} : null; const childrenRendered = isLabelBeforeButton ? ( <> {labelRendered} {inputRendered} {descRender} {bodyRender} ) : ( <> {inputRendered} {labelRendered} {descRender} {bodyRender} ); return isLabelWrapped ? ( ) : (
{childrenRendered}
); } } export { Radio };