Skip to main content

RadioGroup

Library
UDS Base
Repository
github.com/telus/universal-design-system
Package
npmjs.com/package/@telus-uds/components-base
Package version
1.6.1
Loading...

Introduction

import { RadioGroup } from '@telus-uds/components-base'

A RadioGroup renders a group of Radio buttons in a list, with a text label for each radio button. Exactly one radio button may be selected at a time.

Guidance

Use RadioGroup where the user needs to select one item from multiple options, and where those options can be explained simply with one short phrase (generally, up to around 5 words).

Alternatives

  • If the options require information beyond one short phrase, consider RadioCardGroup
  • If the options are very simple and can be described in one or two words or numbers, consider ButtonGroup
  • If it should be possible to select more than one item at a time, consider CheckboxGroup

Labeling the group

Three props are available for labelling the group to users:

  • legend sets the main title for the group and should be a short, simple name for what the user is to choose.
  • hint is an optional short sentence clarifying the legend to help users understand what choice they are being asked to make and what the result of their choice will be.
  • tooltip allows further clarifying information to be included but not shown by default, only shown on pressing a TooltipButton. This should be used for information that will help many users make a choice, but which is not needed by all users.
Loading...

Items

Use the items prop to pass an array of objects describing each Radio in the group:

  • label: text displayed alongside the radio button
  • id: identifier used to store which Radio is selected (uses index if undefined). This is written into HTML as an id attr on web, so should be unique and not match IDs used elsewhere on a page.
  • onChange: optional function called on selection, in addition to updating the group's selection state
Loading...

Controlled

The selection state may be controlled by a parent by passing checkedId and an onChange function that updates the parent's state. If the component is controlled in this way, checkedId must never be undefined; pass null or an empty string if there is no selection.

Loading...

Uncontrolled

If checkedId is not provided, RadioGroup manages its own state. An initial selection may be provided by passing initialCheckedId.

Loading...

onChange functions

The onChange handler for RadioGroup may be used in both controlled and uncontrolled usage and takes two arguments: value (string) and event (React SyntheticEvent object).

The event object shape varies between web and native applications, and type of user interaction. It is usually more stable to have application logic respond to the value and not event properties.

On web, event.currentTarget will point to the accessible container that holds the radio role and state, and should be used if accessing the raw HTML element is required (event.target will vary on mouse clicks depending on where exactly the click occured).

Loading...

Use in forms

For web forms, the name prop may be used to define the name of the group's <fieldset> and input elements, and legend may be used to provide a title with <legend> type for the fieldset.

Loading...

Validation

Validation state may be set by passing 'error' or 'success' to the validation prop.

Loading...

A11y guidelines

RadioGroup accepts all the common accessibility props, but also sets accessibility role 'radiogroup' and controls the accessibility state of children like Radio and Feedback based on current state.

Props

NameTypeDefaultDescription
itemsarrayOf[]Array of objects containing specifics for each Radio to be rendered in the group.
tokenscustomSystem tokens prop, see tokens for more details
radioTokenscustomOptional theme token overrides for each inner Radio component
variantobjectOfSystem variant prop, see variants for more details
legendstringMain text used to describe this group, used in Fieldset's Legend element.
hintstringOptional additional text giving more detail to help a user make a choice.
tooltipstringOptional tooltip text content to include alongside the legend and hint.
validation'error' | 'success'Current validation status of the group, passed to the feedback element if there is one.
feedbackstringIf provided, a Feedback element is rendered containing this text.
initialCheckedIdstringIf provided, the radio card with this id is selected on first render.
checkedIdstringIf not undefined, the radio card with this id is selected (or none is selected if `null`), and the element's selection state will be controlled by its parent using the `onChange` function.
onChangefuncFunction to call on change in selection state. Is required if the selection state is controlled by a parent using checkedId and the input is not readOnly.
readOnlyboolIf true, the radio cards cannot be selected by the user and simply show their current state.
inactiveboolIf true, the radio card cannot be interacted with, elements are set as `disabled` and if the theme supports `inactive` appearances rules, these are applied.
namestringOn Web, this is passed to the `name` attribute of the fieldset and each radio input.