2015-12-10 17:28:29 +01:00
|
|
|
import {Component, provide} from 'angular2/core';
|
2016-03-17 12:49:46 -07:00
|
|
|
import {bootstrap} from 'angular2/platform/browser';
|
2016-04-12 09:40:37 -07:00
|
|
|
import {
|
|
|
|
CanActivate,
|
|
|
|
RouteConfig,
|
|
|
|
ComponentInstruction,
|
|
|
|
ROUTER_DIRECTIVES,
|
|
|
|
CanReuse,
|
|
|
|
RouteParams,
|
|
|
|
OnReuse
|
|
|
|
} from 'angular2/router';
|
refactor(Location): out of router and into platform/common
closes https://github.com/angular/angular/issues/4943
BREAKING CHANGE:
`Location` and other related providers have been moved out of `router` and into `platform/common`. `BrowserPlatformLocation` is not meant to be used directly however advanced configurations may use it via the following import change.
Before:
```
import {
PlatformLocation,
Location,
LocationStrategy,
HashLocationStrategy,
PathLocationStrategy,
APP_BASE_HREF}
from 'angular2/router';
import {BrowserPlatformLocation} from 'angular2/src/router/location/browser_platform_location';
```
After:
```
import {
PlatformLocation,
Location,
LocationStrategy,
HashLocationStrategy,
PathLocationStrategy,
APP_BASE_HREF}
from 'angular2/platform/common';
import {BrowserPlatformLocation} from 'angular2/src/platform/browser/location/browser_platform_location';
```
Closes #7962
2016-04-08 00:31:20 -07:00
|
|
|
import {APP_BASE_HREF} from 'angular2/platform/common';
|
2015-10-05 16:37:31 -07:00
|
|
|
|
|
|
|
|
|
|
|
// #docregion reuseCmp
|
|
|
|
@Component({
|
|
|
|
selector: 'my-cmp',
|
|
|
|
template: `
|
|
|
|
<div>hello {{name}}!</div>
|
|
|
|
<div>message: <input id="message"></div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
class MyCmp implements CanReuse,
|
|
|
|
OnReuse {
|
|
|
|
name: string;
|
|
|
|
constructor(params: RouteParams) { this.name = params.get('name') || 'NOBODY'; }
|
|
|
|
|
refactor(lifecycle): prefix lifecycle methods with "ng"
BREAKING CHANGE:
Previously, components that would implement lifecycle interfaces would include methods
like "onChanges" or "afterViewInit." Given that components were at risk of using such
names without realizing that Angular would call the methods at different points of
the component lifecycle. This change adds an "ng" prefix to all lifecycle hook methods,
far reducing the risk of an accidental name collision.
To fix, just rename these methods:
* onInit
* onDestroy
* doCheck
* onChanges
* afterContentInit
* afterContentChecked
* afterViewInit
* afterViewChecked
* _Router Hooks_
* onActivate
* onReuse
* onDeactivate
* canReuse
* canDeactivate
To:
* ngOnInit,
* ngOnDestroy,
* ngDoCheck,
* ngOnChanges,
* ngAfterContentInit,
* ngAfterContentChecked,
* ngAfterViewInit,
* ngAfterViewChecked
* _Router Hooks_
* routerOnActivate
* routerOnReuse
* routerOnDeactivate
* routerCanReuse
* routerCanDeactivate
The names of lifecycle interfaces and enums have not changed, though interfaces
have been updated to reflect the new method names.
Closes #5036
2015-11-16 17:04:36 -08:00
|
|
|
routerCanReuse(next: ComponentInstruction, prev: ComponentInstruction) { return true; }
|
2015-10-05 16:37:31 -07:00
|
|
|
|
refactor(lifecycle): prefix lifecycle methods with "ng"
BREAKING CHANGE:
Previously, components that would implement lifecycle interfaces would include methods
like "onChanges" or "afterViewInit." Given that components were at risk of using such
names without realizing that Angular would call the methods at different points of
the component lifecycle. This change adds an "ng" prefix to all lifecycle hook methods,
far reducing the risk of an accidental name collision.
To fix, just rename these methods:
* onInit
* onDestroy
* doCheck
* onChanges
* afterContentInit
* afterContentChecked
* afterViewInit
* afterViewChecked
* _Router Hooks_
* onActivate
* onReuse
* onDeactivate
* canReuse
* canDeactivate
To:
* ngOnInit,
* ngOnDestroy,
* ngDoCheck,
* ngOnChanges,
* ngAfterContentInit,
* ngAfterContentChecked,
* ngAfterViewInit,
* ngAfterViewChecked
* _Router Hooks_
* routerOnActivate
* routerOnReuse
* routerOnDeactivate
* routerCanReuse
* routerCanDeactivate
The names of lifecycle interfaces and enums have not changed, though interfaces
have been updated to reflect the new method names.
Closes #5036
2015-11-16 17:04:36 -08:00
|
|
|
routerOnReuse(next: ComponentInstruction, prev: ComponentInstruction) {
|
2015-10-05 16:37:31 -07:00
|
|
|
this.name = next.params['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// #enddocregion
|
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'example-app',
|
|
|
|
template: `
|
|
|
|
<h1>Say hi to...</h1>
|
2015-11-23 16:02:19 -08:00
|
|
|
<a [routerLink]="['/HomeCmp', {name: 'naomi'}]" id="naomi-link">Naomi</a> |
|
|
|
|
<a [routerLink]="['/HomeCmp', {name: 'brad'}]" id="brad-link">Brad</a>
|
2015-10-05 16:37:31 -07:00
|
|
|
<router-outlet></router-outlet>
|
|
|
|
`,
|
|
|
|
directives: [ROUTER_DIRECTIVES]
|
|
|
|
})
|
|
|
|
@RouteConfig([
|
2015-10-25 15:00:27 +05:30
|
|
|
{path: '/', component: MyCmp, name: 'HomeCmp'},
|
|
|
|
{path: '/:name', component: MyCmp, name: 'HomeCmp'}
|
2015-10-05 16:37:31 -07:00
|
|
|
])
|
|
|
|
class AppCmp {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function main() {
|
2016-04-12 09:40:37 -07:00
|
|
|
return bootstrap(AppCmp,
|
|
|
|
[provide(APP_BASE_HREF, {useValue: '/angular2/examples/router/ts/reuse'})]);
|
2015-10-05 16:37:31 -07:00
|
|
|
}
|