Created
January 12, 2016 18:34
-
-
Save IEvangelist/3c456e6b3f77a02ca845 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Component, OnInit} from "angular2/core"; | |
import {AsyncRoute, Router, RouteDefinition, RouteConfig, Location, ROUTER_DIRECTIVES} from "angular2/router"; | |
import {StaticComponent} from "./components/static.component"; | |
declare var System: any; | |
@Component({ | |
selector: "app", | |
templateUrl: "/app/app.html", | |
directives: [ROUTER_DIRECTIVES] | |
}) | |
export class AppComponent implements OnInit { | |
public routes: RouteDefinition[] = null; | |
constructor(private router: Router, | |
private location: Location) { | |
} | |
ngOnInit() { | |
if (this.routes === null) { | |
this.routes = [ | |
{ path: "/index", component: StaticComponent, name: "Index", useAsDefault: true }, | |
new AsyncRoute({ | |
path: "/sub", | |
name: "Sub", | |
loader: () => System.import("app/components/mvc.component").then(c => c["MvcComponent"]) | |
}), | |
new AsyncRoute({ | |
path: "/numbers", | |
name: "Numbers", | |
loader: () => System.import("app/components/api.component").then(c => c["ApiComponent"]) | |
}) | |
]; | |
this.router.config(this.routes); | |
} | |
} | |
getLinkStyle(route: RouteDefinition) { | |
return this.location.path().indexOf(route.path) > -1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment