Angular 获取 routerLinkActive 的 ElementRef

Angular get ElementRef of of the routerLinkActive

如标题所示,我需要获取 routerLinkActive 的 ElementRef,以便了解我需要将 "ink Bar"(例如 Material 设计选项卡)放置在正确位置的位置。

这是我的sideNav菜单

  <mat-sidenav fxLayout='column' 
   fxLayoutAlign='start center'#sidenav 
   mode="over" [(opened)]="opened" position="end" 
   class="nav-sidenav">

        <!-- Here the Navigation -->
        <div  class="nav-sidenav-container" fxFlex='1 1 100%'>

          <div class="ink-bar"></div> <!-- I NEED TO MOVE THIS -->
          <ul class="nav">

            <li *ngFor="let menuItem of menuItems" 
             routerLinkActive="active" class="{{menuItem.class}}">
              <a [routerLink]="[menuItem.path]">
                <i class="nav-icon-container">
                  <mat-icon>{{menuItem.icon}}</mat-icon>
                </i>
                <p>{{menuItem.title}}</p>
              </a>
            </li>

          </ul>
        </div>
      </mat-sidenav>

第一个 "li" 元素位于 180px 元素之间的偏移量为 60px。但是我需要知道哪个是开始的活动元素(例如,如果用户在浏览器中粘贴 URL),有一种方法可以获取 activeLink

的 ElementRef

您可以通过使用 ViewChildren 并使用 read: ElementRef 选项查询 RouterLinkActive 指令来找到 ElementRef

我们延迟 setTimeoutfindActiveLink 方法的执行,以便 RouterLinkActive 有时间用适当的 CSS class 更新视图。

import { Component, ViewChildren, ElementRef, QueryList } from '@angular/core';
import { RouterLinkActive } from '@angular/router';

@Component({
  selector: 'my-app',
  template: `
  <a [routerLinkActive]="activeClass" routerLink="/">Hello</a>
  <a [routerLinkActive]="activeClass" routerLink="/hello">Hello</a>
  <a [routerLinkActive]="activeClass" routerLink="/world">Hello</a>
  <router-outlet></router-outlet>
  `,
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  activeClass = 'active';

  @ViewChildren(RouterLinkActive, { read: ElementRef })
  linkRefs: QueryList<ElementRef>

  constructor() { }

  ngAfterViewInit() {
    setTimeout(() => {
      const activeEl = this.findActiveLink();
      console.log(activeEl);
    }, 0);
  }

  findActiveLink = (): ElementRef | undefined => {
    return this.linkRefs.toArray()
      .find(e => e.nativeElement.classList.contains(this.activeClass))
  }
}

Live demo