2015-09-11 13:35:46 -07:00
|
|
|
import {isPresent, normalizeBool, serializeEnum, Type} from 'angular2/src/core/facade/lang';
|
|
|
|
import {
|
|
|
|
ChangeDetectionStrategy,
|
|
|
|
changeDetectionStrategyFromJson
|
|
|
|
} from 'angular2/src/core/change_detection/change_detection';
|
|
|
|
import {ViewEncapsulation, viewEncapsulationFromJson} from 'angular2/src/core/render/api';
|
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-09-11 13:35:46 -07:00
|
|
|
type: Type;
|
2015-08-25 15:36:02 -07:00
|
|
|
typeName: string;
|
|
|
|
typeUrl: string;
|
2015-09-02 15:07:31 -07:00
|
|
|
constructor({id, type, typeName, typeUrl}:
|
2015-09-11 13:35:46 -07:00
|
|
|
{id?: number, type?: Type, typeName?: string, typeUrl?: string} = {}) {
|
2015-09-02 15:07:31 -07:00
|
|
|
this.id = id;
|
2015-08-25 15:36:02 -07:00
|
|
|
this.type = type;
|
|
|
|
this.typeName = typeName;
|
|
|
|
this.typeUrl = typeUrl;
|
|
|
|
}
|
2015-09-11 13:35:46 -07:00
|
|
|
|
|
|
|
static fromJson(data: StringMap<string, any>): TypeMetadata {
|
|
|
|
return new TypeMetadata(
|
|
|
|
{id: data['id'], type: data['type'], typeName: data['typeName'], typeUrl: data['typeUrl']});
|
|
|
|
}
|
|
|
|
|
|
|
|
toJson(): StringMap<string, any> {
|
|
|
|
return {
|
|
|
|
// Note: Runtime type can't be serialized...
|
|
|
|
'id': this.id,
|
|
|
|
'typeName': this.typeName,
|
|
|
|
'typeUrl': this.typeUrl
|
|
|
|
};
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
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-09-11 13:35:46 -07:00
|
|
|
} = {}) {
|
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
|
|
|
}
|
2015-09-11 13:35:46 -07:00
|
|
|
|
|
|
|
static fromJson(data: StringMap<string, any>): ChangeDetectionMetadata {
|
|
|
|
return new ChangeDetectionMetadata({
|
|
|
|
changeDetection: isPresent(data['changeDetection']) ?
|
|
|
|
changeDetectionStrategyFromJson(data['changeDetection']) :
|
|
|
|
data['changeDetection'],
|
|
|
|
properties: data['properties'],
|
|
|
|
events: data['events'],
|
|
|
|
hostListeners: data['hostListeners'],
|
|
|
|
hostProperties: data['hostProperties'],
|
|
|
|
callAfterContentInit: data['callAfterContentInit'],
|
|
|
|
callAfterContentChecked: data['callAfterContentChecked'],
|
|
|
|
callAfterViewInit: data['callAfterViewInit'],
|
|
|
|
callAfterViewChecked: data['callAfterViewChecked'],
|
|
|
|
callOnChanges: data['callOnChanges'],
|
|
|
|
callDoCheck: data['callDoCheck'],
|
|
|
|
callOnInit: data['callOnInit']
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
toJson(): StringMap<string, any> {
|
|
|
|
return {
|
|
|
|
'changeDetection': isPresent(this.changeDetection) ? serializeEnum(this.changeDetection) :
|
|
|
|
this.changeDetection,
|
|
|
|
'properties': this.properties,
|
|
|
|
'events': this.events,
|
|
|
|
'hostListeners': this.hostListeners,
|
|
|
|
'hostProperties': this.hostProperties,
|
|
|
|
'callAfterContentInit': this.callAfterContentInit,
|
|
|
|
'callAfterContentChecked': this.callAfterContentChecked,
|
|
|
|
'callAfterViewInit': this.callAfterViewInit,
|
|
|
|
'callAfterViewChecked': this.callAfterViewChecked,
|
|
|
|
'callOnChanges': this.callOnChanges,
|
|
|
|
'callDoCheck': this.callDoCheck,
|
|
|
|
'callOnInit': this.callOnInit
|
|
|
|
};
|
|
|
|
}
|
2015-08-27 16:29:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class TemplateMetadata {
|
2015-08-25 15:36:02 -07:00
|
|
|
encapsulation: ViewEncapsulation;
|
2015-09-11 13:35:46 -07:00
|
|
|
template: string;
|
2015-08-25 15:36:02 -07:00
|
|
|
styles: string[];
|
|
|
|
styleAbsUrls: string[];
|
|
|
|
ngContentSelectors: string[];
|
2015-09-11 13:35:46 -07:00
|
|
|
constructor({encapsulation, template, styles, styleAbsUrls, ngContentSelectors}: {
|
2015-09-02 15:07:31 -07:00
|
|
|
encapsulation?: ViewEncapsulation,
|
2015-09-11 13:35:46 -07:00
|
|
|
template?: string,
|
2015-09-02 15:07:31 -07:00
|
|
|
styles?: string[],
|
|
|
|
styleAbsUrls?: string[],
|
|
|
|
ngContentSelectors?: string[]
|
2015-09-11 13:35:46 -07:00
|
|
|
} = {}) {
|
2015-08-25 15:36:02 -07:00
|
|
|
this.encapsulation = encapsulation;
|
2015-09-11 13:35:46 -07:00
|
|
|
this.template = template;
|
2015-08-25 15:36:02 -07:00
|
|
|
this.styles = styles;
|
|
|
|
this.styleAbsUrls = styleAbsUrls;
|
|
|
|
this.ngContentSelectors = ngContentSelectors;
|
|
|
|
}
|
|
|
|
|
2015-09-11 13:37:05 -07:00
|
|
|
static fromJson(data: StringMap<string, any>): TemplateMetadata {
|
2015-09-11 13:35:46 -07:00
|
|
|
return new TemplateMetadata({
|
|
|
|
encapsulation: isPresent(data['encapsulation']) ?
|
|
|
|
viewEncapsulationFromJson(data['encapsulation']) :
|
|
|
|
data['encapsulation'],
|
|
|
|
template: data['template'],
|
|
|
|
styles: data['styles'],
|
|
|
|
styleAbsUrls: data['styleAbsUrls'],
|
|
|
|
ngContentSelectors: data['ngContentSelectors'],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
toJson(): StringMap<string, any> {
|
|
|
|
return {
|
|
|
|
'encapsulation':
|
|
|
|
isPresent(this.encapsulation) ? serializeEnum(this.encapsulation) : this.encapsulation,
|
|
|
|
'template': this.template,
|
|
|
|
'styles': this.styles,
|
|
|
|
'styleAbsUrls': this.styleAbsUrls,
|
|
|
|
'ngContentSelectors': this.ngContentSelectors,
|
|
|
|
};
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
|
|
|
|
2015-09-11 13:35:46 -07:00
|
|
|
|
2015-08-25 15:36:02 -07:00
|
|
|
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-09-11 13:35:46 -07:00
|
|
|
hostAttributes: StringMap<string, string>;
|
2015-08-27 16:29:02 -07:00
|
|
|
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-09-11 13:35:46 -07:00
|
|
|
hostAttributes?: StringMap<string, string>,
|
2015-08-27 16:29:02 -07:00
|
|
|
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-11 13:35:46 -07:00
|
|
|
|
|
|
|
static fromJson(data: StringMap<string, any>): DirectiveMetadata {
|
|
|
|
return new DirectiveMetadata({
|
|
|
|
type: isPresent(data['type']) ? TypeMetadata.fromJson(data['type']) : data['type'],
|
|
|
|
isComponent: data['isComponent'],
|
|
|
|
selector: data['selector'],
|
|
|
|
hostAttributes: data['hostAttributes'],
|
|
|
|
changeDetection: isPresent(data['changeDetection']) ?
|
|
|
|
ChangeDetectionMetadata.fromJson(data['changeDetection']) :
|
|
|
|
data['changeDetection'],
|
|
|
|
template: isPresent(data['template']) ? TemplateMetadata.fromJson(data['template']) :
|
|
|
|
data['template']
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
toJson(): StringMap<string, any> {
|
|
|
|
return {
|
|
|
|
'type': isPresent(this.type) ? this.type.toJson() : this.type,
|
|
|
|
'isComponent': this.isComponent,
|
|
|
|
'selector': this.selector,
|
|
|
|
'hostAttributes': this.hostAttributes,
|
|
|
|
'changeDetection':
|
|
|
|
isPresent(this.changeDetection) ? this.changeDetection.toJson() : this.changeDetection,
|
|
|
|
'template': isPresent(this.template) ? this.template.toJson() : this.template
|
|
|
|
};
|
|
|
|
}
|
2015-08-25 15:36:02 -07:00
|
|
|
}
|
2015-09-02 15:07:31 -07:00
|
|
|
|
|
|
|
export class SourceModule {
|
|
|
|
constructor(public moduleName: string, public source: string, public imports: string[][]) {}
|
|
|
|
}
|