
BREAKING CHANGE: Exceptions are no longer part of the public API. We don't expect that anyone should be referring to the Exception types. ExceptionHandler.call(exception: any, stackTrace?: any, reason?: string): void; change to: ErrorHandler.handleError(error: any): void;
93 lines
3.5 KiB
TypeScript
93 lines
3.5 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 {CompilePipeMetadata} from '../compile_metadata';
|
|
import {isBlank, isPresent} from '../facade/lang';
|
|
import {Identifiers, identifierToken} from '../identifiers';
|
|
import * as o from '../output/output_ast';
|
|
|
|
import {CompileView} from './compile_view';
|
|
import {createPureProxy, getPropertyInView, injectFromViewParentInjector} from './util';
|
|
|
|
export class CompilePipe {
|
|
static call(view: CompileView, name: string, args: o.Expression[]): o.Expression {
|
|
var compView = view.componentView;
|
|
var meta = _findPipeMeta(compView, name);
|
|
var pipe: CompilePipe;
|
|
if (meta.pure) {
|
|
// pure pipes live on the component view
|
|
pipe = compView.purePipes.get(name);
|
|
if (isBlank(pipe)) {
|
|
pipe = new CompilePipe(compView, meta);
|
|
compView.purePipes.set(name, pipe);
|
|
compView.pipes.push(pipe);
|
|
}
|
|
} else {
|
|
// Non pure pipes live on the view that called it
|
|
pipe = new CompilePipe(view, meta);
|
|
view.pipes.push(pipe);
|
|
}
|
|
return pipe._call(view, args);
|
|
}
|
|
|
|
instance: o.ReadPropExpr;
|
|
private _purePipeProxyCount = 0;
|
|
|
|
constructor(public view: CompileView, public meta: CompilePipeMetadata) {
|
|
this.instance = o.THIS_EXPR.prop(`_pipe_${meta.name}_${view.pipeCount++}`);
|
|
var deps = this.meta.type.diDeps.map((diDep) => {
|
|
if (diDep.token.equalsTo(identifierToken(Identifiers.ChangeDetectorRef))) {
|
|
return getPropertyInView(o.THIS_EXPR.prop('ref'), this.view, this.view.componentView);
|
|
}
|
|
return injectFromViewParentInjector(diDep.token, false);
|
|
});
|
|
this.view.fields.push(new o.ClassField(this.instance.name, o.importType(this.meta.type)));
|
|
this.view.createMethod.resetDebugInfo(null, null);
|
|
this.view.createMethod.addStmt(o.THIS_EXPR.prop(this.instance.name)
|
|
.set(o.importExpr(this.meta.type).instantiate(deps))
|
|
.toStmt());
|
|
}
|
|
|
|
get pure(): boolean { return this.meta.pure; }
|
|
|
|
private _call(callingView: CompileView, args: o.Expression[]): o.Expression {
|
|
if (this.meta.pure) {
|
|
// PurePipeProxies live on the view that called them.
|
|
var purePipeProxyInstance =
|
|
o.THIS_EXPR.prop(`${this.instance.name}_${this._purePipeProxyCount++}`);
|
|
var pipeInstanceSeenFromPureProxy = getPropertyInView(this.instance, callingView, this.view);
|
|
createPureProxy(
|
|
pipeInstanceSeenFromPureProxy.prop('transform')
|
|
.callMethod(o.BuiltinMethod.Bind, [pipeInstanceSeenFromPureProxy]),
|
|
args.length, purePipeProxyInstance, callingView);
|
|
return o.importExpr(Identifiers.castByValue)
|
|
.callFn([purePipeProxyInstance, pipeInstanceSeenFromPureProxy.prop('transform')])
|
|
.callFn(args);
|
|
} else {
|
|
return getPropertyInView(this.instance, callingView, this.view).callMethod('transform', args);
|
|
}
|
|
}
|
|
}
|
|
|
|
function _findPipeMeta(view: CompileView, name: string): CompilePipeMetadata {
|
|
var pipeMeta: CompilePipeMetadata = null;
|
|
for (var i = view.pipeMetas.length - 1; i >= 0; i--) {
|
|
var localPipeMeta = view.pipeMetas[i];
|
|
if (localPipeMeta.name == name) {
|
|
pipeMeta = localPipeMeta;
|
|
break;
|
|
}
|
|
}
|
|
if (isBlank(pipeMeta)) {
|
|
throw new Error(
|
|
`Illegal state: Could not find pipe ${name} although the parser should have detected this error!`);
|
|
}
|
|
return pipeMeta;
|
|
}
|