DEV Community

Daniel Marin for This Dot

Posted on • Originally published at labs.thisdot.co on

5 tips to make your Angular application more accessible

This article's intent is to give the reader a few tips to follow when building accessible Angular applications. This is by no means an exhaustive list, or a cheatsheet of all the things you have to do in order to be WCAG compliant. I'm not going to talk about A, AA, Section 508, or any of that. The idea is to give you the basic ideas so you can start from there.

I wanted to make it fun, so I decided to create an Angular app that has multiple accessibility problems that we will identify together. For each of those problems, there's going to be a solution. These aren't production-ready solutions, but they are a good starting point.

I created this repository for the article, which has multiple branches. Each tip has two branches- one for the problem, and one for the solution. Each of those branches can be easily configured locally by following these steps:

  • git clone the repository
  • cd to the directory with your command line tool
  • run the command npm install
  • run the command npm run start

The application will run on the port 4200 , and you can access it with the browser of choice.

#1: Hide elements from the DOM using ngIf

Angular is here to help us improve the developer experience. It provides us with multiple features that make our lives easier, but sometimes, we want to feel smarter and try to do things on our own. If you want an example of the problem, access this branch with the first tip problem.

One good example of this is the ngIf directive. I've seen projects where they prefer to use something like this in their styles:

.hide {
  width: 0;
  height: 0;
  opacity: 0;
}

Enter fullscreen mode Exit fullscreen mode

In combination with this in the template:

<div [ngClass]="{ 'hide': hide }">
  <h2>SAMPLE</div>
  <button>Click me!</button>
</div>

Enter fullscreen mode Exit fullscreen mode

Although that will hide the element, it's still there. Any focusable element inside a hidden element with the above technique will still be focusable even if its not visible. By that, I mean we can focus the button without it being visible.

This issue can be easily solved using the ngIf directive instead of creating a new class, and conditionally adding it to the element. It can be used like this:

<div *ngIf="!hide">
  <h2>SAMPLE</div>
  <button>Click me!</button>
</div>

Enter fullscreen mode Exit fullscreen mode

In case you are wondering how to solve it for the branch I gave you, I have provided access to the solution of the first tip.

#2: Use semantic HTML

If you have been following my other a11y articles, you are probably aware of this, but I still have to make sure to remind everybody. So, it turns out that Html actually helps us a lot. If we use the semantic Html, the browser can properly provide us with out-of-the-box functionality that makes it way easier for you. In case you want an example of the problem, access this branch with the second tip problem.

If you run it locally, you will notice that it looks exactly the same, but if you try to tab through the elements, you'll see that the buttons are not focusable. That can be fixed by doing:

<div tabindex="1">Im focusable</div>

Enter fullscreen mode Exit fullscreen mode

But buttons also provide us with keyboard support, and they can be activated through the keyboard by typing either ENTER or SPACE. This can also be achieved by creating a custom directive that listens to keyUp events, and activates the button that's currently focused. As you can see, a lot of work can be easily achieved by doing this instead:

<button>Im focusable</button>

Enter fullscreen mode Exit fullscreen mode

BOOM ---> We achieved the same with almost no code.

If you are wondering what this has to with Angular, it doesn't, at least directly. The issue is that, since Angular allows you to create components easily, we tend to think that we'd rather build our own button component. My advice is to extend the button element instead.

In case you are wondering how to solve it for the branch I gave you, you can access the solution of the second tip.

#3: Headings are important

I even created an article about this. When I started my journey into a11y, I realized how important headings are for screen reader users. If you are interested in learning more about this topic, you can read my article Headings in Angular.

Headings are similar to buttons in this respect. Given how easy its to create a custom component, sometimes instead of using a heading element (h1, h2, ...) we create a span, give to it some custom styles, and use it as a title.

Given the simplicity of this tip, and that there's a whole article already for it, im gonna skip the creation of the branches.

#4: Focus flow has to be logical

I'm a fan of using CSS as much as I can to help me during the development process of any user interface. But sometimes, that can be a little dangerous; for example, when you use flex and you decide to use flex-direction: column-reverse or flex-direction: row-reverse, it seems nice to be able to change the order in which items are laid out from CSS, but it has an incredible weakness.

What happens if the elements inside the flex layout contain focusable elements?

If you said that the focus will be affected, you were totally right. If you want to see that in action, you can access this branch with the forth tip problem.

From the code, you'll see that the article's focus order is in the opposite direction, now it goes from right to left. That's clearly making it harder for the majority of the users, so we have to avoid using the reversed directions from flex and instead, set the order programatically inside the component by using Typescript. That way, you can rely on Angular's ngFor to place the elements without messing up the focus order.

If you are wondering what I mean by that, this commit diff of the forth tip solution will clear things up.

#5: You can trust CSS

Maybe, after the last tip, you are a bit skeptical, thinking, Okay I'll never trust CSS again. But it was just to give you some awareness. CSS is actually very helpful. Let's say that you want to display a string as Upper Case in your template. If you are a seasoned Angular developer, you'll say, "That's easy! Let's use a pipe."

Even though it works, its not what you want. When screen readers find strings in Upper Case, it spells it to the user, making it hard to understand, so in this case, you better use text-transform: uppercase that will make it uppercase only for visual purposes.

Conclusion

This is not an exhaustive list of all the things you have to do to be WCAG 2.1 AA compliant but a fun article to read to give developers some insights about my latest research. If you have more tips to add to this list, just send a comment, and will add it. I would love if we, as Angular Developer, can have a list of tips to ensure our apps come out more accessible.

This Dot Inc. is a consulting company which contains two branches : the media stream, and labs stream. This Dot Media is the portion responsible for keeping developers up to date with advancements in the web platform. This Dot Labs provides teams with web platform expertise, using methods such as mentoring and training.

Top comments (0)