With the introduction of the partial compilation, the Angular compiler's existing `parseTemplate` method has been extended to pass through multiple properties purely in favor of the partial compilation. e.g. the `parseTemplate` function now accepts an "option" called `isInline`. This option is just passed through and returned as part of the `ParsedTemplate`. This is not ideal because the `parseTemplate` function doesn't care whether the specified template was inline or not. This commit cleans up the `parseTemplate` compiler function so that nothing needed only for the partial compilation is added to it. We introduce a new struct for additional template information that is specific to the generation of the `declareComponent` function. With that change, we can simplify the component decorator handler and keep logic more local. PR Close #41583
188 lines
7.0 KiB
TypeScript
188 lines
7.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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 * as core from '../../core';
|
|
import {DEFAULT_INTERPOLATION_CONFIG} from '../../ml_parser/interpolation_config';
|
|
import * as o from '../../output/output_ast';
|
|
import {ParseLocation, ParseSourceFile, ParseSourceSpan} from '../../parse_util';
|
|
import {Identifiers as R3} from '../r3_identifiers';
|
|
import {R3CompiledExpression} from '../util';
|
|
import {DeclarationListEmitMode, R3ComponentMetadata, R3UsedDirectiveMetadata} from '../view/api';
|
|
import {createComponentType} from '../view/compiler';
|
|
import {ParsedTemplate} from '../view/template';
|
|
import {DefinitionMap} from '../view/util';
|
|
|
|
import {R3DeclareComponentMetadata, R3DeclareUsedDirectiveMetadata} from './api';
|
|
import {createDirectiveDefinitionMap} from './directive';
|
|
import {generateForwardRef, toOptionalLiteralArray} from './util';
|
|
|
|
export interface DeclareComponentTemplateInfo {
|
|
/**
|
|
* The string contents of the template.
|
|
*
|
|
* This is the "logical" template string, after expansion of any escaped characters (for inline
|
|
* templates). This may differ from the actual template bytes as they appear in the .ts file.
|
|
*/
|
|
content: string;
|
|
|
|
/**
|
|
* A full path to the file which contains the template.
|
|
*
|
|
* This can be either the original .ts file if the template is inline, or the .html file if an
|
|
* external file was used.
|
|
*/
|
|
sourceUrl: string;
|
|
|
|
/**
|
|
* Whether the template was inline (using `template`) or external (using `templateUrl`).
|
|
*/
|
|
isInline: boolean;
|
|
|
|
/** Expression that resolves to the inline template. */
|
|
inlineTemplateExpression: o.Expression|null;
|
|
}
|
|
|
|
/**
|
|
* Compile a component declaration defined by the `R3ComponentMetadata`.
|
|
*/
|
|
export function compileDeclareComponentFromMetadata(
|
|
meta: R3ComponentMetadata, template: ParsedTemplate,
|
|
additionalTemplateInfo: DeclareComponentTemplateInfo): R3CompiledExpression {
|
|
const definitionMap = createComponentDefinitionMap(meta, template, additionalTemplateInfo);
|
|
|
|
const expression = o.importExpr(R3.declareComponent).callFn([definitionMap.toLiteralMap()]);
|
|
const type = createComponentType(meta);
|
|
|
|
return {expression, type, statements: []};
|
|
}
|
|
|
|
/**
|
|
* Gathers the declaration fields for a component into a `DefinitionMap`.
|
|
*/
|
|
export function createComponentDefinitionMap(
|
|
meta: R3ComponentMetadata, template: ParsedTemplate,
|
|
templateInfo: DeclareComponentTemplateInfo): DefinitionMap<R3DeclareComponentMetadata> {
|
|
const definitionMap: DefinitionMap<R3DeclareComponentMetadata> =
|
|
createDirectiveDefinitionMap(meta);
|
|
|
|
definitionMap.set('template', getTemplateExpression(template, templateInfo));
|
|
if (templateInfo.isInline) {
|
|
definitionMap.set('isInline', o.literal(true));
|
|
}
|
|
|
|
definitionMap.set('styles', toOptionalLiteralArray(meta.styles, o.literal));
|
|
definitionMap.set(
|
|
'components',
|
|
compileUsedDirectiveMetadata(meta, directive => directive.isComponent === true));
|
|
definitionMap.set(
|
|
'directives',
|
|
compileUsedDirectiveMetadata(meta, directive => directive.isComponent !== true));
|
|
definitionMap.set('pipes', compileUsedPipeMetadata(meta));
|
|
definitionMap.set('viewProviders', meta.viewProviders);
|
|
definitionMap.set('animations', meta.animations);
|
|
|
|
if (meta.changeDetection !== undefined) {
|
|
definitionMap.set(
|
|
'changeDetection',
|
|
o.importExpr(R3.ChangeDetectionStrategy)
|
|
.prop(core.ChangeDetectionStrategy[meta.changeDetection]));
|
|
}
|
|
if (meta.encapsulation !== core.ViewEncapsulation.Emulated) {
|
|
definitionMap.set(
|
|
'encapsulation',
|
|
o.importExpr(R3.ViewEncapsulation).prop(core.ViewEncapsulation[meta.encapsulation]));
|
|
}
|
|
if (meta.interpolation !== DEFAULT_INTERPOLATION_CONFIG) {
|
|
definitionMap.set(
|
|
'interpolation',
|
|
o.literalArr([o.literal(meta.interpolation.start), o.literal(meta.interpolation.end)]));
|
|
}
|
|
|
|
if (template.preserveWhitespaces === true) {
|
|
definitionMap.set('preserveWhitespaces', o.literal(true));
|
|
}
|
|
|
|
return definitionMap;
|
|
}
|
|
|
|
function getTemplateExpression(
|
|
template: ParsedTemplate, templateInfo: DeclareComponentTemplateInfo): o.Expression {
|
|
if (templateInfo.isInline) {
|
|
// The template is inline so we can just reuse the current expression node.
|
|
return templateInfo.inlineTemplateExpression!;
|
|
} else {
|
|
// The template is external so we must synthesize an expression node with the appropriate
|
|
// source-span.
|
|
const contents = templateInfo.content;
|
|
const file = new ParseSourceFile(contents, templateInfo.sourceUrl);
|
|
const start = new ParseLocation(file, 0, 0, 0);
|
|
const end = computeEndLocation(file, contents);
|
|
const span = new ParseSourceSpan(start, end);
|
|
return o.literal(contents, null, span);
|
|
}
|
|
}
|
|
|
|
function computeEndLocation(file: ParseSourceFile, contents: string): ParseLocation {
|
|
const length = contents.length;
|
|
let lineStart = 0;
|
|
let lastLineStart = 0;
|
|
let line = 0;
|
|
do {
|
|
lineStart = contents.indexOf('\n', lastLineStart);
|
|
if (lineStart !== -1) {
|
|
lastLineStart = lineStart + 1;
|
|
line++;
|
|
}
|
|
} while (lineStart !== -1);
|
|
|
|
return new ParseLocation(file, length, line, length - lastLineStart);
|
|
}
|
|
|
|
/**
|
|
* Compiles the directives as registered in the component metadata into an array literal of the
|
|
* individual directives. If the component does not use any directives, then null is returned.
|
|
*/
|
|
function compileUsedDirectiveMetadata(
|
|
meta: R3ComponentMetadata,
|
|
predicate: (directive: R3UsedDirectiveMetadata) => boolean): o.LiteralArrayExpr|null {
|
|
const wrapType = meta.declarationListEmitMode !== DeclarationListEmitMode.Direct ?
|
|
generateForwardRef :
|
|
(expr: o.Expression) => expr;
|
|
|
|
const directives = meta.directives.filter(predicate);
|
|
return toOptionalLiteralArray(directives, directive => {
|
|
const dirMeta = new DefinitionMap<R3DeclareUsedDirectiveMetadata>();
|
|
dirMeta.set('type', wrapType(directive.type));
|
|
dirMeta.set('selector', o.literal(directive.selector));
|
|
dirMeta.set('inputs', toOptionalLiteralArray(directive.inputs, o.literal));
|
|
dirMeta.set('outputs', toOptionalLiteralArray(directive.outputs, o.literal));
|
|
dirMeta.set('exportAs', toOptionalLiteralArray(directive.exportAs, o.literal));
|
|
return dirMeta.toLiteralMap();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Compiles the pipes as registered in the component metadata into an object literal, where the
|
|
* pipe's name is used as key and a reference to its type as value. If the component does not use
|
|
* any pipes, then null is returned.
|
|
*/
|
|
function compileUsedPipeMetadata(meta: R3ComponentMetadata): o.LiteralMapExpr|null {
|
|
if (meta.pipes.size === 0) {
|
|
return null;
|
|
}
|
|
|
|
const wrapType = meta.declarationListEmitMode !== DeclarationListEmitMode.Direct ?
|
|
generateForwardRef :
|
|
(expr: o.Expression) => expr;
|
|
|
|
const entries = [];
|
|
for (const [name, pipe] of meta.pipes) {
|
|
entries.push({key: name, value: wrapType(pipe), quoted: true});
|
|
}
|
|
return o.literalMap(entries);
|
|
}
|