2016-06-23 09:47:54 -07: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
|
|
|
|
*/
|
|
|
|
|
2016-08-10 15:55:18 -07:00
|
|
|
|
2016-11-23 09:42:19 -08:00
|
|
|
import {CompileDirectiveMetadata, CompileDirectiveSummary, CompileIdentifierMetadata, CompileTokenMetadata, identifierName} from '../compile_metadata';
|
2016-10-19 09:17:36 -07:00
|
|
|
import {createDiTokenExpression} from '../compiler_util/identifier_util';
|
2016-09-30 09:26:53 -07:00
|
|
|
import {isPresent} from '../facade/lang';
|
2016-11-23 09:42:19 -08:00
|
|
|
import {Identifiers, createIdentifier} from '../identifiers';
|
2016-01-06 14:13:44 -08:00
|
|
|
import * as o from '../output/output_ast';
|
2016-11-01 11:45:27 -07:00
|
|
|
import {ViewType} from '../private_import_core';
|
2016-06-08 16:38:52 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
import {CompileView} from './compile_view';
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
export function getPropertyInView(
|
|
|
|
property: o.Expression, callingView: CompileView, definedView: CompileView): o.Expression {
|
2016-04-22 15:33:32 -07:00
|
|
|
if (callingView === definedView) {
|
2016-01-06 14:13:44 -08:00
|
|
|
return property;
|
|
|
|
} else {
|
2016-11-12 14:08:58 +01:00
|
|
|
let viewProp: o.Expression = o.THIS_EXPR;
|
|
|
|
let currView: CompileView = callingView;
|
2016-04-22 15:33:32 -07:00
|
|
|
while (currView !== definedView && isPresent(currView.declarationElement.view)) {
|
|
|
|
currView = currView.declarationElement.view;
|
2016-11-01 09:35:03 -07:00
|
|
|
viewProp = viewProp.prop('parentView');
|
2016-04-22 15:33:32 -07:00
|
|
|
}
|
|
|
|
if (currView !== definedView) {
|
2016-08-25 00:50:16 -07:00
|
|
|
throw new Error(
|
2016-04-22 15:33:32 -07:00
|
|
|
`Internal error: Could not calculate a property in a parent view: ${property}`);
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
2016-10-13 16:34:37 -07:00
|
|
|
return property.visitExpression(new _ReplaceViewTransformer(viewProp, definedView), null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ReplaceViewTransformer extends o.ExpressionTransformer {
|
|
|
|
constructor(private _viewExpr: o.Expression, private _view: CompileView) { super(); }
|
|
|
|
private _isThis(expr: o.Expression): boolean {
|
|
|
|
return expr instanceof o.ReadVarExpr && expr.builtin === o.BuiltinVar.This;
|
|
|
|
}
|
|
|
|
|
|
|
|
visitReadVarExpr(ast: o.ReadVarExpr, context: any): any {
|
|
|
|
return this._isThis(ast) ? this._viewExpr : ast;
|
|
|
|
}
|
|
|
|
visitReadPropExpr(ast: o.ReadPropExpr, context: any): any {
|
|
|
|
if (this._isThis(ast.receiver)) {
|
2016-01-06 14:13:44 -08:00
|
|
|
// Note: Don't cast for members of the AppView base class...
|
2016-10-13 16:34:37 -07:00
|
|
|
if (this._view.fields.some((field) => field.name == ast.name) ||
|
|
|
|
this._view.getters.some((field) => field.name == ast.name)) {
|
|
|
|
return this._viewExpr.cast(this._view.classType).prop(ast.name);
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
}
|
2016-10-13 16:34:37 -07:00
|
|
|
return super.visitReadPropExpr(ast, context);
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
export function injectFromViewParentInjector(
|
2016-11-01 11:45:27 -07:00
|
|
|
view: CompileView, token: CompileTokenMetadata, optional: boolean): o.Expression {
|
|
|
|
let viewExpr: o.Expression;
|
|
|
|
if (view.viewType === ViewType.HOST) {
|
|
|
|
viewExpr = o.THIS_EXPR;
|
|
|
|
} else {
|
|
|
|
viewExpr = o.THIS_EXPR.prop('parentView');
|
|
|
|
}
|
2016-11-12 14:08:58 +01:00
|
|
|
const args = [createDiTokenExpression(token), o.THIS_EXPR.prop('parentIndex')];
|
2016-04-14 12:35:24 -07:00
|
|
|
if (optional) {
|
|
|
|
args.push(o.NULL_EXPR);
|
|
|
|
}
|
2016-11-01 11:45:27 -07:00
|
|
|
return viewExpr.callMethod('injectorGet', args);
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-11-02 08:36:23 -07:00
|
|
|
export function getViewClassName(
|
2016-11-10 16:27:53 -08:00
|
|
|
component: CompileDirectiveSummary | CompileDirectiveMetadata,
|
|
|
|
embeddedTemplateIndex: number): string {
|
2016-11-23 09:42:19 -08:00
|
|
|
return `View_${identifierName(component.type)}${embeddedTemplateIndex}`;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-10-26 16:58:35 -07:00
|
|
|
export function getHandleEventMethodName(elementIndex: number): string {
|
|
|
|
return `handleEvent_${elementIndex}`;
|
2016-11-01 11:45:27 -07:00
|
|
|
}
|