angular-cn/modules/angular1_router
Jeff Cross 604c8bbad5 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-30 16:40:50 -08:00
..
lib refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
src refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
test refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
build.js refactor(router): improve recognition and generation pipeline 2015-11-30 17:06:03 +00:00
index.html refactor(router): rename navigate and navigateInstruction methods 2015-09-11 17:17:45 -07:00
karma-router.conf.js chore(build): use Chrome by default for all JS tests 2015-11-19 23:27:42 +00:00
tsd.json refactor(ngOutlet): using some typescript features 2015-10-09 03:40:42 +00:00