- for now only wraps the `@Input` properties and calls to `ngOnInit`, `ngDoCheck` and `ngOnChanges` of directives. - also groups eval sources by NgModule. Part of #11683
75 lines
3.3 KiB
TypeScript
75 lines
3.3 KiB
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
import {CompileDirectiveMetadata, CompilePipeMetadata} from '../compile_metadata';
|
|
import * as o from '../output/output_ast';
|
|
import {LifecycleHooks} from '../private_import_core';
|
|
import {DirectiveAst, ProviderAst} from '../template_parser/template_ast';
|
|
|
|
import {CompileElement} from './compile_element';
|
|
import {CompileView} from './compile_view';
|
|
import {DetectChangesVars} from './constants';
|
|
|
|
|
|
|
|
var STATE_IS_NEVER_CHECKED = o.THIS_EXPR.prop('numberOfChecks').identical(new o.LiteralExpr(0));
|
|
var NOT_THROW_ON_CHANGES = o.not(DetectChangesVars.throwOnChange);
|
|
|
|
export function bindDirectiveAfterContentLifecycleCallbacks(
|
|
directiveMeta: CompileDirectiveMetadata, directiveInstance: o.Expression,
|
|
compileElement: CompileElement) {
|
|
var view = compileElement.view;
|
|
var lifecycleHooks = directiveMeta.type.lifecycleHooks;
|
|
var afterContentLifecycleCallbacksMethod = view.afterContentLifecycleCallbacksMethod;
|
|
afterContentLifecycleCallbacksMethod.resetDebugInfo(
|
|
compileElement.nodeIndex, compileElement.sourceAst);
|
|
if (lifecycleHooks.indexOf(LifecycleHooks.AfterContentInit) !== -1) {
|
|
afterContentLifecycleCallbacksMethod.addStmt(new o.IfStmt(
|
|
STATE_IS_NEVER_CHECKED, [directiveInstance.callMethod('ngAfterContentInit', []).toStmt()]));
|
|
}
|
|
if (lifecycleHooks.indexOf(LifecycleHooks.AfterContentChecked) !== -1) {
|
|
afterContentLifecycleCallbacksMethod.addStmt(
|
|
directiveInstance.callMethod('ngAfterContentChecked', []).toStmt());
|
|
}
|
|
}
|
|
|
|
export function bindDirectiveAfterViewLifecycleCallbacks(
|
|
directiveMeta: CompileDirectiveMetadata, directiveInstance: o.Expression,
|
|
compileElement: CompileElement) {
|
|
var view = compileElement.view;
|
|
var lifecycleHooks = directiveMeta.type.lifecycleHooks;
|
|
var afterViewLifecycleCallbacksMethod = view.afterViewLifecycleCallbacksMethod;
|
|
afterViewLifecycleCallbacksMethod.resetDebugInfo(
|
|
compileElement.nodeIndex, compileElement.sourceAst);
|
|
if (lifecycleHooks.indexOf(LifecycleHooks.AfterViewInit) !== -1) {
|
|
afterViewLifecycleCallbacksMethod.addStmt(new o.IfStmt(
|
|
STATE_IS_NEVER_CHECKED, [directiveInstance.callMethod('ngAfterViewInit', []).toStmt()]));
|
|
}
|
|
if (lifecycleHooks.indexOf(LifecycleHooks.AfterViewChecked) !== -1) {
|
|
afterViewLifecycleCallbacksMethod.addStmt(
|
|
directiveInstance.callMethod('ngAfterViewChecked', []).toStmt());
|
|
}
|
|
}
|
|
|
|
export function bindInjectableDestroyLifecycleCallbacks(
|
|
provider: ProviderAst, providerInstance: o.Expression, compileElement: CompileElement) {
|
|
var onDestroyMethod = compileElement.view.destroyMethod;
|
|
onDestroyMethod.resetDebugInfo(compileElement.nodeIndex, compileElement.sourceAst);
|
|
if (provider.lifecycleHooks.indexOf(LifecycleHooks.OnDestroy) !== -1) {
|
|
onDestroyMethod.addStmt(providerInstance.callMethod('ngOnDestroy', []).toStmt());
|
|
}
|
|
}
|
|
|
|
export function bindPipeDestroyLifecycleCallbacks(
|
|
pipeMeta: CompilePipeMetadata, pipeInstance: o.Expression, view: CompileView) {
|
|
var onDestroyMethod = view.destroyMethod;
|
|
if (pipeMeta.type.lifecycleHooks.indexOf(LifecycleHooks.OnDestroy) !== -1) {
|
|
onDestroyMethod.addStmt(pipeInstance.callMethod('ngOnDestroy', []).toStmt());
|
|
}
|
|
}
|