Skip to content

Select component a11y fixes #2038

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

Merged
merged 15 commits into from
May 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/cold-pillows-protect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/react': patch
---

Fixes accessibility bugs in the Select component.
6 changes: 3 additions & 3 deletions docs/content/Select.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {Select, Text} from '@primer/react'
```jsx live
<FormControl>
<FormControl.Label>Preferred Primer component interface</FormControl.Label>
<Select id="basic">
<Select>
<Select.Option value="figma">Figma</Select.Option>
<Select.Option value="css">Primer CSS</Select.Option>
<Select.Option value="prc">Primer React components</Select.Option>
Expand All @@ -30,7 +30,7 @@ import {Select, Text} from '@primer/react'
```jsx live
<FormControl>
<FormControl.Label>Preferred Primer component interface</FormControl.Label>
<Select id="grouped">
<Select>
<Select.OptGroup label="GUI">
<Select.Option value="figma">Figma</Select.Option>
</Select.OptGroup>
Expand All @@ -48,7 +48,7 @@ import {Select, Text} from '@primer/react'
```jsx live
<FormControl>
<FormControl.Label>Preferred Primer component interface</FormControl.Label>
<Select id="withPlaceholder" placeholder="Pick an interface">
<Select placeholder="Pick an interface">
<Select.Option value="figma">Figma</Select.Option>
<Select.Option value="css">Primer CSS</Select.Option>
<Select.Option value="prc">Primer React components</Select.Option>
Expand Down
43 changes: 32 additions & 11 deletions src/Select.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react'
import styled from 'styled-components'
import {get} from './constants'
import TextInputWrapper, {StyledWrapperProps} from './_TextInputWrapper'

export type SelectProps = Omit<
Expand All @@ -10,19 +9,35 @@ export type SelectProps = Omit<

const StyledSelect = styled.select`
appearance: none;
background-color: transparent;
border: 0;
color: currentColor;
font-size: inherit;
outline: none;
width: 100%;

