Skip to content

Latest commit

 

History

History
80 lines (60 loc) · 4.65 KB

File metadata and controls

80 lines (60 loc) · 4.65 KB

ember-self-focused

Making Ember Applications’ UI Transitions Screen Reader Friendly.

When UI transitions happen in a SPA (or in any dynamic web application), there is visual feedback; however, for users of screen reading software, there is no spoken feedback by default. Traditionally, screen reading software automatically reads out the content of a web page during page load or page refresh. In single page applications, the UI transitions happen by rewriting the current page, rather than loading entirely new pages from a server; this makes it difficult for screen reading software users to be aware of UI changes (e.g., clicking on the navigation bar to load a new route).

If the corresponding HTML node of the dynamic content can be focused programmatically, screen reading software will start speaking the textual content of that node. Focusing the corresponding HTML node of the dynamic content can be considered guided focus management. Not only will it facilitate the announcement of the textual content of the focused HTML node, but it will also serve as a guided context switch. Any subsequent “tab” key press will focus the next focusable element within/after this context. However, keeping track of the HTML nodes to be focused can be tedious, repetitive, and error-prone since there could be hundreds of nodes that need to be programmatically focused in a SPA.

For ember applications, this addon solves the problem.

ember-self-focused

Installation

ember install ember-self-focused

Usage

Add the self-focused component to all the desired templates/component corresponding to the routes.

{{#self-focused}}
  <!-- html block to be yielded -->
{{/self-focused}}

Since the div will be focused, it will have a focus outline/highlight, if that is not desired, please add the following styles:

.self-focused:focus {
  outline: none
}

Implementation overview

  • self-focused component on initial render invokes the didInsertElement and on re-render invokes the didRenderElement method of the focus-manager respectively passing the self HTML node as argument .
  • focus-manager service carries out the functionality of focusing the desired node.
    • focus-manager utilizes two state variables, namely _isFirstRender and _nodeToBeFocused.
      • initial value of the _isFirstRender is set to true
      • initial value of the _nodeToBeFocused is set to null
    • focus-manager on initialization schedules _isFirstRender to be set to falsein the afterRender queue.
    • focus-manager has two private methods namely _setFocus and _removeTabIndex.
      • _setFocus method
        • adds tabindex=-1 to the nodeToBeFocused
        • invokes native focus() method on it
        • attaches _removeTabIndex method to the _nodeToBeFocused as the click and blur event handler
        • sets _nodeToBeFocused to null
      • _removeTabIndex method, removes the tabindex, click and blur event handlers from nodeToBeFocused
    • focus-manager service exposes two methods, namely didInsertElement and didRenderElement, which are consumed by self-focused component.
      • didInsertElement and didRenderElement both accept a HTML node as an argument.
      • didInsertElement and didRenderElement both bail out if _isFirstRender is true.
      • for didInsertElement the very last self-focused div passed to it for the render cycle wins
      • for didRenderElement the very first self-focused div passed to didInsertElement for the render cycle wins, if and only if _nodeToBeFocused was null when this method was invoked.
      • didInsertElement and didRenderElement both schedule the private setFocus method, in the afterRender queue after if _nodeToBeFocused was updated.

Contributing

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

License

This project is licensed under the BSD-2-Clause License.