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
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
import {bootstrap, Component, provide} from 'angular2/angular2';
|
|
import {
|
|
CanActivate,
|
|
RouteConfig,
|
|
ComponentInstruction,
|
|
ROUTER_DIRECTIVES,
|
|
APP_BASE_HREF,
|
|
CanReuse,
|
|
RouteParams,
|
|
OnReuse
|
|
} from 'angular2/router';
|
|
|
|
|
|
// #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'; }
|
|
|
|
routerCanReuse(next: ComponentInstruction, prev: ComponentInstruction) { return true; }
|
|
|
|
routerOnReuse(next: ComponentInstruction, prev: ComponentInstruction) {
|
|
this.name = next.params['name'];
|
|
}
|
|
}
|
|
// #enddocregion
|
|
|
|
|
|
@Component({
|
|
selector: 'example-app',
|
|
template: `
|
|
<h1>Say hi to...</h1>
|
|
<a [router-link]="['/HomeCmp', {name: 'naomi'}]" id="naomi-link">Naomi</a> |
|
|
<a [router-link]="['/HomeCmp', {name: 'brad'}]" id="brad-link">Brad</a>
|
|
<router-outlet></router-outlet>
|
|
`,
|
|
directives: [ROUTER_DIRECTIVES]
|
|
})
|
|
@RouteConfig([
|
|
{path: '/', component: MyCmp, name: 'HomeCmp'},
|
|
{path: '/:name', component: MyCmp, name: 'HomeCmp'}
|
|
])
|
|
class AppCmp {
|
|
}
|
|
|
|
|
|
export function main() {
|
|
return bootstrap(AppCmp,
|
|
[provide(APP_BASE_HREF, {useValue: '/angular2/examples/router/ts/reuse'})]);
|
|
}
|