2018-01-23 13:57:48 -05:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
2018-01-22 20:43:52 -05:00
|
|
|
|
2018-01-22 22:19:47 -05:00
|
|
|
import {DirectiveDef, LifecycleHooksMap} from './interfaces/definition';
|
2018-01-22 20:43:52 -05:00
|
|
|
import {LNodeFlags} from './interfaces/node';
|
|
|
|
import {HookData, LView, TView} from './interfaces/view';
|
|
|
|
|
|
|
|
|
2018-01-22 22:19:47 -05:00
|
|
|
|
2018-01-22 20:43:52 -05:00
|
|
|
/** Constants used by lifecycle hooks to determine when and how a hook should be called. */
|
2018-01-23 13:57:48 -05:00
|
|
|
export const enum LifecycleHook {
|
|
|
|
ON_INIT = 0b00,
|
|
|
|
ON_CHECK = 0b01,
|
|
|
|
ON_CHANGES = 0b10,
|
|
|
|
|
2018-01-22 20:43:52 -05:00
|
|
|
/* Mask used to get the type of the lifecycle hook from flags in hook queue */
|
|
|
|
TYPE_MASK = 0b00000000000000000000000000000001,
|
|
|
|
|
|
|
|
/* Shift needed to get directive index from flags in hook queue */
|
|
|
|
INDX_SHIFT = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-23 13:57:48 -05:00
|
|
|
* If this is the first template pass, any ngOnInit or ngDoCheck hooks will be queued into
|
|
|
|
* TView.initHooks during directiveCreate.
|
|
|
|
*
|
|
|
|
* The directive index and hook type are encoded into one number (1st bit: type, remaining bits:
|
|
|
|
* directive index), then saved in the even indices of the initHooks array. The odd indices
|
|
|
|
* hold the hook functions themselves.
|
|
|
|
*
|
|
|
|
* @param index The index of the directive in LView.data
|
|
|
|
* @param hooks The static hooks map on the directive def
|
|
|
|
* @param tView The current TView
|
|
|
|
*/
|
|
|
|
export function queueInitHooks(index: number, hooks: LifecycleHooksMap, tView: TView): void {
|
|
|
|
const firstTemplatePass = tView.firstTemplatePass;
|
|
|
|
if (firstTemplatePass === true && hooks.onInit != null) {
|
|
|
|
(tView.initHooks || (tView.initHooks = [])).push(getInitFlags(index), hooks.onInit);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (firstTemplatePass === true && hooks.doCheck != null) {
|
|
|
|
(tView.initHooks || (tView.initHooks = [])).push(getCheckFlags(index), hooks.doCheck);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loops through the directives on a node and queues all their hooks except ngOnInit
|
|
|
|
* and ngDoCheck, which are queued separately in directiveCreate.
|
2018-01-22 20:43:52 -05:00
|
|
|
*/
|
|
|
|
export function queueLifecycleHooks(flags: number, currentView: LView): void {
|
2018-01-22 22:19:47 -05:00
|
|
|
const tView = currentView.tView;
|
|
|
|
if (tView.firstTemplatePass === true) {
|
|
|
|
const size = (flags & LNodeFlags.SIZE_MASK) >> LNodeFlags.SIZE_SHIFT;
|
|
|
|
const start = flags >> LNodeFlags.INDX_SHIFT;
|
|
|
|
|
2018-01-23 13:57:48 -05:00
|
|
|
// It's necessary to loop through the directives at elementEnd() (rather than processing in
|
|
|
|
// directiveCreate) so we can preserve the current hook order. Content, view, and destroy
|
|
|
|
// hooks for projected components and directives must be called *before* their hosts.
|
2018-01-22 22:19:47 -05:00
|
|
|
for (let i = start, end = start + size; i < end; i++) {
|
|
|
|
const hooks = (tView.data[i] as DirectiveDef<any>).lifecycleHooks;
|
|
|
|
queueContentHooks(hooks, tView, i);
|
|
|
|
queueViewHooks(hooks, tView, i);
|
2018-01-23 13:57:48 -05:00
|
|
|
queueDestroyHooks(hooks, tView, i);
|
2018-01-22 20:43:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-23 13:57:48 -05:00
|
|
|
/** Queues afterContentInit and afterContentChecked hooks on TView */
|
2018-01-22 22:19:47 -05:00
|
|
|
function queueContentHooks(hooks: LifecycleHooksMap, tView: TView, i: number): void {
|
|
|
|
if (hooks.afterContentInit != null) {
|
|
|
|
(tView.contentHooks || (tView.contentHooks = [])).push(getInitFlags(i), hooks.afterContentInit);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hooks.afterContentChecked != null) {
|
|
|
|
(tView.contentHooks || (tView.contentHooks = [
|
|
|
|
])).push(getCheckFlags(i), hooks.afterContentChecked);
|
|
|
|
}
|
|
|
|
}
|
2018-01-23 13:57:48 -05:00
|
|
|
|
|
|
|
/** Queues afterViewInit and afterViewChecked hooks on TView */
|
2018-01-22 22:19:47 -05:00
|
|
|
function queueViewHooks(hooks: LifecycleHooksMap, tView: TView, i: number): void {
|
|
|
|
if (hooks.afterViewInit != null) {
|
|
|
|
(tView.viewHooks || (tView.viewHooks = [])).push(getInitFlags(i), hooks.afterViewInit);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hooks.afterViewChecked != null) {
|
|
|
|
(tView.viewHooks || (tView.viewHooks = [])).push(getCheckFlags(i), hooks.afterViewChecked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-23 13:57:48 -05:00
|
|
|
/** Queues onDestroy hooks on TView */
|
|
|
|
function queueDestroyHooks(hooks: LifecycleHooksMap, tView: TView, i: number): void {
|
|
|
|
if (hooks.onDestroy != null) {
|
|
|
|
(tView.destroyHooks || (tView.destroyHooks = [])).push(i, hooks.onDestroy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-22 22:19:47 -05:00
|
|
|
/** Generates flags for init-only hooks */
|
|
|
|
function getInitFlags(index: number): number {
|
2018-01-23 13:57:48 -05:00
|
|
|
return index << LifecycleHook.INDX_SHIFT;
|
2018-01-22 22:19:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Generates flags for hooks called every change detection run */
|
|
|
|
function getCheckFlags(index: number): number {
|
2018-01-23 13:57:48 -05:00
|
|
|
return (index << LifecycleHook.INDX_SHIFT) | LifecycleHook.ON_CHECK;
|
2018-01-22 20:43:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calls onInit and doCheck calls if they haven't already been called.
|
|
|
|
*
|
|
|
|
* @param currentView The current view
|
|
|
|
*/
|
|
|
|
export function executeInitHooks(currentView: LView): void {
|
|
|
|
const initHooks = currentView.tView.initHooks;
|
|
|
|
|
|
|
|
if (currentView.initHooksCalled === false && initHooks != null) {
|
2018-01-22 22:19:47 -05:00
|
|
|
executeLifecycleHooks(currentView, initHooks);
|
2018-01-22 20:43:52 -05:00
|
|
|
currentView.initHooksCalled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-23 13:57:48 -05:00
|
|
|
/**
|
|
|
|
* Iterates over afterViewInit and afterViewChecked functions and calls them.
|
|
|
|
*
|
|
|
|
* @param currentView The current view
|
|
|
|
*/
|
2018-01-22 22:19:47 -05:00
|
|
|
export function executeViewHooks(currentView: LView): void {
|
|
|
|
const viewHooks = currentView.tView.viewHooks;
|
|
|
|
|
|
|
|
if (viewHooks != null) {
|
|
|
|
executeLifecycleHooks(currentView, viewHooks);
|
|
|
|
}
|
2018-01-22 20:43:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calls all afterContentInit and afterContentChecked hooks for the view, then splices
|
|
|
|
* out afterContentInit hooks to prep for the next run in update mode.
|
2018-01-23 13:57:48 -05:00
|
|
|
*
|
|
|
|
* @param currentView The current view
|
2018-01-22 20:43:52 -05:00
|
|
|
*/
|
|
|
|
export function executeContentHooks(currentView: LView): void {
|
2018-01-22 22:19:47 -05:00
|
|
|
const contentHooks = currentView.tView.contentHooks;
|
|
|
|
|
|
|
|
if (currentView.contentHooksCalled === false && contentHooks != null) {
|
|
|
|
executeLifecycleHooks(currentView, contentHooks);
|
2018-01-22 20:43:52 -05:00
|
|
|
currentView.contentHooksCalled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-22 22:19:47 -05:00
|
|
|
* Calls lifecycle hooks with their contexts, skipping init hooks if it's not
|
|
|
|
* creation mode.
|
2018-01-22 20:43:52 -05:00
|
|
|
*
|
2018-01-22 22:19:47 -05:00
|
|
|
* @param currentView The current view
|
2018-01-22 20:43:52 -05:00
|
|
|
* @param arr The array in which the hooks are found
|
|
|
|
*/
|
2018-01-22 22:19:47 -05:00
|
|
|
function executeLifecycleHooks(currentView: LView, arr: HookData): void {
|
|
|
|
const data = currentView.data;
|
|
|
|
const creationMode = currentView.creationMode;
|
|
|
|
|
|
|
|
for (let i = 0; i < arr.length; i += 2) {
|
|
|
|
const flags = arr[i] as number;
|
|
|
|
const hook = arr[i | 1] as() => void;
|
2018-01-23 13:57:48 -05:00
|
|
|
const initOnly = (flags & LifecycleHook.TYPE_MASK) === LifecycleHook.ON_INIT;
|
|
|
|
const instance = data[flags >> LifecycleHook.INDX_SHIFT];
|
2018-01-22 22:19:47 -05:00
|
|
|
if (initOnly === false || creationMode) {
|
|
|
|
hook.call(instance);
|
2018-01-22 20:43:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|