mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import { LocationStrategy } from '@angular/common';
|
|
import { Directive, ElementRef, HostListener, Optional } from '@angular/core';
|
|
import { Router, RouterLink } from '@angular/router';
|
|
import { RouterDirection } from '@ionic/core';
|
|
import { Subscription } from 'rxjs';
|
|
|
|
import { NavController } from '../../providers/nav-controller';
|
|
|
|
@Directive({
|
|
selector: '[routerLink]',
|
|
inputs: ['routerDirection']
|
|
})
|
|
export class RouterLinkDelegate {
|
|
|
|
private subscription?: Subscription;
|
|
|
|
routerDirection: RouterDirection = 'forward';
|
|
|
|
constructor(
|
|
private locationStrategy: LocationStrategy,
|
|
private navCtrl: NavController,
|
|
private elementRef: ElementRef,
|
|
private router: Router,
|
|
@Optional() private routerLink?: RouterLink,
|
|
) { }
|
|
|
|
ngOnInit() {
|
|
this.updateTargetUrlAndHref();
|
|
}
|
|
|
|
ngOnChanges(): any {
|
|
this.updateTargetUrlAndHref();
|
|
}
|
|
|
|
ngOnDestroy(): any {
|
|
if (this.subscription) {
|
|
this.subscription.unsubscribe();
|
|
}
|
|
}
|
|
|
|
private updateTargetUrlAndHref() {
|
|
if (this.routerLink) {
|
|
const href = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.routerLink.urlTree));
|
|
this.elementRef.nativeElement.href = href;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
@HostListener('click', ['$event'])
|
|
onClick(ev: UIEvent) {
|
|
this.navCtrl.setDirection(this.routerDirection);
|
|
ev.preventDefault();
|
|
}
|
|
}
|