2016-05-24 14:33:34 -07:00
|
|
|
import {
|
|
|
|
Directive,
|
|
|
|
HostListener,
|
|
|
|
HostBinding,
|
|
|
|
Input
|
|
|
|
} from '@angular/core';
|
|
|
|
import {Router} from '../router';
|
2016-05-26 16:51:56 -07:00
|
|
|
import {ActivatedRoute} from '../router_state';
|
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:
|
|
|
|
|
|
|
|
* ```
|
2016-05-26 16:51:56 -07:00
|
|
|
* [{ 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 {
|
|
|
|
@Input() target: string;
|
2016-05-26 16:51:56 -07:00
|
|
|
private commands: any[] = [];
|
2016-05-24 14:33:34 -07:00
|
|
|
|
|
|
|
// the url displayed on the anchor element.
|
|
|
|
@HostBinding() href: string;
|
|
|
|
|
2016-05-26 16:51:56 -07:00
|
|
|
constructor(private router: Router, private route: ActivatedRoute) {}
|
2016-05-24 14:33:34 -07:00
|
|
|
|
|
|
|
@Input()
|
|
|
|
set routerLink(data: any[] | string) {
|
|
|
|
if (Array.isArray(data)) {
|
|
|
|
this.commands = data;
|
|
|
|
} else {
|
2016-05-26 16:51:56 -07:00
|
|
|
this.commands = [data];
|
2016-05-24 14:33:34 -07:00
|
|
|
}
|
|
|
|
this.updateTargetUrlAndHref();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@HostListener("click")
|
|
|
|
onClick(): boolean {
|
|
|
|
// If no target, or if target is _self, prevent default browser behavior
|
|
|
|
if (!(typeof this.target === "string") || this.target == '_self') {
|
2016-05-26 16:51:56 -07:00
|
|
|
this.router.navigate(this.commands, {relativeTo: this.route});
|
2016-05-24 14:33:34 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private updateTargetUrlAndHref(): void {
|
2016-05-26 16:51:56 -07:00
|
|
|
const tree = this.router.createUrlTree(this.commands, {relativeTo: this.route});
|
|
|
|
if (tree) {
|
|
|
|
this.href = this.router.serializeUrl(tree);
|
2016-05-24 14:33:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|