86 lines
2.6 KiB
TypeScript
Raw Normal View History

2016-06-08 11:13:41 -07:00
import {Directive, HostBinding, HostListener, Input, OnChanges} from '@angular/core';
import {LocationStrategy} from '@angular/common';
2016-06-08 11:13:41 -07:00
2016-05-24 14:33:34 -07:00
import {Router} from '../router';
import {ActivatedRoute} from '../router_state';
import {UrlTree} from '../url_tree';
2016-05-24 14:33:34 -07:00
2016-06-08 11:13:41 -07:00
2016-05-24 14:33:34 -07:00
/**
* The RouterLink directive lets you link to specific parts of your app.
*
* Consider the following route configuration:
* ```
* [{ path: '/user', component: UserCmp }]
2016-05-24 14:33:34 -07:00
* ```
*
* When linking to this `User` route, you can write:
*
* ```
* <a [routerLink]="['/user']">link to user component</a>
* ```
*
* RouterLink expects the value to be an array of path segments, followed by the params
* for that level of routing. For instance `['/team', {teamId: 1}, 'user', {userId: 2}]`
* means that we want to generate a link to `/team;teamId=1/user;userId=2`.
*
* The first segment name can be prepended with `/`, `./`, or `../`.
* If the segment begins with `/`, the router will look up the route from the root of the app.
* If the segment begins with `./`, or doesn't begin with a slash, the router will
* instead look in the current component's children for the route.
* And if the segment begins with `../`, the router will go up one level.
*/
@Directive({selector: '[routerLink]'})
export class RouterLink implements OnChanges {
2016-05-24 14:33:34 -07:00
@Input() target: string;
private commands: any[] = [];
2016-06-08 11:13:41 -07:00
@Input() queryParams: {[k: string]: any};
@Input() fragment: string;
2016-05-24 14:33:34 -07:00
// the url displayed on the anchor element.
@HostBinding() href: string;
urlTree: UrlTree;
/**
* @internal
*/
constructor(private router: Router, private route: ActivatedRoute, private locationStrategy: LocationStrategy) {}
2016-05-24 14:33:34 -07:00
@Input()
2016-06-08 11:13:41 -07:00
set routerLink(data: any[]|string) {
2016-05-24 14:33:34 -07:00
if (Array.isArray(data)) {
this.commands = <any>data;
2016-05-24 14:33:34 -07:00
} else {
this.commands = [data];
2016-05-24 14:33:34 -07:00
}
}
2016-06-08 11:13:41 -07:00
ngOnChanges(changes: {}): any { this.updateTargetUrlAndHref(); }
@HostListener("click", ["$event.button", "$event.ctrlKey", "$event.metaKey"])
onClick(button: number, ctrlKey: boolean, metaKey: boolean): boolean {
if (button !== 0 || ctrlKey || metaKey) {
return true;
2016-05-24 14:33:34 -07:00
}
if (typeof this.target === 'string' && this.target != '_self') {
return true;
}
this.router.navigateByUrl(this.urlTree);
return false;
2016-05-24 14:33:34 -07:00
}
private updateTargetUrlAndHref(): void {
this.urlTree = this.router.createUrlTree(
2016-06-08 11:13:41 -07:00
this.commands,
{relativeTo: this.route, queryParams: this.queryParams, fragment: this.fragment});
if (this.urlTree) {
this.href = this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree));
2016-05-24 14:33:34 -07:00
}
}
}