A11Y improvement: Empty result text is not read by screenreaders

Created on 6 February 2023, about 2 years ago
Updated 7 February 2023, about 2 years ago

Problem/Motivation

When you put the focus on the input element, you have an option to show a text before people have started typing, the "empty result" text.

This text will never be read by screen readers at the moment, which is an accessibility failure.

Steps to reproduce

* Enable screenreader (ex. NVDA).
* Set focus on the search field.
* The "no result" text will not be read aloud.

Proposed resolution

* Add aria-describedby to the search input field.
* Add an ID to the empty result DIV, that can be referenced by the aria-describedby.
* Update the admin form description of the field, recommending to keep it short, and to not use HTML in that field.

Remaining tasks

Create patch with proposed solutions

User interface changes

On /admin/config/search/fac/fac_search_api
Update to description of the field to give better advice on how to use this field.

API changes

None

Data model changes

None

🐛 Bug report
Status

RTBC

Version

2.0

Component

Code

Created by

🇳🇱Netherlands bskibinski Breda, The Netherlands

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @bskibinski
  • 🇳🇱Netherlands bskibinski Breda, The Netherlands

    In this patch i've added a unique ID to the empty-result div.
    That ID is referenced by the new "aria-describedby" on the search input field.

    I've also updated the description of the field in the admin form.
    It used to be:
    "Enter the HTML to show when the search input gets focus and there is no search term in the input. Useful for "quick links" for instance."

    I've changed it to:
    "When the search input gets focus and there is no search term, this text will be shown and is read by screen readers. Keep this short and do not use HTML to avoid accessibility failures."

    This field has been 'abused' a bit to show some quicklinks, but those links were never accessible to screen-readers (screen reader users didn't even know that text existed) and those links are not reachable by keyboard users.

    So it's better to update the description for it's modern use.
    Showing a list of quicklinks (when you haven't entered a search term yet) that's accessible should be built completely different.

    This patch shouldn't 'break' any existing sites using it for a list of links, it just exposes the problem they already had.

  • Status changed to RTBC about 2 years ago
  • 🇳🇱Netherlands sander.bras

    Patch applied and works like intended.

Production build 0.71.5 2024