shoelace/src/components/radio-group/radio-group.ts

337 wiersze
10 KiB
TypeScript
Czysty Zwykły widok Historia

2022-08-17 15:37:37 +00:00
import { html } from 'lit';
2022-03-15 21:42:59 +00:00
import { customElement, property, query, state } from 'lit/decorators.js';
2021-09-29 12:40:26 +00:00
import { classMap } from 'lit/directives/class-map.js';
import { FormControlController } from '../../internal/form';
2022-08-17 15:37:37 +00:00
import ShoelaceElement from '../../internal/shoelace-element';
2022-11-09 20:27:51 +00:00
import { HasSlotController } from '../../internal/slot';
2022-08-30 14:17:46 +00:00
import { watch } from '../../internal/watch';
2022-08-08 14:15:41 +00:00
import '../button-group/button-group';
2021-07-10 00:45:44 +00:00
import styles from './radio-group.styles';
import type { ShoelaceFormControl } from '../../internal/shoelace-element';
import type SlRadioButton from '../radio-button/radio-button';
2022-08-08 14:15:41 +00:00
import type SlRadio from '../radio/radio';
import type { CSSResultGroup } from 'lit';
2021-04-09 12:15:33 +00:00
/**
Enrich components `@summary` with description from docs (#962) * keep header styles with repositioned description text * `animated-image` move description to component * code style * `avatar` add summary from docs * `badge` add summary from docs * `breadcrumb` add summary from docs * `button` add summary from docs * lead sentence is now part of the header * `button-group` add summary from docs * `card` add summary from docs * `checkbox` add summary from docs * `color-picker` add summary from docs * `details` add summary from docs * `dialog` add summary from docs * `divider` add summary from docs * `drawer` add summary from docs * `dropdown` add summary from docs * `format-bytes` add summary from docs * `format-date` add summary from docs * `format-number` add summary from docs * `icon` add summary from docs * `icon-button` add summary from docs * `image-comparer` add summary from docs * `include` add summary from docs * `input` add summary from docs * `menu` add summary from docs * `menu-item` add summary from docs * `menu-label` add summary from docs * `popup` add summary from docs * `progressbar` add summary from docs * `progress-ring` add summary from docs * `radio` add summary from docs * `radio-button` add summary from docs * `range` add summary from docs * `rating` add summary from docs * `relative-time` add summary from docs * `select` add summary from docs * `skeleton` add summary from docs * `spinner` add summary from docs * `split-panel` add summary from docs * `switch` add summary from docs * `tab-group` add summary from docs * `tag` add summary from docs * `textarea` add summary from docs * `tooltip` add summary from docs * `visually-hidden` add summary from docs * `animation` add summary from docs * `breadcrumb-item` add summary from docs * `mutation-observer` add summary from docs * `radio-group` add summary from docs * `resize-observer` add summary from docs * `tab` add summary from docs * `tab-panel` add summary from docs * `tree` add summary from docs * `tree-item` add summary from docs * remove `title` for further usage of `Sl` classnames in docs * revert: use markdown parser for component summary
2022-10-21 13:56:35 +00:00
* @summary Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.
*
2021-04-09 12:15:33 +00:00
* @since 2.0
* @status stable
*
2022-03-15 21:42:59 +00:00
* @dependency sl-button-group
*
2022-12-06 16:18:14 +00:00
* @slot - The default slot where `<sl-radio>` or `<sl-radio-button>` elements are placed.
* @slot label - The radio group's label. Required for proper accessibility. Alternatively, you can use the `label`
* attribute.
2021-04-09 12:15:33 +00:00
*
* @event sl-change - Emitted when the radio group's selected value changes.
2022-12-07 22:40:46 +00:00
* @event sl-input - Emitted when the radio group receives user input.
*
2022-12-06 16:18:14 +00:00
* @csspart form-control - The form control that wraps the label, input, and help text.
2022-11-09 20:27:51 +00:00
* @csspart form-control-label - The label's wrapper.
* @csspart form-control-input - The input's wrapper.
* @csspart form-control-help-text - The help text's wrapper.
2022-03-15 21:42:59 +00:00
* @csspart button-group - The button group that wraps radio buttons.
* @csspart button-group__base - The button group's `base` part.
2021-04-09 12:15:33 +00:00
*/
@customElement('sl-radio-group')
export default class SlRadioGroup extends ShoelaceElement implements ShoelaceFormControl {
static styles: CSSResultGroup = styles;
2021-04-09 12:15:33 +00:00
protected readonly formControlController = new FormControlController(this, {
defaultValue: control => control.defaultValue
});
2022-11-09 20:27:51 +00:00
private readonly hasSlotController = new HasSlotController(this, 'help-text', 'label');
2021-07-12 14:48:38 +00:00
@query('slot:not([name])') defaultSlot: HTMLSlotElement;
@query('.radio-group__validation-input') input: HTMLInputElement;
2021-07-12 14:48:38 +00:00
@state() private hasButtonGroup = false;
@state() private errorMessage = '';
@state() private customErrorMessage = '';
@state() defaultValue = '';
2022-03-15 21:42:59 +00:00
2022-08-03 15:06:52 +00:00
/**
2022-12-06 16:18:14 +00:00
* The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot
2022-08-03 15:06:52 +00:00
* instead.
*/
2021-07-01 00:04:46 +00:00
@property() label = '';
2021-04-09 12:15:33 +00:00
2022-12-06 16:18:14 +00:00
/** The radio groups's help text. If you need to display HTML, use the `help-text` slot instead. */
2022-11-09 20:27:51 +00:00
@property({ attribute: 'help-text' }) helpText = '';
2022-12-06 16:18:14 +00:00
/** The name of the radio group, submitted as a name/value pair with form data. */
@property() name = 'option';
2022-12-06 16:18:14 +00:00
/** The current value of the radio group, submitted as a name/value pair with form data. */
@property({ reflect: true }) value = '';
2022-06-21 13:21:33 +00:00
/** Ensures a child radio is checked before allowing the containing form to submit. */
@property({ type: Boolean, reflect: true }) required = false;
2021-04-09 12:15:33 +00:00
2022-03-14 21:47:02 +00:00
connectedCallback() {
super.connectedCallback();
this.defaultValue = this.value;
}
2022-11-09 21:07:34 +00:00
firstUpdated() {
this.formControlController.updateValidity();
2022-11-09 21:07:34 +00:00
}
2023-01-03 20:04:07 +00:00
private getAllRadios() {
2022-08-04 13:17:08 +00:00
return [...this.querySelectorAll<SlRadio | SlRadioButton>('sl-radio, sl-radio-button')];
2022-03-14 21:47:02 +00:00
}
2023-01-03 20:04:07 +00:00
private handleRadioClick(event: MouseEvent) {
const target = event.target as SlRadio | SlRadioButton;
2022-12-07 22:40:46 +00:00
const radios = this.getAllRadios();
const oldValue = this.value;
2022-03-14 21:47:02 +00:00
if (target.disabled) {
return;
2022-03-14 21:47:02 +00:00
}
this.value = target.value;
radios.forEach(radio => (radio.checked = radio === target));
2022-12-07 22:40:46 +00:00
if (this.value !== oldValue) {
this.emit('sl-change');
this.emit('sl-input');
}
2022-03-14 21:47:02 +00:00
}
2023-01-03 20:04:07 +00:00
private handleKeyDown(event: KeyboardEvent) {
if (!['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', ' '].includes(event.key)) {
return;
}
const radios = this.getAllRadios().filter(radio => !radio.disabled);
const checkedRadio = radios.find(radio => radio.checked) ?? radios[0];
const incr = event.key === ' ' ? 0 : ['ArrowUp', 'ArrowLeft'].includes(event.key) ? -1 : 1;
2022-12-07 22:40:46 +00:00
const oldValue = this.value;
let index = radios.indexOf(checkedRadio) + incr;
2022-12-07 22:40:46 +00:00
if (index < 0) {
index = radios.length - 1;
}
2022-12-07 22:40:46 +00:00
if (index > radios.length - 1) {
index = 0;
}
this.getAllRadios().forEach(radio => {
radio.checked = false;
if (!this.hasButtonGroup) {
radio.tabIndex = -1;
}
});
2022-03-14 21:47:02 +00:00
this.value = radios[index].value;
radios[index].checked = true;
if (!this.hasButtonGroup) {
radios[index].tabIndex = 0;
radios[index].focus();
} else {
radios[index].shadowRoot!.querySelector('button')!.focus();
2022-08-01 16:08:31 +00:00
}
2022-12-07 22:40:46 +00:00
if (this.value !== oldValue) {
this.emit('sl-change');
this.emit('sl-input');
}
event.preventDefault();
2022-03-14 21:47:02 +00:00
}
2023-01-03 20:04:07 +00:00
private handleLabelClick() {
2022-11-09 20:27:51 +00:00
const radios = this.getAllRadios();
const checked = radios.find(radio => radio.checked);
const radioToFocus = checked || radios[0];
// Move focus to the checked radio (or the first one if none are checked) when clicking the label
if (radioToFocus) {
radioToFocus.focus();
}
}
2023-01-03 20:04:07 +00:00
private handleSlotChange() {
2022-03-14 21:47:02 +00:00
const radios = this.getAllRadios();
2022-08-03 15:55:24 +00:00
radios.forEach(radio => (radio.checked = radio.value === this.value));
this.hasButtonGroup = radios.some(radio => radio.tagName.toLowerCase() === 'sl-radio-button');
if (!radios.some(radio => radio.checked)) {
if (this.hasButtonGroup) {
const buttonRadio = radios[0].shadowRoot!.querySelector('button')!;
buttonRadio.tabIndex = 0;
} else {
radios[0].tabIndex = 0;
}
2022-07-20 17:55:12 +00:00
}
if (this.hasButtonGroup) {
const buttonGroup = this.shadowRoot?.querySelector('sl-button-group');
if (buttonGroup) {
buttonGroup.disableRole = true;
}
}
}
2023-01-03 20:04:07 +00:00
private showNativeErrorMessage() {
2022-08-04 13:22:13 +00:00
this.input.hidden = false;
this.input.reportValidity();
setTimeout(() => (this.input.hidden = true), 10000);
}
2023-01-03 20:04:07 +00:00
private updateCheckedRadio() {
const radios = this.getAllRadios();
radios.forEach(radio => (radio.checked = radio.value === this.value));
this.formControlController.setValidity(this.validity.valid);
2021-07-12 14:48:38 +00:00
}
2023-01-03 20:04:07 +00:00
@watch('value')
handleValueChange() {
if (this.hasUpdated) {
this.updateCheckedRadio();
}
}
/** Checks for validity but does not show the browser's validation message. */
checkValidity() {
return this.validity.valid;
}
/** Sets a custom validation message. If `message` is not empty, the field will be considered invalid. */
setCustomValidity(message = '') {
this.customErrorMessage = message;
this.errorMessage = message;
if (!message) {
this.formControlController.setValidity(true);
2023-01-03 20:04:07 +00:00
} else {
this.formControlController.setValidity(false);
2023-01-03 20:04:07 +00:00
this.input.setCustomValidity(message);
}
}
get validity(): ValidityState {
const hasMissingData = !((this.value && this.required) || !this.required);
const hasCustomError = this.customErrorMessage !== '';
return {
badInput: false,
customError: hasCustomError,
patternMismatch: false,
rangeOverflow: false,
rangeUnderflow: false,
stepMismatch: false,
tooLong: false,
tooShort: false,
typeMismatch: false,
valid: hasMissingData || hasCustomError ? false : true,
valueMissing: !hasMissingData
};
}
/** Checks for validity and shows the browser's validation message if the control is invalid. */
reportValidity(): boolean {
const validity = this.validity;
this.errorMessage = this.customErrorMessage || validity.valid ? '' : this.input.validationMessage;
this.formControlController.setValidity(validity.valid);
2023-01-03 20:04:07 +00:00
if (!validity.valid) {
this.showNativeErrorMessage();
}
return validity.valid;
2023-01-03 20:04:07 +00:00
}
2021-04-09 12:15:33 +00:00
render() {
2022-11-09 20:27:51 +00:00
const hasLabelSlot = this.hasSlotController.test('label');
const hasHelpTextSlot = this.hasSlotController.test('help-text');
const hasLabel = this.label ? true : !!hasLabelSlot;
const hasHelpText = this.helpText ? true : !!hasHelpTextSlot;
2022-03-15 21:42:59 +00:00
const defaultSlot = html`
<slot
@click=${this.handleRadioClick}
@keydown=${this.handleKeyDown}
@slotchange=${this.handleSlotChange}
role="presentation"
></slot>
2022-03-15 21:42:59 +00:00
`;
2021-04-09 12:15:33 +00:00
return html`
<fieldset
2022-11-09 20:27:51 +00:00
part="form-control"
2021-04-09 12:15:33 +00:00
class=${classMap({
2022-11-09 20:27:51 +00:00
'form-control': true,
'form-control--medium': true,
'form-control--radio-group': true,
'form-control--has-label': hasLabel,
'form-control--has-help-text': hasHelpText
2021-04-09 12:15:33 +00:00
})}
2022-11-09 20:27:51 +00:00
role="radiogroup"
aria-labelledby="label"
aria-describedby="help-text"
aria-errormessage="error-message"
2021-04-09 12:15:33 +00:00
>
2022-11-09 20:27:51 +00:00
<label
part="form-control-label"
id="label"
class="form-control__label"
aria-hidden=${hasLabel ? 'false' : 'true'}
@click=${this.handleLabelClick}
>
2021-04-09 12:15:33 +00:00
<slot name="label">${this.label}</slot>
2022-11-09 20:27:51 +00:00
</label>
<div part="form-control-input" class="form-control-input">
<div class="visually-hidden">
<div id="error-message" aria-live="assertive">${this.errorMessage}</div>
<label class="radio-group__validation">
<input
type="text"
class="radio-group__validation-input"
?required=${this.required}
tabindex="-1"
hidden
/>
</label>
</div>
${this.hasButtonGroup
? html`
<sl-button-group part="button-group" exportparts="base:button-group__base">
${defaultSlot}
</sl-button-group>
`
: defaultSlot}
</div>
2022-12-02 22:03:59 +00:00
<slot
name="help-text"
2022-11-09 20:27:51 +00:00
part="form-control-help-text"
id="help-text"
class="form-control__help-text"
aria-hidden=${hasHelpText ? 'false' : 'true'}
>
2022-12-02 22:03:59 +00:00
${this.helpText}
</slot>
2021-04-09 12:15:33 +00:00
</fieldset>
`;
2022-11-09 20:27:51 +00:00
/* eslint-enable lit-a11y/click-events-have-key-events */
2021-04-09 12:15:33 +00:00
}
}
declare global {
interface HTMLElementTagNameMap {
'sl-radio-group': SlRadioGroup;
}
}