GithubHelp home page GithubHelp logo

oaf-project / oaf-ember-routing Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 410 KB

An accessible wrapper for Ember routing.

Home Page: https://oaf-project.github.io/oaf-ember-routing/

License: MIT License

TypeScript 100.00%
accessibility a11y typescript ember ember-routing

oaf-ember-routing's Introduction

Build Status Known Vulnerabilities Greenkeeper badge npm

dependencies Status devDependencies Status peerDependencies Status

Oaf Ember Routing

An accessible wrapper for Ember routing, built with Oaf Routing.

Documentation at https://oaf-project.github.io/oaf-ember-routing/

Features

  • Reset scroll and focus after page navigation
  • Set the page title after navigation
  • Announce navigation to users of screen readers
  • Hash fragment support

In lieu of more details, see Oaf React Router for now. The features are basically the same, with the caveat that Oaf Ember Routing doesn't currently support focus and scroll restoration after POP navigation.

Installation

# yarn
yarn add oaf-ember-routing

# npm
npm install oaf-ember-routing

Basic Usage

import EmberRouter from '@ember/routing/router';
+ import { createOafEmberRouter } from 'oaf-ember-routing';

+ const oafRouter = createOafEmberRouter();

const Router = EmberRouter.extend({
  ... 
  init() {
    this._super(...arguments);
    ...
+    this.on('routeDidChange', oafRouter.routeDidChange);
  }
});

Advanced Usage

const settings = {
  announcementsDivId: "announcements",
  primaryFocusTarget: "main h1, [role=main] h1",
  // This assumes you're setting the document title via some other means.
  // If you're not, you should return a unique and descriptive page title for each page
  // from this function and set `setPageTitle` to true.
  documentTitle: (location: Navigation) => document.title,
  // BYO localization
  navigationMessage: (title: string, location: Navigation): string => `Navigated to ${title}.`,
  shouldHandleAction: (previousLocation: Navigation, nextLocation: Navigation) => true,
  announcePageNavigation: true,
  setPageTitle: false,
  // Set this to true for smooth scrolling.
  // For browser compatibility you might want iamdustan's smoothscroll polyfill https://github.com/iamdustan/smoothscroll
  smoothScroll: false,
};

const oafRouter = createOafEmberRouter(settings);

A note on focus outlines

You may see focus outlines around your h1 elements (or elsewhere, per primaryFocusTarget) when using Oaf Ember Routing.

You might be tempted to remove these focus outlines with something like the following:

[tabindex="-1"]:focus {
  outline: 0 !important;
}

Don't do this! Focus outlines are important for accessibility. See for example:

Note that Bootstrap 4 unfortunately removes these focus outlines. If you use Bootstrap, you can restore them with Oaf Bootstrap 4.

All that said, if you absolutely must remove focus outlines (stubborn client, stubborn boss, stubborn designer, whatever), consider using the :focus-visible polyfill so focus outlines are only hidden from mouse users, not keyboard users.

See also

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.