Oto kolejne obejście z odniesieniem do odpowiedzi JavierFuentes:
<a [routerLink]="['self-route', id]" fragment="some-element" (click)="gotoHashtag('some-element')">Jump to Element</a>
w skrypcie:
import {ActivatedRoute} from "@angular/router";
import {Subscription} from "rxjs/Subscription";
export class Links {
private scrollExecuted: boolean = false;
constructor(private route: ActivatedRoute) {}
ngAfterViewChecked() {
if (!this.scrollExecuted) {
let routeFragmentSubscription: Subscription;
routeFragmentSubscription = this.route.fragment.subscribe(fragment => {
if (fragment) {
let element = document.getElementById(fragment);
if (element) {
element.scrollIntoView();
this.scrollExecuted = true;
// Free resources
setTimeout(
() => {
console.log('routeFragmentSubscription unsubscribe');
routeFragmentSubscription.unsubscribe();
}, 0);
}
}
});
}
}
gotoHashtag(fragment: string) {
const element = document.querySelector("#" + fragment);
if (element) element.scrollIntoView(element);
}
}
Pozwala to użytkownikowi na bezpośrednie przewinięcie do elementu, jeśli użytkownik trafi bezpośrednio na stronę mającą hashtag w adresie URL.
Ale w tym przypadku subskrybowałem fragment trasy, ngAfterViewChecked
ale ngAfterViewChecked()
jest wywoływany w sposób ciągły za każdym razem ngDoCheck
i nie pozwala użytkownikowi przewijać z powrotem do góry, więcrouteFragmentSubscription.unsubscribe
jest wywoływany po przekroczeniu limitu czasu 0 milisek po przewinięciu widoku do elementu.
Dodatkowo gotoHashtag
zdefiniowano metodę przewijania do elementu, gdy użytkownik kliknie znacznik kotwicy.
Aktualizacja:
Jeśli adres URL ma querystringi, [routerLink]="['self-route', id]"
w zakotwiczeniu nie zachowa tych zapytań. Próbowałem zastosować obejście tego samego problemu:
<a (click)="gotoHashtag('some-element')">Jump to Element</a>
constructor( private route: ActivatedRoute,
private _router:Router) {
}
...
...
gotoHashtag(fragment: string) {
let url = '';
let urlWithSegments = this._router.url.split('#');
if(urlWithSegments.length){
url = urlWithSegments[0];
}
window.location.hash = fragment;
const element = document.querySelector("#" + fragment);
if (element) element.scrollIntoView(element);
}
123
jest w pytaniu) przy założeniu, że ścieżka trasy oczekuje parametru takiego jak{ path: 'users/:id', ....}