-
Notifications
You must be signed in to change notification settings - Fork 27
feat: improve keyboard operation accessibility #285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
b727013
c3e086c
78bb227
2f7630e
429831f
28be306
fbd0d56
f12a903
913982b
6817d51
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| import classNames from 'classnames'; | ||
| import useMergedState from 'rc-util/lib/hooks/useMergedState'; | ||
| import KeyCode from 'rc-util/lib/KeyCode'; | ||
| import omit from 'rc-util/lib/omit'; | ||
| import { composeRef } from 'rc-util/lib/ref'; | ||
| import * as React from 'react'; | ||
|
|
@@ -84,6 +85,9 @@ const InternalSegmentedOption: React.FC<{ | |
| e: React.ChangeEvent<HTMLInputElement>, | ||
| value: SegmentedRawOption, | ||
| ) => void; | ||
| onFocus: (e: React.FocusEvent<HTMLInputElement>) => void; | ||
| onBlur: (e?: React.FocusEvent<HTMLInputElement>) => void; | ||
| onKeyDown: (e: React.KeyboardEvent) => void; | ||
| }> = ({ | ||
| prefixCls, | ||
| className, | ||
|
|
@@ -94,11 +98,16 @@ const InternalSegmentedOption: React.FC<{ | |
| value, | ||
| name, | ||
| onChange, | ||
| onFocus, | ||
| onBlur, | ||
| onKeyDown, | ||
| }) => { | ||
| const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => { | ||
| if (disabled) { | ||
| return; | ||
| } | ||
| // Do not add focus style when clicking | ||
| onBlur(); | ||
|
||
| onChange(event, value); | ||
| }; | ||
|
|
||
|
|
@@ -111,16 +120,17 @@ const InternalSegmentedOption: React.FC<{ | |
| <input | ||
| name={name} | ||
| className={`${prefixCls}-item-input`} | ||
| aria-hidden="true" | ||
| type="radio" | ||
| disabled={disabled} | ||
| checked={checked} | ||
| onChange={handleChange} | ||
| onFocus={onFocus} | ||
| onBlur={onBlur} | ||
| onKeyDown={onKeyDown} | ||
| /> | ||
| <div | ||
| className={`${prefixCls}-item-label`} | ||
| title={title} | ||
| role="option" | ||
| aria-selected={checked} | ||
| > | ||
| {label} | ||
|
|
@@ -176,10 +186,64 @@ const Segmented = React.forwardRef<HTMLDivElement, SegmentedProps>( | |
|
|
||
| const divProps = omit(restProps, ['children']); | ||
|
|
||
| // ======================= Focus ======================== | ||
| const [isFocused, setIsFocused] = React.useState(false); | ||
|
|
||
| const currentIndex = segmentedOptions.findIndex( | ||
| (option) => option.value === rawValue, | ||
| ); | ||
|
|
||
| const handleFocus = (event: React.FocusEvent<HTMLInputElement>) => { | ||
| setIsFocused(true); | ||
| }; | ||
|
|
||
| const handleBlur = (event?: React.FocusEvent<HTMLInputElement>) => { | ||
| setIsFocused(false); | ||
| }; | ||
|
|
||
| // ======================= Keyboard ======================== | ||
| const getNextIndex = (current: number, offset: number) => { | ||
| if (disabled) { | ||
| return current; | ||
| } | ||
|
|
||
| const total = segmentedOptions.length; | ||
| const nextIndex = (current + offset + total) % total; | ||
|
|
||
| if (segmentedOptions[nextIndex]?.disabled) { | ||
| return getNextIndex(nextIndex, offset); | ||
| } | ||
| return nextIndex; | ||
| }; | ||
|
||
|
|
||
| const handleKeyDown = (event: React.KeyboardEvent) => { | ||
| let offset = 0; | ||
|
|
||
| switch (event.which) { | ||
| case KeyCode.LEFT: | ||
| case KeyCode.UP: | ||
| offset = -1; | ||
| break; | ||
| case KeyCode.RIGHT: | ||
| case KeyCode.DOWN: | ||
| offset = 1; | ||
| break; | ||
| } | ||
|
|
||
| const nextIndex = getNextIndex(currentIndex, offset); | ||
| const nextOption = segmentedOptions[nextIndex]; | ||
aojunhao123 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| if (nextOption) { | ||
| setRawValue(nextOption.value); | ||
| onChange?.(nextOption.value); | ||
| } | ||
| }; | ||
|
|
||
| return ( | ||
| <div | ||
| role="listbox" | ||
| role="radiogroup" | ||
| aria-label="segmented control" | ||
| tabIndex={disabled ? undefined : 0} | ||
aojunhao123 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| {...divProps} | ||
| className={classNames( | ||
| prefixCls, | ||
|
|
@@ -222,10 +286,15 @@ const Segmented = React.forwardRef<HTMLDivElement, SegmentedProps>( | |
| { | ||
| [`${prefixCls}-item-selected`]: | ||
| segmentedOption.value === rawValue && !thumbShow, | ||
| [`${prefixCls}-item-focused`]: | ||
| isFocused && segmentedOption.value === rawValue, | ||
| }, | ||
| )} | ||
| checked={segmentedOption.value === rawValue} | ||
| onChange={handleChange} | ||
| onFocus={handleFocus} | ||
| onBlur={handleBlur} | ||
| onKeyDown={handleKeyDown} | ||
| disabled={!!disabled || !!segmentedOption.disabled} | ||
| /> | ||
| ))} | ||
|
|
||