Make WordPress Core

Opened 9 years ago

Closed 9 years ago

Last modified 9 years ago

#31368 closed enhancement (fixed)

Let WordPress speak

Reported by: afercia's profile afercia Owned by: azaozz's profile azaozz
Milestone: 4.2 Priority: normal
Severity: normal Version: 4.1
Component: General Keywords: has-patch commit
Focuses: accessibility, javascript Cc:

Description

Quickly discussed with @azaozz and the accessibility team, we would like to propose a wp.a11y object to keep some accessibility related things.
Some of them are already used in the admin, see the Customizer "move widget up/down" #28892, they just need to be abstracted a bit and added "globally" to wp.
Other things may be added in the future, for example things that are used by different components in the admin and each one has its own, specific implementation. They should probably be abstracted and standardized: less JavaScript, better code, easier maintenance, easier to use for developers, etc. Consider for example things like a focus manager (see e.g. wp.media.view.FocusManager), constraining tabbing, modals handling, errors handling and such.

Speak

As a start, the proposed patch creates an easy way to deliver messages for screen reader users to an ARIA live region to be used as a general message area available in the admin, hidden with the screen-reader-text CSS rule.
Inspired by Mr. Armfield original idea (see #28892), it replaces the current Customizer implementation and it patches also Shiny Updates, for demoing purposes.

When a portion of a page is updated with some JS, the update is easy to see at a glance but there is no audible feedback for screen reader users that an action has started, has been completed or failed.
The solution should be effective for users and easy to use for developers at the same time. For developers, it would be as simple as this:

wp.speak( 'your message here' );

For the future, consider possible integration with WP notices, see as an example: http://heydonworks.com/practical_aria_examples/#offline-alert

@todo:

  • naming conventions
  • code review
  • carefully consider where to put things: should be in all admin pages? install pages too?
  • should always be enqueued as last script?
  • testing in different scenarios
  • consider making it available in the front-end too for themes and plugins, using something like wp_enqueue_a11y()
  • documentation

Where it could be used right now:

See attached screenshot to have an idea about how it currently works. Any thoughts more than welcome.

Really speak

As a divertissement, the alternate patch it's a glimpse ahead: it demos the Web Speech API that will be hopefully implemented in the next future. Have fun :) Working in Chrome and Safari, tested just in Chrome.

References

The aria-live property
W3C Recommendation

Accessibility: The Missing Ingredient
by Andrew Hoffman May 13, 2014 on A List Apart
Shopping cart demo

Accessible forms with ARIA live regions
November 10th 2012 Tink.co.uk (Léonie Watson)

Aria live support
W3C Protocols and Formats Working Group, Updated 24 September 2014

ARIA live support
17 March 2014 by Léonie Watson on The Paciello Group blog

Screenshot

https://cldup.com/Y-I7xkELAi.png

Attachments (6)

31368.patch (7.5 KB) - added by afercia 9 years ago.
web-speech-api-demo.patch (10.0 KB) - added by afercia 9 years ago.
Web Speech API, just for demoing purposes
31368.2.patch (7.5 KB) - added by afercia 9 years ago.
web-speech-api-demo.2.patch (9.9 KB) - added by afercia 9 years ago.
31368.3.patch (5.7 KB) - added by azaozz 9 years ago.
31368.4.patch (5.6 KB) - added by iseulde 9 years ago.

Download all attachments as: .zip

Change History (23)

@afercia
9 years ago

@afercia
9 years ago

Web Speech API, just for demoing purposes

#1 @afercia
9 years ago

  • Keywords has-patch added

This ticket was mentioned in Slack in #accessibility by afercia. View the logs.


9 years ago

#3 @afercia
9 years ago

Updated patches fix a typo: aria-role="status" should be role="status"
#31393 should be fixed first.

@afercia
9 years ago

This ticket was mentioned in Slack in #core by afercia. View the logs.


9 years ago

This ticket was mentioned in Slack in #accessibility by afercia. View the logs.


9 years ago

This ticket was mentioned in Slack in #accessibility by joedolson. View the logs.


9 years ago

@azaozz
9 years ago

#7 follow-up: @azaozz
9 years ago

  • Keywords commit added
  • Milestone changed from Awaiting Review to 4.2

In 31368.3.patch: simplified 31368.2.patch a bit. We don't need to output the HTML element everywhere from PHP. This is JS based, can add it with JS :)

@afercia if this looks good to you, lets add it. Also, does the #wp-a11y-speak div have to be at the top in body? Would probably be better to append instead of prepend it.

#8 in reply to: ↑ 7 @afercia
9 years ago

Replying to azaozz:

We don't need to output the HTML element everywhere from PHP. This is JS based, can add it with JS :)

Yup, I've considered that option, but decided to keep it simple in the first proposal. I suppose using JS would be good also for making it available in the front-end. Would like to ask to consider, for the future, introducing a simple function, something like wp_enqueue_media()

@afercia if this looks good to you

I'm embarassed you're really asking me :) whatever the changes you want to do, it's fine for me

Also, does the #wp-a11y-speak div have to be at the top in body?

Just wanted to be sure it was in the DOM before the script run, was still unsure where to enqueue the script and initialiazation.
Thanks very much :) also for keeping the console logging.

#9 @afercia
9 years ago

forgot to remove the old div from customize.php :)
<div id="screen-reader-messages" role="status" aria-live="polite" aria-relevant="all" aria-atomic="true" class="screen-reader-text"></div>

This ticket was mentioned in Slack in #core by afercia. View the logs.


9 years ago

@iseulde
9 years ago

#11 follow-up: @iseulde
9 years ago

Maybe debug is not really needed? And no need to check if a11y exists if it's a dependency? Also fixed a JSHint error.

#12 @iseulde
9 years ago

  • Component changed from Administration to General

#13 @azaozz
9 years ago

  • Owner set to azaozz
  • Resolution set to fixed
  • Status changed from new to closed

In 31594:

Add wp.a11y.speak() for audible alerts/updates in screen readers. Props afercia, GrahamArmfield (for the idea), iseulde. Fixes #31368.

#14 in reply to: ↑ 11 @azaozz
9 years ago

Replying to iseulde:

...no need to check if a11y exists if it's a dependency?

Right. In that case we will have to add the dependency to every script that uses wp.a11y, not queue it everywhere in the admin. It's cleaner.

#15 @afercia
9 years ago

Thanks very much :) Worth noting the debug logging is in at least other two files, revisions.js and updates.js (in the latter as default in a switch), just suggesting to consider consistency.

This ticket was mentioned in Slack in #accessibility by joedolson. View the logs.


9 years ago

This ticket was mentioned in Slack in #accessibility by afercia. View the logs.


9 years ago

Note: See TracTickets for help on using tickets.