Skip to content
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

Make EuiDescribedFormGroup title accessible #2989

Merged

Conversation

miukimiu
Copy link
Contributor

@miukimiu miukimiu commented Mar 5, 2020

Summary

Closes #2888

Previously, it was decided on #2783 to introduce a <fieldset /> to group elements in the EuiDescribedFormGroup component. Because the first element inside the fieldset must be a <legend /> it was decided to:

  • Wrap the legend with an <EuiScreenReaderOnly> and add an aria-hidden="true" to the <EuiTitle />

This decision created some issues described in #2888. For instance in Kibana Advanced Settings, users could no longer navigate by heading to any setting.

Fix

To fix this issue I decided to:

  • Replace the <fieldset /> with a <div role="group" />. Actually, before the change introduced on Described form group a11y #2783 the component was already like that.
  • This way we don't need the aria-hidden on the<EuiTitle /> element and we no longer need a <legend />.

Checklist

  • [ ] Check against all themes for compatibility in both light and dark modes
  • [ ] Checked in mobile
  • [ ] Checked in IE11 and Firefox
  • Props have proper autodocs
  • [ ] Added documentation examples
  • Added or updated jest tests
  • Checked for breaking changes and labeled appropriately
  • Checked for accessibility including keyboard-only and screenreader modes
  • A changelog entry exists and is marked appropriately

@kibanamachine
Copy link

Preview documentation changes for this PR: https://eui.elastic.co/pr_2989/

1 similar comment
@kibanamachine
Copy link

Preview documentation changes for this PR: https://eui.elastic.co/pr_2989/

@myasonik
Copy link
Contributor

myasonik commented Mar 6, 2020

But... Now we don't have a <legend />...

To shim the expected functionality, we'd need to add an aria-describedby to each form element (e.g., <input />, <textarea />, etc.) rendered inside this group which seems a little tricky. Something that would have to happen after render, I think?

@miukimiu
Copy link
Contributor Author

miukimiu commented Mar 6, 2020

In the past, we used to have an issue with having an aria-describedby. The description text was served as the help text for the input by using the aria-describedby when there was only one EuiFormRow .

This solution was making the screen readers read the text twice. I think if we use again aria-describedby on <input /> s or <textarea />s we will end up with the same issue. Unless we have an aria-hidden on the element with the id. That also causes another issue. The one we're trying to solve.

I think we should separate things. The title and description of the EuiDescribedFormGroup are used as a way to provide additional content. If users want to create a help text for each <input /> or <textarea /> they should use a EuiFormRow help-text prop or an aria-label on the form element.

But I'm open to other solutions. 🙂

@cchaos, @myasonik any suggestions?

@cchaos
Copy link
Contributor

cchaos commented Mar 6, 2020

@myasonik Can we not just rely on DOM order and heading structure for screenreaders to read these types of pages. Essentially it renders:

<headingLevel />
<paragraph />
<inputLabel for="input" />
<input />

... repeat ...

@myasonik
Copy link
Contributor

myasonik commented Mar 9, 2020

It depends...

That structure is really good for things like describing a form. For example, stuff like "This info will only be used for these specific purposes" or "These settings apply to a specific user space and not to others".

But it starts to break down when you try describing form fields. For example, not having a legend becomes really difficult is an address "field" (where there actually multiple fields for one "value"). An individual input might be labelled with "Line 1" or "State" and the legend provides the context that this is for a billing address or something.

I see how this is tricky to solve with our current setup though so if we want, we can ship this (it's probably better than clobbering semantics like we are right now) but I'd want to open a new issue to reintroduce <fieldset>/<legend> and probably tackle the whole lot of the form issues by making a plan forward for #2493.

@miukimiu
Copy link
Contributor Author

miukimiu commented Mar 9, 2020

I think we should ship this to fix the #2888 bug and we open a new issue to reintroduce the <fieldset>/<legend>. If we all agree, I'm happy to merge.

Copy link
Contributor

@cchaos cchaos left a comment

Choose a reason for hiding this comment

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

I agree, let's just fix the a11y issue and then come up with a solution in another issue so we know exactly what the path is forward.

CHANGELOG.md Outdated Show resolved Hide resolved
@kibanamachine
Copy link

Preview documentation changes for this PR: https://eui.elastic.co/pr_2989/

Copy link
Contributor

@thompsongl thompsongl left a comment

Choose a reason for hiding this comment

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

LGTM assuming a follow-up issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

EuiDescribedFormGroup clobbers title semantics
5 participants