1. 9
    Highlight the currently active route with the `routerLinkActive` directive in Angular
    1m 29s
⚠️ This lesson is retired and might contain outdated information.

Highlight the currently active route with the `routerLinkActive` directive in Angular

Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 3 months ago

When you have an application menu with a series of links pointing to different application routes, you definitely want to highlight which route is currently active by styling its corresponding link. Fortunately in Angular this is quite easy to achieve. In this lesson we will learn to leverage the routerLink directive and in particular its routerLinkActive property.

Instructor: [00:00] We have here an Angular app which uses the router to successfully move between different kind of routes when we click those hyperlinks at the very top, which is our navigation bar. However, what is missing a bit here is some kind of highlighting signaling to the user at which point an application currently is.

[00:17] In Angular, this is actually quite easy to apply, especially if you use the router link here. What you can do is add the routerLinkActive directive and specify a CSS class which you would like to have applied. For instance, active route.

[00:31] Let's copy this over to our remaining routes below, here. Now let's quickly refresh our application and switch to the about screen. If we click here on the inspect button, we should actually see that in our hyperlink, the class has been changed to active route.

[00:49] In fact, if we switch to the people list, you see that the active route has been removed. It has moved to our people button here. What's missing now is to simply go to our styles CSS, which is our global styles for our application, and add that active route class here. For simplicity, let's simply add here bold for our font.

[01:11] Now you can see how the point of our application gets properly highlighted in application bar. Of course, this could be much more sophisticated if you have some kind of side bar or side menu with a nice background. A nice thing is this works also if you directly jump to that route of course.

egghead
egghead
~ an hour ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today