| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  | block includes | 
					
						
							|  |  |  |   include ../_util-fns | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | - var top="vertical-align:top" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | :marked | 
					
						
							|  |  |  |   # Component Lifecycle | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  | figure | 
					
						
							|  |  |  |   img(src="/resources/images/devguide/lifecycle-hooks/hooks-in-sequence.png" alt="Us" align="left" style="width:200px; margin-left:-40px;margin-right:30px" ) | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   A component has a lifecycle managed by Angular itself.  | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   Angular creates it, renders it, creates and renders its children, | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  |   checks it when its data-bound properties change, and destroys it before removing it from the DOM. | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |   Angular offers **lifecycle hooks** | 
					
						
							|  |  |  |   that provide visibility into these key life moments and the ability to act when they occur. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |   A directive has the same set of lifecycle hooks, minus the hooks that are specific to component content and views. | 
					
						
							|  |  |  |   <br clear="all"> | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   ## Table of Contents | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |     * [Overview](#hooks-overview) | 
					
						
							|  |  |  |     <br><br> | 
					
						
							|  |  |  |     * [Each hook's purpose and timing](#hooks-purpose-timing) | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  | +ifDocsFor('ts|js') | 
					
						
							|  |  |  |   :marked | 
					
						
							|  |  |  |     * [Interfaces are optional (technically)](#interface-optional) | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |   :marked | 
					
						
							|  |  |  |     * [Other Angular lifecycle hooks](#other-lifecycle-hooks) | 
					
						
							|  |  |  |     <br><br> | 
					
						
							|  |  |  |     * [The lifecycle sample](#the-sample) | 
					
						
							|  |  |  |       * [All](#peek-a-boo) | 
					
						
							|  |  |  |       * [Spying OnInit and OnDestroy](#spy) | 
					
						
							|  |  |  |       * [OnChanges](#onchanges) | 
					
						
							|  |  |  |       * [DoCheck](#docheck) | 
					
						
							|  |  |  |       * [AfterViewInit and AfterViewChecked](#afterview) | 
					
						
							|  |  |  |       * [AfterContentInit and AfterContentChecked](#aftercontent) | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-07-03 17:11:17 -07:00
										 |  |  |   Try the <live-example></live-example>. | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  | a#hooks-overview | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   ## Component lifecycle Hooks | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  |   Directive and component instances have a lifecycle | 
					
						
							|  |  |  |   as Angular creates, updates, and destroys them. | 
					
						
							|  |  |  |   Developers can tap into key moments in that lifecycle by implementing | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |   one or more of the *Lifecycle Hook* interfaces in the Angular `core` library. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Each interface has a single hook method whose name is the interface name prefixed with `ng`. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   For example, the `OnInit` interface has a hook method named `ngOnInit`  | 
					
						
							|  |  |  |   that Angular calls shortly after creating the component: | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/peek-a-boo.component.ts', 'ngOnInit', 'peek-a-boo.component.ts (excerpt)')(format='.') | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   No directive or component will implement all of the lifecycle hooks and some of the hooks only make sense for components. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Angular only calls a directive/component hook method *if it is defined*. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  | a#hooks-purpose-timing | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## Lifecycle sequence | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   *After* Angular creates a component/directive by `new`-ing its constructor, | 
					
						
							|  |  |  |   it calls the lifecycle hook methods in the following sequence at specific moments: | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | table(width="100%") | 
					
						
							|  |  |  |   col(width="20%") | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   col(width="80%") | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr | 
					
						
							|  |  |  |     th Hook | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |     th Purpose and Timing | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngOnChanges | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Respond when Angular (re)sets data-bound input properties. | 
					
						
							|  |  |  |         The method receives a `SimpleChanges` object of current and previous property values. | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         Called before `ngOnInit` and whenever one or more data-bound input properties change. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngOnInit | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Initialize the directive/component after Angular first displays the data-bound properties | 
					
						
							|  |  |  |         and sets the directive/component's input properties. | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         Called _once_, after the _first_ `ngOnChanges`.  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngDoCheck | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Detect and act upon changes that Angular can't or won't detect on its own.  | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         Called during every change detection run, immediately after `ngOnChanges` and `ngOnInit`. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngAfterContentInit | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Respond after Angular projects external content into the component's view. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Called _once_ after the first `NgDoCheck`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         _A component-only hook_. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngAfterContentChecked | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Respond after Angular checks the content projected into the component. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Called after the `ngAfterContentInit` and every subsequent `NgDoCheck`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         _A component-only hook_. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngAfterViewInit | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Respond after Angular initializes the component's views and child views. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Called _once_ after the first `ngAfterContentChecked`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         _A component-only hook_. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngAfterViewChecked | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Respond after Angular checks the component's views and child views. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Called after the `ngAfterViewInit` and every subsequent `ngAfterContentChecked`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         _A component-only hook_. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td ngOnDestroy | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 15:50:21 -07:00
										 |  |  |         Cleanup just before Angular destroys the directive/component. | 
					
						
							|  |  |  |         Unsubscribe observables and detach event handlers to avoid memory leaks.       | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Called _just before_ Angular destroys the directive/component. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  | +ifDocsFor('ts|js') | 
					
						
							|  |  |  |   a#interface-optional | 
					
						
							|  |  |  |   .l-main-section   | 
					
						
							|  |  |  |   :marked | 
					
						
							|  |  |  |     ## Interface are optional (technically) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The interfaces are optional for JavaScript and Typescript developers from a purely technical perspective. | 
					
						
							|  |  |  |     The JavaScript language doesn't have interfaces. | 
					
						
							|  |  |  |     Angular can't see TypeScript interfaces at runtime because they disappear from the transpiled JavaScript. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Fortunately, they aren't necessary. | 
					
						
							|  |  |  |     You don't have to add the lifecycle hook interfaces to directives and components to benefit from the hooks themselves. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Angular instead inspects directive and component classes and calls the hook methods *if they are defined*. | 
					
						
							|  |  |  |     Angular finds and calls methods like `ngOnInit()`, with or without the interfaces. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Nonetheless, it's good practice to add interfaces to TypeScript directive classes | 
					
						
							|  |  |  |     in order to benefit from strong typing and editor tooling. | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  | a#other-lifecycle-hooks | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## Other lifecycle hooks | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Other Angular sub-systems may have their own lifecycle hooks apart from these component hooks. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | block other-angular-subsystems | 
					
						
							|  |  |  |   //- N/A for TS. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   3rd party libraries might implement their hooks as well in order to give developers more | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   control over how these libraries are used. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-03 17:11:17 -07:00
										 |  |  | .l-main-section#the-sample | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## Lifecycle exercises | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   The <live-example></live-example> | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   demonstrates the lifecycle hooks in action through a series of exercises | 
					
						
							|  |  |  |   presented as components under the control of the root `AppComponent`. | 
					
						
							| 
									
										
										
										
											2016-07-03 17:11:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   They follow a common pattern:  a *parent* component serves as a test rig for | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   a *child* component that illustrates one or more of the lifecycle hook methods. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Here's a brief description of each exercise: | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | table(width="100%") | 
					
						
							|  |  |  |   col(width="20%") | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   col(width="80%") | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr | 
					
						
							|  |  |  |     th Component | 
					
						
							|  |  |  |     th Description | 
					
						
							|  |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td <a href="#peek-a-boo">Peek-a-boo</a> | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							|  |  |  |         Demonstrates every lifecycle hook. | 
					
						
							|  |  |  |         Each hook method writes to the on-screen log. | 
					
						
							|  |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td <a href="#spy">Spy</a> | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							|  |  |  |         Directives have lifecycle hooks too. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |         A `SpyDirective` can log when the element it spies upon is | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |         created or destroyed using the `ngOnInit` and `ngOnDestroy` hooks. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |         This example applies the `SpyDirective` to a `<div>` in an `ngFor` *hero* repeater | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |         managed by the parent `SpyComponent`. | 
					
						
							|  |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td <a href="#onchanges">OnChanges</a> | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							|  |  |  |         See how Angular calls the `ngOnChanges` hook with a `changes` object | 
					
						
							|  |  |  |         every time one of the component input properties changes. | 
					
						
							|  |  |  |         Shows how to interpret the `changes` object. | 
					
						
							|  |  |  |   tr(style=top) | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |     td <a href="#docheck">DoCheck</a> | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |         Implements an `ngDoCheck` method with custom change detection. | 
					
						
							| 
									
										
										
										
											2016-01-13 15:00:43 -07:00
										 |  |  |         See how often Angular calls this hook and watch it post changes to a log. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td <a href="#afterview">AfterView</a> | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							|  |  |  |         Shows what Angular means by a *view*. | 
					
						
							|  |  |  |         Demonstrates the `ngAfterViewInit` and `ngAfterViewChecked` hooks. | 
					
						
							|  |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td <a href="#aftercontent">AfterContent</a> | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							|  |  |  |         Shows how to project external content into a component and | 
					
						
							|  |  |  |         how to distinguish projected content from a component's view children. | 
					
						
							|  |  |  |         Demonstrates the `ngAfterContentInit` and `ngAfterContentChecked` hooks. | 
					
						
							|  |  |  |   tr(style=top) | 
					
						
							|  |  |  |     td Counter | 
					
						
							|  |  |  |     td | 
					
						
							|  |  |  |       :marked | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |         Demonstrates a combination of a component and a directive | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |         each with its own hooks. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |         In this example, a `CounterComponent` logs a change (via `ngOnChanges`) | 
					
						
							|  |  |  |         every time the parent component increments its input counter property. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |         Meanwhile, the `SpyDirective` from the previous example is applied | 
					
						
							|  |  |  |         to the `CounterComponent` log where it watches log entries being created and destroyed. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The remainder of this chapter discusses selected exercises in further detail. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  | a#peek-a-boo | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## Peek-a-boo: all hooks | 
					
						
							|  |  |  |   The `PeekABooComponent` demonstrates all of the hooks in one component. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   You would rarely, if ever, implement all of the interfaces like this. | 
					
						
							|  |  |  |   The peek-a-boo exists to show how Angular calls the hooks in the expected order. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   This snapshot reflects the state of the log after the user clicked the *Create...* button and then the *Destroy...* button. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | figure.image-display | 
					
						
							|  |  |  |   img(src="/resources/images/devguide/lifecycle-hooks/peek-a-boo.png" alt="Peek-a-boo") | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   The sequence of log messages follows the prescribed hook calling order: | 
					
						
							|  |  |  |   `OnChanges`, `OnInit`, `DoCheck` (3x), `AfterContentInit`, `AfterContentChecked` (3x), | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   `AfterViewInit`, `AfterViewChecked` (3x), and `OnDestroy`. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-sub-section | 
					
						
							|  |  |  |   :marked | 
					
						
							|  |  |  |     The constructor isn't an Angular hook *per se*. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |     The log confirms that input properties (the `name` property in this case) have no assigned values at construction. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Had the user clicked the *Update Hero* button, the log would show another `OnChanges` and two more triplets of | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |   `DoCheck`, `AfterContentChecked` and `AfterViewChecked`. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Clearly these three hooks fire a *often*. Keep the logic in these hooks as lean as possible! | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The next examples focus on hook details. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  | a#spy | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## Spying *OnInit* and *OnDestroy* | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Go undercover with these two spy hooks to discover when an element is initialized or destroyed. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   This is the perfect infiltration job for a directive. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The heroes will never know they're being watched. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-sub-section | 
					
						
							|  |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |     Kidding aside, pay attention to two key points: | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |     1. Angular calls hook methods for *directives* as well as components.<br><br> | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |     2. A spy directive can provide insight into a DOM object that you cannot change directly. | 
					
						
							|  |  |  |     Obviously you can't touch the implementation of a native `div`. | 
					
						
							|  |  |  |     You can't modify a third party component either. | 
					
						
							|  |  |  |     But you can watch both with a directive. | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The sneaky spy directive is simple,  consisting almost entirely of `ngOnInit` and `ngOnDestroy` hooks | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   that log messages to the parent via an injected `LoggerService`. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/spy.directive.ts', 'spy-directive')(format=".") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   You can apply the spy to any native or component element and it'll be initialized and destroyed | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   at the same time as that element. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Here it is attached to the repeated hero `<div>` | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/spy.component.html', 'template')(format=".") | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   Each spy's birth and death marks the birth and death of the attached hero `<div>` | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   with an entry in the *Hook Log* as seen here: | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | figure.image-display | 
					
						
							|  |  |  |   img(src='/resources/images/devguide/lifecycle-hooks/spy-directive.gif' alt="Spy Directive") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-04-13 18:42:43 -04:00
										 |  |  |   Adding a hero results in a new hero `<div>`. The spy's `ngOnInit` logs that event. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   The *Reset* button clears the `heroes` list. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Angular removes all hero `<div>` elements from the DOM and destroys their spy directives at the same time. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   The spy's `ngOnDestroy` method reports its last moments. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   The `ngOnInit` and `ngOnDestroy` methods have more vital roles to play in real applications. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   ### OnInit | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Use `ngOnInit` for two main reasons: | 
					
						
							|  |  |  |   1. to perform complex initializations shortly after construction | 
					
						
							|  |  |  |   1. to set up the component after Angular sets the input properties | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Experienced developers agree that components should be cheap and safe to construct. | 
					
						
							|  |  |  | .l-sub-section | 
					
						
							|  |  |  |   :marked | 
					
						
							|  |  |  |     Misko Hevery, Angular team lead, | 
					
						
							|  |  |  |     [explains why](http://misko.hevery.com/code-reviewers-guide/flaw-constructor-does-real-work/)  | 
					
						
							|  |  |  |     you should avoid complex constructor logic. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  | :marked | 
					
						
							|  |  |  |   Don't fetch data in a component constructor. | 
					
						
							|  |  |  |   You shouldn't worry that a new component will try to contact a remote server when | 
					
						
							|  |  |  |   created under test or before you decide to display it. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Constructors should do no more than set the initial local variables to simple values. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |    | 
					
						
							|  |  |  |   An `ngOnInit` is a good place for a component to fetch its initial data. The | 
					
						
							|  |  |  |   [Tutorial](../tutorial/toh-pt4.html#oninit) and [HTTP](server-communication.html#oninit) chapter | 
					
						
							|  |  |  |   show how. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Remember also that a directive's data-bound input properties are not set until _after construction_. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   That's a problem if you need to initialize the directive based on those properties. | 
					
						
							|  |  |  |   They'll have been set when `ngOninit` runs. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-sub-section | 
					
						
							|  |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |     The `ngOnChanges` method is your first opportunity to access those properties. | 
					
						
							|  |  |  |     Angular calls `ngOnChanges` before `ngOnInit` ... and many times after that. | 
					
						
							| 
									
										
										
										
											2016-08-27 17:58:26 +09:00
										 |  |  |     It only calls `ngOnInit` once. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   You can count on Angular to call the `ngOnInit` method _soon_ after creating the component. | 
					
						
							|  |  |  |   That's where the heavy initialization logic belongs. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   ### OnDestroy | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Put cleanup logic in `ngOnDestroy`, the logic that *must* run before Angular destroys the directive. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   This is the time to notify another part of the application that the component is going away. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   This is the place to free resources that won't be garbage collected automatically. | 
					
						
							|  |  |  |   Unsubscribe from observables and DOM events. Stop interval timers. | 
					
						
							|  |  |  |   Unregister all callbacks that this directive registered with global or application services. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   You risk memory leaks if you neglect to do so. | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## OnChanges | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Angular calls its `ngOnChanges` method whenever it detects changes to ***input properties*** of the component (or directive). | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   This example monitors the `OnChanges` hook. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/on-changes.component.ts', 'ng-on-changes', 'OnChangesComponent (ngOnChanges)')(format=".") | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   The `ngOnChanges` method takes an object that maps each changed property name to a | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   [SimpleChange](../api/core/index/SimpleChange-class.html) object holding the current and previous property values. | 
					
						
							|  |  |  |   This hook iterates over the changed properties and logs them. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The example component, `OnChangesComponent`, has two input properties: `hero` and `power`. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/on-changes.component.ts', 'inputs')(format=".") | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The host `OnChangesParentComponent` binds to them like this: | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | +makeExample('lifecycle-hooks/ts/app/on-changes-parent.component.html', 'on-changes') | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Here's the sample in action as the user makes changes. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | figure.image-display | 
					
						
							|  |  |  |   img(src='/resources/images/devguide/lifecycle-hooks/on-changes-anim.gif' alt="OnChanges") | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The log entries appear as the string value of the *power* property changes.  | 
					
						
							|  |  |  |   But the `ngOnChanges` does not catch changes to `hero.name` | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   That's surprising at first. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Angular only calls the hook when the value of the input property changes. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   The value of the `hero` property is the *reference to the hero object*. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   Angular doesn't care that the hero's own `name` property changed. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   The hero object *reference* didn't change so, from Angular's perspective, there is no change to report! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## DoCheck | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Use the `DoCheck` hook to detect and act upon changes that Angular doesn't catch on its own. | 
					
						
							| 
									
										
										
										
											2016-01-13 15:00:43 -07:00
										 |  |  | .l-sub-section | 
					
						
							|  |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |     Use this method to detect a change that Angular overlooked. | 
					
						
							| 
									
										
										
										
											2016-01-13 15:00:43 -07:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   The *DoCheck* sample extends the *OnChanges* sample with the following `ngDoCheck` hook: | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/do-check.component.ts', 'ng-do-check', 'DoCheckComponent (ngDoCheck)')(format=".") | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   This code inspects certain _values-of-interest_, capturing and comparing their current state against previous values. | 
					
						
							|  |  |  |   It writes a special message to the log when there are no substantive changes to the `hero` or the `power` | 
					
						
							|  |  |  |   so you can see how often `DoCheck` is called. The results are illuminating: | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | figure.image-display | 
					
						
							|  |  |  |   img(src='/resources/images/devguide/lifecycle-hooks/do-check-anim.gif' alt="DoCheck") | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   While the `ngDoCheck` hook can detect when the hero's `name` has changed, it has a frightful cost. | 
					
						
							|  |  |  |   This hook is called with enormous frequency — | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   after _every_ change detection cycle no matter where the change occurred. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   It's called over twenty times in this example before the user can do anything. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Most of these initial checks are triggered by Angular's first rendering of *unrelated data elsewhere on the page*. | 
					
						
							|  |  |  |   Mere mousing into another input box triggers a call. | 
					
						
							|  |  |  |   Relatively few calls reveal actual changes to pertinent data. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Clearly our implementation must be very lightweight or the user experience will suffer. | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## AfterView | 
					
						
							|  |  |  |   The *AfterView* sample explores the `AfterViewInit` and `AfterViewChecked` hooks that Angular calls | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |   *after* it creates a component's child views. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Here's a child view that displays a hero's name in an input box: | 
					
						
							|  |  |  | +makeExample('lifecycle-hooks/ts/app/after-view.component.ts', 'child-view', 'ChildComponent')(format=".") | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   The `AfterViewComponent` displays this child view *within its template*: | 
					
						
							|  |  |  | +makeExample('lifecycle-hooks/ts/app/after-view.component.ts', 'template', 'AfterViewComponent (template)')(format=".") | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   The following hooks take action based on changing values *within the child view* | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   which can only be reached by querying for the child view via the property decorated with | 
					
						
							| 
									
										
										
										
											2016-06-21 22:22:38 +08:00
										 |  |  |   [@ViewChild](../api/core/index/ViewChild-var.html). | 
					
						
							| 
									
										
										
										
											2015-11-21 11:23:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/after-view.component.ts', 'hooks', 'AfterViewComponent (class excerpts)')(format=".") | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  | #wait-a-tick | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							|  |  |  |   ### Abide by the unidirectional data flow rule | 
					
						
							| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  |   The `doSomething` method updates the screen when the hero name exceeds 10 characters. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/after-view.component.ts', 'do-something', 'AfterViewComponent (doSomething)')(format=".") | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |   Why does the `doSomething` method wait a tick before updating `comment`? | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Angular's unidirectional data flow rule forbids updates to the view *after* it has been composed. | 
					
						
							|  |  |  |   Both of these hooks fire _after_ the component's view has been composed. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Angular throws an error if the hook updates the component's data-bound `comment` property immediately (try it!). | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  | block tick-methods | 
					
						
							|  |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |     The `LoggerService.tick_then()` postpones the log update  | 
					
						
							|  |  |  |     for one turn of the browser's JavaScript cycle ... and that's just long enough. | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Here's *AfterView* in action | 
					
						
							|  |  |  | figure.image-display | 
					
						
							|  |  |  |   img(src='/resources/images/devguide/lifecycle-hooks/after-view-anim.gif' alt="AfterView") | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   Notice that Angular frequently calls `AfterViewChecked`, often when there are no changes of interest. | 
					
						
							|  |  |  |   Write lean hook methods to avoid performance problems. | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | :marked | 
					
						
							|  |  |  |   ## AfterContent | 
					
						
							|  |  |  |   The *AfterContent* sample explores the `AfterContentInit` and `AfterContentChecked` hooks that Angular calls | 
					
						
							|  |  |  |   *after* Angular projects external content into the component. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   ### Content projection | 
					
						
							|  |  |  |   *Content projection* is a way to import HTML content from outside the component and insert that content | 
					
						
							|  |  |  |   into the component's template in a designated spot. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-sub-section | 
					
						
							|  |  |  |   :marked | 
					
						
							|  |  |  |     Angular 1 developers know this technique as *transclusion*. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Consider this variation on the [previous _AfterView_](#afterview) example. | 
					
						
							|  |  |  |   This time, instead of including the child view within the template, it imports the content from | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   the `AfterContentComponent`'s parent. Here's the parent's template. | 
					
						
							|  |  |  | +makeExample('lifecycle-hooks/ts/app/after-content.component.ts', 'parent-template', 'AfterContentParentComponent (template excerpt)')(format=".") | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |   Notice that the `<my-child>` tag is tucked between the `<after-content>` tags. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   Never put content between a component's element tags *unless you intend to project that content | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   into the component*. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   Now look at the component's template: | 
					
						
							|  |  |  | +makeExample('lifecycle-hooks/ts/app/after-content.component.ts', 'template', 'AfterContentComponent (template)')(format=".") | 
					
						
							|  |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |   The `<ng-content>` tag is a *placeholder* for the external content. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   It tells Angular where to insert that content. | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |   In this case, the projected content is the `<my-child>` from the parent. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | figure.image-display | 
					
						
							|  |  |  |   img(src='/resources/images/devguide/lifecycle-hooks/projected-child-view.png' width="230" alt="Projected Content") | 
					
						
							| 
									
										
										
										
											2016-03-23 20:30:09 -07:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | .l-sub-section | 
					
						
							|  |  |  |   :marked | 
					
						
							|  |  |  |     The tell-tale signs of *content projection* are (a) HTML between component element tags | 
					
						
							| 
									
										
										
										
											2016-05-06 06:17:34 -07:00
										 |  |  |     and (b) the presence of `<ng-content>` tags in the component's template. | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							|  |  |  |   ### AfterContent hooks | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   *AfterContent* hooks are similar to the *AfterView* hooks.  | 
					
						
							|  |  |  |   The key difference is in the child component | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   * The *AfterView* hooks concern `ViewChildren`, the child components whose element tags | 
					
						
							|  |  |  |   appear *within* the component's template. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   * The *AfterContent* hooks concern `ContentChildren`, the child components that Angular | 
					
						
							|  |  |  |   projected into the component. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |   The following *AfterContent* hooks take action based on changing values in a  *content child* | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |   which can only be reached by querying for it via the property decorated with | 
					
						
							| 
									
										
										
										
											2016-06-21 22:22:38 +08:00
										 |  |  |   [@ContentChild](../api/core/index/ContentChild-var.html). | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | +makeExample('lifecycle-hooks/ts/app/after-content.component.ts', 'hooks', 'AfterContentComponent (class excerpts)')(format=".") | 
					
						
							| 
									
										
										
										
											2016-01-13 09:41:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |    ### No unidirectional flow worries with _AfterContent..._ | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 14:06:32 +02:00
										 |  |  |    This component's `doSomething` method update's the component's data-bound `comment` property immediately. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:07:30 -07:00
										 |  |  |    There's no [need to wait](#wait-a-tick). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 18:21:09 +00:00
										 |  |  |    Recall that Angular calls both *AfterContent* hooks before calling either of the *AfterView* hooks. | 
					
						
							|  |  |  |    Angular completes composition of the projected content *before* finishing the composition of this component's view. | 
					
						
							| 
									
										
										
										
											2016-09-24 12:37:22 -07:00
										 |  |  |    There is a small window between the `AfterContent...` and `AfterView...` hooks to modify the host view. |