Skip to content

Commit

Permalink
fix(OfflineCompiler): Do not provide I18N values when they're not spe…
Browse files Browse the repository at this point in the history
…cified

fixes #11643
  • Loading branch information
vicb authored and alexeagle committed Sep 19, 2016
1 parent 8395aab commit 03aedbe
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions modules/@angular/compiler/src/offline_compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ export class OfflineCompiler {

// compile components
exportedVars.push(
this._compileComponentFactory(compMeta, fileSuffix, statements),
this._compileComponent(
compMeta, dirMetas, ngModule.transitiveModule.pipes, ngModule.schemas,
stylesCompileResults.componentStylesheet, fileSuffix, statements));
this._compileComponentFactory(compMeta, fileSuffix, statements),
this._compileComponent(
compMeta, dirMetas, ngModule.transitiveModule.pipes, ngModule.schemas,
stylesCompileResults.componentStylesheet, fileSuffix, statements));
});
}))
.then(() => {
Expand All @@ -107,18 +107,29 @@ export class OfflineCompiler {

private _compileModule(ngModuleType: StaticSymbol, targetStatements: o.Statement[]): string {
const ngModule = this._metadataResolver.getNgModuleMetadata(ngModuleType);
const appCompileResult = this._ngModuleCompiler.compile(ngModule, [
new CompileProviderMetadata(
{token: resolveIdentifierToken(Identifiers.LOCALE_ID), useValue: this._localeId}),
new CompileProviderMetadata({
const providers: CompileProviderMetadata[] = [];

if (this._localeId) {
providers.push(new CompileProviderMetadata({
token: resolveIdentifierToken(Identifiers.LOCALE_ID),
useValue: this._localeId,
}));
}

if (this._translationFormat) {
providers.push(new CompileProviderMetadata({
token: resolveIdentifierToken(Identifiers.TRANSLATIONS_FORMAT),
useValue: this._translationFormat
})
]);
}));
}

const appCompileResult = this._ngModuleCompiler.compile(ngModule, providers);

appCompileResult.dependencies.forEach((dep) => {
dep.placeholder.name = _componentFactoryName(dep.comp);
dep.placeholder.moduleUrl = _ngfactoryModuleUrl(dep.comp.moduleUrl);
});

targetStatements.push(...appCompileResult.statements);
return appCompileResult.ngModuleFactoryVar;
}
Expand Down

0 comments on commit 03aedbe

Please sign in to comment.