<!DOCTYPE html>
<html>
<head>
<base href="." />
<title>Example 3: A multiple route application with a child route</title>
<link rel="stylesheet" href="style.css" />
<script src="https://unpkg.com/zone.js/dist/zone.js"></script>
<script src="https://unpkg.com/zone.js/dist/long-stack-trace-zone.js"></script>
<script src="https://unpkg.com/reflect-metadata@0.1.3/Reflect.js"></script>
<script src="https://unpkg.com/systemjs@0.19.31/dist/system.js"></script>
<script src="config.js"></script>
<script>
System.import('app')
.catch(console.error.bind(console));
</script>
</head>
<body>
<my-app>
loading...
</my-app>
</body>
</html>
/* Styles go here */
### Angular2 Starter Plunker - Typescript - RC.0
A simple plunker demonstrating Angular2 usage:
- Uses SystemJS + TypeScript to compile on the fly
- Includes binding, directives, http, pipes, and DI usage.
For opening
System.config({
//use typescript for compilation
transpiler: 'typescript',
//typescript compiler options
typescriptOptions: {
emitDecoratorMetadata: true
},
paths: {
'npm:': 'https://unpkg.com/'
},
//map tells the System loader where to look for things
map: {
'app': './src',
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
'@angular/core/testing': 'npm:@angular/core/bundles/core-testing.umd.js',
'@angular/common/testing': 'npm:@angular/common/bundles/common-testing.umd.js',
'@angular/compiler/testing': 'npm:@angular/compiler/bundles/compiler-testing.umd.js',
'@angular/platform-browser/testing': 'npm:@angular/platform-browser/bundles/platform-browser-testing.umd.js',
'@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js',
'@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js',
'@angular/router/testing': 'npm:@angular/router/bundles/router-testing.umd.js',
'rxjs': 'npm:rxjs',
'typescript': 'npm:typescript@2.0.2/lib/typescript.js'
},
//packages defines our app package
packages: {
app: {
main: './main.ts',
defaultExtension: 'ts'
},
rxjs: {
defaultExtension: 'js'
}
}
});
//main entry point
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {AppModule} from './app.module';
platformBrowserDynamic().bootstrapModule(AppModule)
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouterModule } from '@angular/router';
/**
* This is an example of component with two child routes: foo & bar
*
* This example also shows an altenate method of defining and including
* your route definitions in your app module. In previous examples, we
* included a routing module. Here, we include the router directly in our
* application module and pass it a constant variable of our route
* definitions.
*
* The 'foo' route will display the FooComponent included below. The 'bar'
* route, obviously, will display the Barcomponent.
*
*/
import { AppComponent } from './app.component';
// The home component, which 'houses' our child routes
import { HomeComponent } from './home.component';
// Two components we use for the child routes of the home component
import { FooComponent } from './foo.component';
import { BarComponent } from './bar.component';
const routes = [
{
// Our single 'parent' route, 'Home'
path: '',
component: HomeComponent,
// Here we define our child routes. Routes defined
// under the parent route like this will be relative
// to the parent route, which in this case is the
// same as the Base HREF "/"
children: [
{ path: 'foo', component: FooComponent },
{ path: 'bar', component: BarComponent },
// This is the 'wildcard' child route, or the catch-all.
// If a requested route does not match any of those above,
// this route will be displayed.
{ path: '**', component: FooComponent }
]
}
];
@NgModule({
imports: [
// Note the inclusion of the RouterModule here, passing the
// routes constant as a parameter.
RouterModule.forRoot(routes),
BrowserModule
],
declarations: [
AppComponent,
HomeComponent,
FooComponent,
BarComponent
],
providers: [],
bootstrap: [ AppComponent ]
})
export class AppModule { }
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<h1>{{ title }}</h1>
<router-outlet></router-outlet>
`
})
export class AppComponent {
title: string;
constructor() {
this.title = 'Example 3: A multiple route application with a child route'
}
}
import { Component } from '@angular/core';
import { ROUTER_DIRECTIVES, ActivatedRoute } from '@angular/router';
import { FooComponent } from './foo.component';
import { BarComponent } from './bar.component';
@Component({
selector: 'my-app',
template: `
<h2>Component with Child Routes</h2>
<nav>
<ul>
<li><a [routerLink]="['/foo']">Foo</a></li>
<li><a [routerLink]="['/bar']">Bar</a></li>
</ul>
</nav>
<br />
<fieldset>
<router-outlet></router-outlet>
</fieldset>
`,
styles: [
'fieldset { margin-top: 2vh; }',
'ul li { float: left; margin-left: 3vw; }'
],
directives: [ROUTER_DIRECTIVES]}
})
export class HomeComponent {
constructor(private route: ActivatedRoute) {}
}
/**
* Example Component for child view
*/
import {Component} from '@angular/core';
@Component({
selector: 'foo',
template: '<h3>Foo Component!</h3>'
})
export class FooComponent {
}
/**
* Example Component for child view
*/
import {Component} from '@angular/core';
@Component({
selector: 'bar',
template: '<h3>Bar Component!</h3>'
})
export class BarComponent {
}