-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
a11yAccessibility fixes OR improvementsAccessibility fixes OR improvementsdiscussiontaskA task! A task!A task! A task!
Description
For this task, use the exposed filter form on the News listing page (via PR #89).
- Add
aria-describedbyto form fields:- Some form fields have description/help text under them, in addition to field labels
- These fields would be more accessible/assistive-tech-user-friendly if the description text were programmatically associated with its field, via
aria-describedby.
- Add
role="Search" aria-label="Filter results"to the<form>element.- Based on WA fix during Kavli project.
- (Whether or not the lack of these attributes is a strict failure is a little squishy -- or it was a little squishy when we talked about it on #cd-lassp-kavli-wa-issues in June 2023 -- but it is an AT UX improvement, so let's do it, or at least try!)
Thing 1
Example markup, based on text search/filter on Einaudi > News (edited for length):
<div class="js-form-item form-item js-form-type-textfield form-item-text-search js-form-item-text-search">
<label for="edit-text-search--2">Search</label>
<input type="text" id="edit-text-search--2" name="text_search" value="" aria-describedby="edit-text-search--2--description">
<div id="edit-text-search--2--description" class="description">
Simple text search.
</div>
</div>Thing 2
On Kavli, we had to add a template/theme suggestion in .theme, then a custom template. Full details can be seen in this commit:
bd294671c7d
- As far as I could tell, each views exposed form needs its own template file.
- With that ^^ in mind (as you'll see in the commit details), we created an "include" template file, that could be reused as needed, per-view-exposed-form.
Example markup, based on text search/filter on Kavli > News and Events:
<form action="/news-events" method="get" id="views-exposed-form-news-page-listing" accept-charset="UTF-8" role="search" aria-label="Filter results">To do
- Decide: We should do this, right?
- Decide: Just target views exposed forms, right?
- Only other public-facing fields I can think of are webforms, and we don't have Webform included with our base Drupal implementation. (Site search, yes, but the site search text field doesn't have help text.)
- Create template override (
core/modules/system/templates/input.html.twig)- May need to add template suggestion to cwd_base.theme.
- Test / review / release
- Optional: Create companion issue on cwd_claro for content entry fields. (Why not make those forms more usable, right?)
Suggested by Hank on Slack, with this reference: https://www.tpgi.com/using-aria-describedby-to-provide-helpful-form-hints/
Metadata
Metadata
Assignees
Labels
a11yAccessibility fixes OR improvementsAccessibility fixes OR improvementsdiscussiontaskA task! A task!A task! A task!