72 lines
1.8 KiB
TypeScript
Raw Normal View History

import {HtmlAst} from './html_ast';
export class TypeMeta {
type: any;
typeName: string;
typeUrl: string;
constructor({type, typeName, typeUrl}:
{type?: string, typeName?: string, typeUrl?: string} = {}) {
this.type = type;
this.typeName = typeName;
this.typeUrl = typeUrl;
}
}
export class TemplateMeta {
encapsulation: ViewEncapsulation;
nodes: HtmlAst[];
styles: string[];
styleAbsUrls: string[];
ngContentSelectors: string[];
constructor({encapsulation, nodes, styles, styleAbsUrls, ngContentSelectors}: {
encapsulation: ViewEncapsulation,
nodes: HtmlAst[],
styles: string[],
styleAbsUrls: string[],
ngContentSelectors: string[]
}) {
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 {
type: TypeMeta;
selector: string;
constructor({type, selector}: {type?: TypeMeta, selector?: string} = {}) {
this.type = type;
this.selector = selector;
}
}
export class ComponentMetadata extends DirectiveMetadata {
template: TemplateMeta;
constructor({type, selector, template}:
{type?: TypeMeta, selector?: string, template?: TemplateMeta}) {
super({type: type, selector: selector});
this.template = template;
}
}