2015-08-25 15:36:02 -07:00
|
|
|
import {AST} from 'angular2/src/core/change_detection/change_detection';
|
2015-11-06 17:34:07 -08:00
|
|
|
import {isPresent} from 'angular2/src/facade/lang';
|
2015-09-18 10:33:23 -07:00
|
|
|
import {CompileDirectiveMetadata} from './directive_metadata';
|
2015-10-07 09:34:21 -07:00
|
|
|
import {ParseSourceSpan} from './parse_util';
|
2015-08-25 15:36:02 -07:00
|
|
|
|
|
|
|
export interface TemplateAst {
|
2015-10-07 09:34:21 -07:00
|
|
|
sourceSpan: ParseSourceSpan;
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any;
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class TextAst implements TemplateAst {
|
2015-10-07 09:34:21 -07:00
|
|
|
constructor(public value: string, public ngContentIndex: number,
|
|
|
|
public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any { return visitor.visitText(this, context); }
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class BoundTextAst implements TemplateAst {
|
2015-10-07 09:34:21 -07:00
|
|
|
constructor(public value: AST, public ngContentIndex: number,
|
|
|
|
public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitBoundText(this, context);
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class AttrAst implements TemplateAst {
|
2015-10-07 09:34:21 -07:00
|
|
|
constructor(public name: string, public value: string, public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any { return visitor.visitAttr(this, context); }
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
2015-08-27 16:29:02 -07:00
|
|
|
export class BoundElementPropertyAst implements TemplateAst {
|
|
|
|
constructor(public name: string, public type: PropertyBindingType, public value: AST,
|
2015-10-07 09:34:21 -07:00
|
|
|
public unit: string, public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitElementProperty(this, context);
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class BoundEventAst implements TemplateAst {
|
2015-08-27 16:29:02 -07:00
|
|
|
constructor(public name: string, public target: string, public handler: AST,
|
2015-10-07 09:34:21 -07:00
|
|
|
public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitEvent(this, context);
|
|
|
|
}
|
2015-09-18 10:33:23 -07:00
|
|
|
get fullName() {
|
2015-09-11 13:37:05 -07:00
|
|
|
if (isPresent(this.target)) {
|
|
|
|
return `${this.target}:${this.name}`;
|
|
|
|
} else {
|
|
|
|
return this.name;
|
|
|
|
}
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class VariableAst implements TemplateAst {
|
2015-10-07 09:34:21 -07:00
|
|
|
constructor(public name: string, public value: string, public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitVariable(this, context);
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class ElementAst implements TemplateAst {
|
2015-09-11 13:37:05 -07:00
|
|
|
constructor(public name: string, public attrs: AttrAst[],
|
2015-09-30 20:59:23 -07:00
|
|
|
public inputs: BoundElementPropertyAst[], public outputs: BoundEventAst[],
|
2015-09-18 10:33:23 -07:00
|
|
|
public exportAsVars: VariableAst[], public directives: DirectiveAst[],
|
2015-09-11 13:37:05 -07:00
|
|
|
public children: TemplateAst[], public ngContentIndex: number,
|
2015-10-07 09:34:21 -07:00
|
|
|
public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitElement(this, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
isBound(): boolean {
|
2015-09-30 20:59:23 -07:00
|
|
|
return (this.inputs.length > 0 || this.outputs.length > 0 || this.exportAsVars.length > 0 ||
|
2015-09-01 16:24:23 -07:00
|
|
|
this.directives.length > 0);
|
|
|
|
}
|
2015-09-11 13:37:05 -07:00
|
|
|
|
2015-09-18 10:33:23 -07:00
|
|
|
getComponent(): CompileDirectiveMetadata {
|
2015-09-11 13:37:05 -07:00
|
|
|
return this.directives.length > 0 && this.directives[0].directive.isComponent ?
|
|
|
|
this.directives[0].directive :
|
|
|
|
null;
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class EmbeddedTemplateAst implements TemplateAst {
|
2015-10-23 16:08:46 -07:00
|
|
|
constructor(public attrs: AttrAst[], public outputs: BoundEventAst[], public vars: VariableAst[],
|
2015-08-27 16:29:02 -07:00
|
|
|
public directives: DirectiveAst[], public children: TemplateAst[],
|
2015-10-07 09:34:21 -07:00
|
|
|
public ngContentIndex: number, public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitEmbeddedTemplate(this, context);
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
2015-08-27 16:29:02 -07:00
|
|
|
export class BoundDirectivePropertyAst implements TemplateAst {
|
|
|
|
constructor(public directiveName: string, public templateName: string, public value: AST,
|
2015-10-07 09:34:21 -07:00
|
|
|
public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitDirectiveProperty(this, context);
|
|
|
|
}
|
2015-08-27 16:29:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class DirectiveAst implements TemplateAst {
|
2015-09-18 10:33:23 -07:00
|
|
|
constructor(public directive: CompileDirectiveMetadata,
|
2015-09-30 20:59:23 -07:00
|
|
|
public inputs: BoundDirectivePropertyAst[],
|
2015-08-27 16:29:02 -07:00
|
|
|
public hostProperties: BoundElementPropertyAst[], public hostEvents: BoundEventAst[],
|
2015-10-07 09:34:21 -07:00
|
|
|
public exportAsVars: VariableAst[], public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitDirective(this, context);
|
|
|
|
}
|
2015-08-27 16:29:02 -07:00
|
|
|
}
|
|
|
|
|
2015-08-25 15:36:02 -07:00
|
|
|
export class NgContentAst implements TemplateAst {
|
2015-10-07 09:34:21 -07:00
|
|
|
constructor(public index: number, public ngContentIndex: number,
|
|
|
|
public sourceSpan: ParseSourceSpan) {}
|
2015-09-01 16:24:23 -07:00
|
|
|
visit(visitor: TemplateAstVisitor, context: any): any {
|
|
|
|
return visitor.visitNgContent(this, context);
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
2015-08-27 16:29:02 -07:00
|
|
|
export enum PropertyBindingType {
|
|
|
|
Property,
|
|
|
|
Attribute,
|
|
|
|
Class,
|
|
|
|
Style
|
|
|
|
}
|
|
|
|
|
2015-08-25 15:36:02 -07:00
|
|
|
export interface TemplateAstVisitor {
|
2015-09-01 16:24:23 -07:00
|
|
|
visitNgContent(ast: NgContentAst, context: any): any;
|
|
|
|
visitEmbeddedTemplate(ast: EmbeddedTemplateAst, context: any): any;
|
|
|
|
visitElement(ast: ElementAst, context: any): any;
|
|
|
|
visitVariable(ast: VariableAst, context: any): any;
|
|
|
|
visitEvent(ast: BoundEventAst, context: any): any;
|
|
|
|
visitElementProperty(ast: BoundElementPropertyAst, context: any): any;
|
|
|
|
visitAttr(ast: AttrAst, context: any): any;
|
|
|
|
visitBoundText(ast: BoundTextAst, context: any): any;
|
|
|
|
visitText(ast: TextAst, context: any): any;
|
|
|
|
visitDirective(ast: DirectiveAst, context: any): any;
|
|
|
|
visitDirectiveProperty(ast: BoundDirectivePropertyAst, context: any): any;
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-01 16:24:23 -07:00
|
|
|
export function templateVisitAll(visitor: TemplateAstVisitor, asts: TemplateAst[],
|
|
|
|
context: any = null): any[] {
|
2015-08-25 15:36:02 -07:00
|
|
|
var result = [];
|
|
|
|
asts.forEach(ast => {
|
2015-09-01 16:24:23 -07:00
|
|
|
var astResult = ast.visit(visitor, context);
|
2015-08-25 15:36:02 -07:00
|
|
|
if (isPresent(astResult)) {
|
|
|
|
result.push(astResult);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|