在标题中我需要获取routerLinkActive的ElementRef,以便了解我需要将“墨水条”(例如材料设计标签)放在正确的位置。
这里我有我的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
答案 0 :(得分:2)
您可以使用ElementRef
找到ViewChildren
并使用RouterLinkActive
选项查询read: ElementRef
指令。
我们在findActiveLink
中延迟执行setTimeout
方法,以便RouterLinkActive
时间用适当的CSS类更新视图。
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))
}
}