| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   describe, | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   SpyObject | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  | import {Promise, PromiseWrapper} from 'angular2/src/facade/async'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  | import {RouteRegistry} from 'angular2/src/router/route_registry'; | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  | import {RouteConfig, Route, AsyncRoute} from 'angular2/src/router/route_config_decorator'; | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('RouteRegistry', () => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |     var registry; | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-06 17:41:15 -07:00
										 |  |  |     beforeEach(() => { registry = new RouteRegistry(); }); | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |     it('should match the full URL', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, new Route({path: '/', component: DummyCmpA})); | 
					
						
							|  |  |  |          registry.config(RootHostCmp, new Route({path: '/test', component: DummyCmpB})); | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/test', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyCmpB); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  |     it('should generate URLs starting at the given component', () => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |       registry.config(RootHostCmp, | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |                       new Route({path: '/first/...', component: DummyParentCmp, as: 'firstCmp'})); | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |       expect(registry.generate(['firstCmp', 'secondCmp'], RootHostCmp)).toEqual('first/second'); | 
					
						
							|  |  |  |       expect(registry.generate(['secondCmp'], DummyParentCmp)).toEqual('second'); | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should generate URLs with params', () => { | 
					
						
							|  |  |  |       registry.config( | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |           RootHostCmp, | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |           new Route({path: '/first/:param/...', component: DummyParentParamCmp, as: 'firstCmp'})); | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |       var url = | 
					
						
							|  |  |  |           registry.generate(['firstCmp', {param: 'one'}, 'secondCmp', {param: 'two'}], RootHostCmp); | 
					
						
							| 
									
										
										
										
											2015-07-06 17:41:15 -07:00
										 |  |  |       expect(url).toEqual('first/one/second/two'); | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should generate URLs of loaded components after they are loaded', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config( | 
					
						
							|  |  |  |              RootHostCmp, | 
					
						
							|  |  |  |              new AsyncRoute({path: '/first/...', loader: AsyncParentLoader, as: 'firstCmp'})); | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          expect(() => registry.generate(['firstCmp', 'secondCmp'], RootHostCmp)) | 
					
						
							|  |  |  |              .toThrowError('Could not find route named "secondCmp".'); | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/first/second', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  |              .then((_) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(registry.generate(['firstCmp', 'secondCmp'], RootHostCmp)) | 
					
						
							| 
									
										
										
										
											2015-07-06 17:41:15 -07:00
										 |  |  |                    .toEqual('first/second'); | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should throw when generating a url and a parent has no config', () => { | 
					
						
							|  |  |  |       expect(() => registry.generate(['firstCmp', 'secondCmp'], RootHostCmp)) | 
					
						
							|  |  |  |           .toThrowError('Component "RootHostCmp" has no route config.'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |     it('should prefer static segments to dynamic', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, new Route({path: '/:site', component: DummyCmpB})); | 
					
						
							|  |  |  |          registry.config(RootHostCmp, new Route({path: '/home', component: DummyCmpA})); | 
					
						
							| 
									
										
										
										
											2015-05-12 14:53:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/home', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyCmpA); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-05-12 14:53:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |     it('should prefer dynamic segments to star', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, new Route({path: '/:site', component: DummyCmpA})); | 
					
						
							|  |  |  |          registry.config(RootHostCmp, new Route({path: '/*site', component: DummyCmpB})); | 
					
						
							| 
									
										
										
										
											2015-05-12 14:53:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/home', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyCmpA); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-05-12 14:53:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |     it('should prefer routes with more dynamic segments', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, new Route({path: '/:first/*rest', component: DummyCmpA})); | 
					
						
							|  |  |  |          registry.config(RootHostCmp, new Route({path: '/*all', component: DummyCmpB})); | 
					
						
							| 
									
										
										
										
											2015-05-15 02:05:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/some/path', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyCmpA); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-05-15 02:05:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |     it('should prefer routes with more static segments', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, new Route({path: '/first/:second', component: DummyCmpA})); | 
					
						
							|  |  |  |          registry.config(RootHostCmp, new Route({path: '/:first/:second', component: DummyCmpB})); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/first/second', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyCmpA); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should prefer routes with static segments before dynamic segments', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, | 
					
						
							|  |  |  |                          new Route({path: '/first/second/:third', component: DummyCmpB})); | 
					
						
							|  |  |  |          registry.config(RootHostCmp, | 
					
						
							|  |  |  |                          new Route({path: '/first/:second/third', component: DummyCmpA})); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/first/second/third', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyCmpB); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-05-15 02:05:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |     it('should match the full URL using child components', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, new Route({path: '/first/...', component: DummyParentCmp})); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/first/second', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyParentCmp); | 
					
						
							|  |  |  |                expect(instruction.child.component).toBe(DummyCmpB); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should match the URL using async child components', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, new Route({path: '/first/...', component: DummyAsyncCmp})); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/first/second', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyAsyncCmp); | 
					
						
							|  |  |  |                expect(instruction.child.component).toBe(DummyCmpB); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should match the URL using an async parent component', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          registry.config(RootHostCmp, | 
					
						
							|  |  |  |                          new AsyncRoute({path: '/first/...', loader: AsyncParentLoader})); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |          registry.recognize('/first/second', RootHostCmp) | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |              .then((instruction) => { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |                expect(instruction.component).toBe(DummyParentCmp); | 
					
						
							|  |  |  |                expect(instruction.child.component).toBe(DummyCmpB); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |     // TODO: not sure what to do with these tests
 | 
					
						
							|  |  |  |     // it('should throw when a config does not have a component or redirectTo property', () => {
 | 
					
						
							|  |  |  |     //  expect(() => registry.config(rootHostComponent, {'path': '/some/path'}))
 | 
					
						
							|  |  |  |     //      .toThrowError(
 | 
					
						
							|  |  |  |     //          'Route config should contain exactly one \'component\', or \'redirectTo\'
 | 
					
						
							|  |  |  |     //          property');
 | 
					
						
							|  |  |  |     //});
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     // it('should throw when a config has an invalid component type', () => {
 | 
					
						
							|  |  |  |     //  expect(() => registry.config(
 | 
					
						
							|  |  |  |     //             rootHostComponent,
 | 
					
						
							|  |  |  |     //             {'path': '/some/path', 'component': {'type':
 | 
					
						
							|  |  |  |     //             'intentionallyWrongComponentType'}}))
 | 
					
						
							|  |  |  |     //      .toThrowError('Invalid component type \'intentionallyWrongComponentType\'');
 | 
					
						
							|  |  |  |     //});
 | 
					
						
							| 
									
										
										
										
											2015-06-17 11:57:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should throw when a parent config is missing the `...` suffix any of its children add routes', | 
					
						
							|  |  |  |        () => { | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |          expect(() => | 
					
						
							|  |  |  |                     registry.config(RootHostCmp, new Route({path: '/', component: DummyParentCmp}))) | 
					
						
							| 
									
										
										
										
											2015-06-17 11:57:38 -07:00
										 |  |  |              .toThrowError( | 
					
						
							|  |  |  |                  'Child routes are not allowed for "/". Use "..." on the parent\'s route path.'); | 
					
						
							|  |  |  |        }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |     it('should throw when a parent config uses `...` suffix before the end of the route', () => { | 
					
						
							|  |  |  |       expect(() => registry.config(RootHostCmp, | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  |                                    new Route({path: '/home/.../fun/', component: DummyParentCmp}))) | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |           .toThrowError('Unexpected "..." before the end of the path for "home/.../fun/".'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-04-29 15:47:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  | function AsyncParentLoader() { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |   return PromiseWrapper.resolve(DummyParentCmp); | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function AsyncChildLoader() { | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  |   return PromiseWrapper.resolve(DummyCmpB); | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  | class RootHostCmp {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  | @RouteConfig([new AsyncRoute({path: '/second', loader: AsyncChildLoader})]) | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  | class DummyAsyncCmp { | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  | class DummyCmpA {} | 
					
						
							|  |  |  | class DummyCmpB {} | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  | @RouteConfig([new Route({path: '/second', component: DummyCmpB, as: 'secondCmp'})]) | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  | class DummyParentCmp { | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 16:12:48 -07:00
										 |  |  | @RouteConfig([new Route({path: '/second/:param', component: DummyCmpB, as: 'secondCmp'})]) | 
					
						
							| 
									
										
										
										
											2015-07-13 15:29:14 -07:00
										 |  |  | class DummyParentParamCmp { | 
					
						
							| 
									
										
										
										
											2015-06-30 13:18:51 -07:00
										 |  |  | } |