option {
color: initial;
/* Firefox hacks: */
/* 1. Makes Firefox's native dropdown menu's background match the theme.

background-color should be 'transparent', but Firefox uses the background-color on
<select> to determine the background color used for the dropdown menu.
*/
background-color: inherit;

/* 2. Prevents visible overlap of partially transparent background colors.

'colors.input.disabledBg' happens to be partially transparent in light mode, so we use a
transparent background-color on a disabled <select>. */
&:disabled {
background-color: transparent;
}

/* colors the select input's placeholder text */
&:invalid {
color: ${get('colors.fg.subtle')};
/* 3. Maintain dark bg color in Firefox on Windows high-contrast mode

Firefox makes the <select>'s background color white when setting 'background-color: transparent;' */
@media screen and (forced-colors: active) {
&:disabled {
background-color: -moz-combobox;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wow thanks for the comments explaining why!

}
`

Expand All @@ -44,18 +59,24 @@ const Select = React.forwardRef<HTMLSelectElement, SelectProps>(
({children, disabled, placeholder, size, required, validationStatus, ...rest}: SelectProps, ref) => (
<TextInputWrapper
sx={{
position: 'relative'
overflow: 'hidden',
position: 'relative',
'@media screen and (forced-colors: active)': {
svg: {
fill: disabled ? 'GrayText' : 'FieldText'
}
}
}}
size={size}
validationStatus={validationStatus}
disabled={disabled}
>
<StyledSelect
ref={ref}
required={required || Boolean(placeholder)}
required={required}
disabled={disabled}
aria-required={required}
aria-disabled={disabled}
aria-invalid={validationStatus === 'error' ? 'true' : 'false'}
data-hasplaceholder={Boolean(placeholder)}
{...rest}
>
{placeholder && (
Expand Down
17 changes: 15 additions & 2 deletions src/_TextInputWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,19 @@ export const TextInputBaseWrapper = styled.span<StyledBaseWrapperProps>`
border-radius: ${get('radii.2')};
outline: none;
box-shadow: ${get('shadows.primer.shadow.inset')};
cursor: text;
display: inline-flex;
align-items: stretch;
min-height: 32px;

input,
textarea {
cursor: text;
}

select {
cursor: pointer;
}

&::placeholder {
color: ${get('colors.fg.subtle')};
}
Expand Down Expand Up @@ -125,10 +133,15 @@ export const TextInputBaseWrapper = styled.span<StyledBaseWrapperProps>`
${props =>
props.disabled &&
css`
cursor: not-allowed;
color: ${get('colors.primer.fg.disabled')};
background-color: ${get('colors.input.disabledBg')};
border-color: ${get('colors.border.default')};

input,
textarea,
select {
cursor: not-allowed;
}
`}

${props =>
Expand Down
6 changes: 3 additions & 3 deletions src/__tests__/Select.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe('Select', () => {
const placeholderOption = getByText('Pick a choice')
const select = getByLabelText('Choice')

expect(select).not.toHaveAttribute('aria-required')
expect(select).not.toHaveAttribute('required')

expect(placeholderOption).toBeDefined()
expect(placeholderOption.tagName.toLowerCase()).toBe('option')
Expand Down Expand Up @@ -102,7 +102,7 @@ describe('Select', () => {
const placeholderOption = getByText('Pick a choice')
const select = getByLabelText('Choice')

expect(select).toHaveAttribute('aria-required')
expect(select).toHaveAttribute('required')

expect(placeholderOption).toBeDefined()
expect(placeholderOption.tagName.toLowerCase()).toBe('option')
Expand Down Expand Up @@ -130,7 +130,7 @@ describe('Select', () => {

const select = getByLabelText('Choice')

expect(select).toHaveAttribute('aria-disabled')
expect(select).toHaveAttribute('disabled')
expect(select).toHaveAttribute('disabled')
})
})
70 changes: 63 additions & 7 deletions src/__tests__/__snapshots__/Autocomplete.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Array [
border-radius: 6px;
outline: none;
box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
cursor: text;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -28,6 +27,15 @@ Array [
padding-right: 0;
}

.c0 input,
.c0 textarea {
cursor: text;
}

.c0 select {
cursor: pointer;
}

.c0::-webkit-input-placeholder {
color: #6e7781;
}
Expand Down Expand Up @@ -163,7 +171,6 @@ Array [
border-radius: 6px;
outline: none;
box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
cursor: text;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -179,6 +186,15 @@ Array [
padding-right: 0;
}

.c0 input,
.c0 textarea {
cursor: text;
}

.c0 select {
cursor: pointer;
}

.c0::-webkit-input-placeholder {
color: #6e7781;
}
Expand Down Expand Up @@ -349,7 +365,6 @@ Array [
border-radius: 6px;
outline: none;
box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
cursor: text;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -365,6 +380,15 @@ Array [
padding-right: 0;
}

.c0 input,
.c0 textarea {
cursor: text;
}

.c0 select {
cursor: pointer;
}

.c0::-webkit-input-placeholder {
color: #6e7781;
}
Expand Down Expand Up @@ -1298,7 +1322,6 @@ Array [
border-radius: 6px;
outline: none;
box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
cursor: text;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -1314,6 +1337,15 @@ Array [
padding-right: 0;
}

.c0 input,
.c0 textarea {
cursor: text;
}

.c0 select {
cursor: pointer;
}

.c0::-webkit-input-placeholder {
color: #6e7781;
}
Expand Down Expand Up @@ -2157,7 +2189,6 @@ Array [
border-radius: 6px;
outline: none;
box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
cursor: text;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -2173,6 +2204,15 @@ Array [
padding-right: 0;
}

.c0 input,
.c0 textarea {
cursor: text;
}

.c0 select {
cursor: pointer;
}

.c0::-webkit-input-placeholder {
color: #6e7781;
}
Expand Down Expand Up @@ -3027,7 +3067,6 @@ Array [
border-radius: 6px;
outline: none;
box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
cursor: text;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -3043,6 +3082,15 @@ Array [
padding-right: 0;
}

.c0 input,
.c0 textarea {
cursor: text;
}

.c0 select {
cursor: pointer;
}

.c0::-webkit-input-placeholder {
color: #6e7781;
}
Expand Down Expand Up @@ -4027,7 +4075,6 @@ Array [
border-radius: 6px;
outline: none;
box-shadow: inset 0 1px 0 rgba(208,215,222,0.2);
cursor: text;
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
Expand All @@ -4043,6 +4090,15 @@ Array [
padding-right: 0;
}

.c0 input,
.c0 textarea {
cursor: text;
}

.c0 select {
cursor: pointer;
}

.c0::-webkit-input-placeholder {
color: #6e7781;
}
Expand Down
Loading