2015-08-27 16:29:02 -07:00
|
|
|
import {isPresent, normalizeBool} from 'angular2/src/core/facade/lang';
|
2015-08-25 15:36:02 -07:00
|
|
|
import {HtmlAst} from './html_ast';
|
2015-08-27 16:29:02 -07:00
|
|
|
import {ChangeDetectionStrategy} from 'angular2/src/core/change_detection/change_detection';
|
2015-08-25 15:36:02 -07:00
|
|
|
|
2015-08-27 16:29:02 -07:00
|
|
|
export class TypeMetadata {
|
2015-09-02 15:07:31 -07:00
|
|
|
id: number;
|
2015-08-25 15:36:02 -07:00
|
|
|
type: any;
|
|
|
|
typeName: string;
|
|
|
|
typeUrl: string;
|
2015-09-02 15:07:31 -07:00
|
|
|
constructor({id, type, typeName, typeUrl}:
|
|
|
|
{id?: number, type?: string, typeName?: string, typeUrl?: string} = {}) {
|
|
|
|
this.id = id;
|
2015-08-25 15:36:02 -07:00
|
|
|
this.type = type;
|
|
|
|
this.typeName = typeName;
|
|
|
|
this.typeUrl = typeUrl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-27 16:29:02 -07:00
|
|
|
export class ChangeDetectionMetadata {
|
|
|
|
changeDetection: ChangeDetectionStrategy;
|
|
|
|
properties: string[];
|
|
|
|
events: string[];
|
|
|
|
hostListeners: StringMap<string, string>;
|
|
|
|
hostProperties: StringMap<string, string>;
|
2015-09-01 16:24:23 -07:00
|
|
|
callAfterContentInit: boolean;
|
|
|
|
callAfterContentChecked: boolean;
|
|
|
|
callAfterViewInit: boolean;
|
|
|
|
callAfterViewChecked: boolean;
|
|
|
|
callOnChanges: boolean;
|
|
|
|
callDoCheck: boolean;
|
|
|
|
callOnInit: boolean;
|
|
|
|
constructor({changeDetection, properties, events, hostListeners, hostProperties,
|
|
|
|
callAfterContentInit, callAfterContentChecked, callAfterViewInit,
|
|
|
|
callAfterViewChecked, callOnChanges, callDoCheck, callOnInit}: {
|
2015-08-27 16:29:02 -07:00
|
|
|
changeDetection?: ChangeDetectionStrategy,
|
|
|
|
properties?: string[],
|
|
|
|
events?: string[],
|
|
|
|
hostListeners?: StringMap<string, string>,
|
2015-09-01 16:24:23 -07:00
|
|
|
hostProperties?: StringMap<string, string>,
|
|
|
|
callAfterContentInit?: boolean,
|
|
|
|
callAfterContentChecked?: boolean,
|
|
|
|
callAfterViewInit?: boolean,
|
|
|
|
callAfterViewChecked?: boolean,
|
|
|
|
callOnChanges?: boolean,
|
|
|
|
callDoCheck?: boolean,
|
|
|
|
callOnInit?: boolean
|
2015-08-27 16:29:02 -07:00
|
|
|
}) {
|
|
|
|
this.changeDetection = changeDetection;
|
|
|
|
this.properties = properties;
|
|
|
|
this.events = events;
|
|
|
|
this.hostListeners = hostListeners;
|
|
|
|
this.hostProperties = hostProperties;
|
2015-09-01 16:24:23 -07:00
|
|
|
this.callAfterContentInit = callAfterContentInit;
|
|
|
|
this.callAfterContentChecked = callAfterContentChecked;
|
|
|
|
this.callAfterViewInit = callAfterViewInit;
|
|
|
|
this.callAfterViewChecked = callAfterViewChecked;
|
|
|
|
this.callOnChanges = callOnChanges;
|
|
|
|
this.callDoCheck = callDoCheck;
|
|
|
|
this.callOnInit = callOnInit;
|
2015-08-27 16:29:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class TemplateMetadata {
|
2015-08-25 15:36:02 -07:00
|
|
|
encapsulation: ViewEncapsulation;
|
|
|
|
nodes: HtmlAst[];
|
|
|
|
styles: string[];
|
|
|
|
styleAbsUrls: string[];
|
|
|
|
ngContentSelectors: string[];
|
|
|
|
constructor({encapsulation, nodes, styles, styleAbsUrls, ngContentSelectors}: {
|
2015-09-02 15:07:31 -07:00
|
|
|
encapsulation?: ViewEncapsulation,
|
|
|
|
nodes?: HtmlAst[],
|
|
|
|
styles?: string[],
|
|
|
|
styleAbsUrls?: string[],
|
|
|
|
ngContentSelectors?: string[]
|
2015-08-25 15:36:02 -07:00
|
|
|
}) {
|
|
|
|
this.encapsulation = encapsulation;
|
|
|
|
this.nodes = nodes;
|
|
|
|
this.styles = styles;
|
|
|
|
this.styleAbsUrls = styleAbsUrls;
|
|
|
|
this.ngContentSelectors = ngContentSelectors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How the template and styles of a view should be encapsulated.
|
|
|
|
*/
|
|
|
|
export enum ViewEncapsulation {
|
|
|
|
/**
|
|
|
|
* Emulate scoping of styles by preprocessing the style rules
|
|
|
|
* and adding additional attributes to elements. This is the default.
|
|
|
|
*/
|
|
|
|
Emulated,
|
|
|
|
/**
|
|
|
|
* Uses the native mechanism of the renderer. For the DOM this means creating a ShadowRoot.
|
|
|
|
*/
|
|
|
|
Native,
|
|
|
|
/**
|
|
|
|
* Don't scope the template nor the styles.
|
|
|
|
*/
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
export class DirectiveMetadata {
|
2015-08-27 16:29:02 -07:00
|
|
|
type: TypeMetadata;
|
2015-08-27 09:03:18 -07:00
|
|
|
isComponent: boolean;
|
2015-08-25 15:36:02 -07:00
|
|
|
selector: string;
|
2015-08-27 16:29:02 -07:00
|
|
|
hostAttributes: Map<string, string>;
|
|
|
|
changeDetection: ChangeDetectionMetadata;
|
|
|
|
template: TemplateMetadata;
|
|
|
|
constructor({type, isComponent, selector, hostAttributes, changeDetection, template}: {
|
|
|
|
type?: TypeMetadata,
|
2015-08-27 09:03:18 -07:00
|
|
|
isComponent?: boolean,
|
|
|
|
selector?: string,
|
2015-08-27 16:29:02 -07:00
|
|
|
hostAttributes?: Map<string, string>,
|
|
|
|
changeDetection?: ChangeDetectionMetadata,
|
|
|
|
template?: TemplateMetadata
|
2015-08-27 09:03:18 -07:00
|
|
|
} = {}) {
|
2015-08-25 15:36:02 -07:00
|
|
|
this.type = type;
|
2015-08-27 16:29:02 -07:00
|
|
|
this.isComponent = normalizeBool(isComponent);
|
2015-08-25 15:36:02 -07:00
|
|
|
this.selector = selector;
|
2015-08-27 16:29:02 -07:00
|
|
|
this.hostAttributes = hostAttributes;
|
|
|
|
this.changeDetection = changeDetection;
|
2015-08-25 15:36:02 -07:00
|
|
|
this.template = template;
|
|
|
|
}
|
|
|
|
}
|
2015-09-02 15:07:31 -07:00
|
|
|
|
|
|
|
export class SourceModule {
|
|
|
|
constructor(public moduleName: string, public source: string, public imports: string[][]) {}
|
|
|
|
}
|