-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathindex.ts
263 lines (232 loc) · 7.85 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/**
* @license
* Copyright Google Inc. 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 {
BuilderContext,
createBuilder,
targetFromTargetString,
} from '@angular-devkit/architect';
import { BuildResult, runWebpack } from '@angular-devkit/build-webpack';
import { JsonObject } from '@angular-devkit/core';
import type { ɵParsedMessage as LocalizeMessage } from '@angular/localize';
import * as fs from 'fs';
import * as path from 'path';
import * as webpack from 'webpack';
import { Schema as BrowserBuilderOptions } from '../browser/schema';
import { ExecutionTransformer } from '../transforms';
import { createI18nOptions } from '../utils/i18n-options';
import { assertCompatibleAngularVersion } from '../utils/version';
import { generateBrowserWebpackConfigFromContext } from '../utils/webpack-browser-config';
import { getAotConfig, getCommonConfig, getStatsConfig } from '../webpack/configs';
import { createWebpackLoggingCallback } from '../webpack/utils/stats';
import { Format, Schema } from './schema';
export type ExtractI18nBuilderOptions = Schema & JsonObject;
function getI18nOutfile(format: string | undefined) {
switch (format) {
case 'xmb':
return 'messages.xmb';
case 'xlf':
case 'xlif':
case 'xliff':
case 'xlf2':
case 'xliff2':
return 'messages.xlf';
default:
throw new Error(`Unsupported format "${format}"`);
}
}
async function getSerializer(format: Format, sourceLocale: string, basePath: string, useLegacyIds = true) {
switch (format) {
case Format.Xmb:
const { XmbTranslationSerializer } =
await import('@angular/localize/src/tools/src/extract/translation_files/xmb_translation_serializer');
// tslint:disable-next-line: no-any
return new XmbTranslationSerializer(basePath as any, useLegacyIds);
case Format.Xlf:
case Format.Xlif:
case Format.Xliff:
const { Xliff1TranslationSerializer } =
await import('@angular/localize/src/tools/src/extract/translation_files/xliff1_translation_serializer');
// tslint:disable-next-line: no-any
return new Xliff1TranslationSerializer(sourceLocale, basePath as any, useLegacyIds, {});
case Format.Xlf2:
case Format.Xliff2:
const { Xliff2TranslationSerializer } =
await import('@angular/localize/src/tools/src/extract/translation_files/xliff2_translation_serializer');
// tslint:disable-next-line: no-any
return new Xliff2TranslationSerializer(sourceLocale, basePath as any, useLegacyIds, {});
}
}
class InMemoryOutputPlugin {
apply(compiler: webpack.Compiler): void {
// tslint:disable-next-line:no-any
compiler.outputFileSystem = new (webpack as any).MemoryOutputFileSystem();
}
}
export async function execute(
options: ExtractI18nBuilderOptions,
context: BuilderContext,
transforms?: {
webpackConfiguration?: ExecutionTransformer<webpack.Configuration>;
},
): Promise<BuildResult> {
// Check Angular version.
assertCompatibleAngularVersion(context.workspaceRoot, context.logger);
const browserTarget = targetFromTargetString(options.browserTarget);
const browserOptions = await context.validateOptions<JsonObject & BrowserBuilderOptions>(
await context.getTargetOptions(browserTarget),
await context.getBuilderNameForTarget(browserTarget),
);
if (options.i18nFormat !== Format.Xlf) {
options.format = options.i18nFormat;
}
switch (options.format) {
case Format.Xlf:
case Format.Xlif:
case Format.Xliff:
options.format = Format.Xlf;
break;
case Format.Xlf2:
case Format.Xliff2:
options.format = Format.Xlf2;
break;
case undefined:
options.format = Format.Xlf;
break;
}
// We need to determine the outFile name so that AngularCompiler can retrieve it.
let outFile = options.outFile || getI18nOutfile(options.format);
if (options.outputPath) {
// AngularCompilerPlugin doesn't support genDir so we have to adjust outFile instead.
outFile = path.join(options.outputPath, outFile);
}
outFile = path.resolve(context.workspaceRoot, outFile);
if (!context.target || !context.target.project) {
throw new Error('The builder requires a target.');
}
const metadata = await context.getProjectMetadata(context.target);
const i18n = createI18nOptions(metadata);
let usingIvy = false;
const ivyMessages: LocalizeMessage[] = [];
const { config, projectRoot } = await generateBrowserWebpackConfigFromContext(
{
...browserOptions,
optimization: {
scripts: false,
styles: false,
},
sourceMap: {
scripts: true,
styles: false,
vendor: true,
},
buildOptimizer: false,
i18nLocale: options.i18nLocale || i18n.sourceLocale,
i18nFormat: options.format,
i18nFile: outFile,
aot: true,
progress: options.progress,
assets: [],
scripts: [],
styles: [],
deleteOutputPath: false,
},
context,
(wco) => {
const isIvyApplication = wco.tsConfig.options.enableIvy !== false;
// Ivy extraction is the default for Ivy applications.
usingIvy = (isIvyApplication && options.ivy === undefined) || !!options.ivy;
if (usingIvy) {
if (!isIvyApplication) {
context.logger.warn(
'Ivy extraction enabled but application is not Ivy enabled. Extraction may fail.',
);
}
} else if (isIvyApplication) {
context.logger.warn(
'Ivy extraction not enabled but application is Ivy enabled. ' +
'If the extraction fails, the `--ivy` flag will enable Ivy extraction.',
);
}
const partials = [
{ plugins: [new InMemoryOutputPlugin()] },
getCommonConfig(wco),
// Only use VE extraction if not using Ivy
getAotConfig(wco, !usingIvy),
getStatsConfig(wco),
];
// Add Ivy application file extractor support
if (usingIvy) {
partials.unshift({
module: {
rules: [
{
test: /\.[t|j]s$/,
loader: require.resolve('./ivy-extract-loader'),
options: {
messageHandler: (messages: LocalizeMessage[]) => ivyMessages.push(...messages),
},
},
],
},
});
}
// Replace all stylesheets with an empty default export
partials.push({
plugins: [
new webpack.NormalModuleReplacementPlugin(
/\.(css|scss|sass|styl|less)$/,
path.join(__dirname, 'empty-export-default.js'),
),
],
});
return partials;
},
);
if (usingIvy) {
try {
require.resolve('@angular/localize');
} catch {
return {
success: false,
error: `Ivy extraction requires the '@angular/localize' package.`,
};
}
}
const webpackResult = await runWebpack(
(await transforms?.webpackConfiguration?.(config)) || config,
context,
{
logging: createWebpackLoggingCallback(false, context.logger),
webpackFactory: webpack,
},
).toPromise();
// Complete if using VE
if (!usingIvy) {
return webpackResult;
}
// Nothing to process if the Webpack build failed
if (!webpackResult.success) {
return webpackResult;
}
// Serialize all extracted messages
const serializer = await getSerializer(
options.format,
i18n.sourceLocale,
config.context || projectRoot,
);
const content = serializer.serialize(ivyMessages);
// Ensure directory exists
const outputPath = path.dirname(outFile);
if (!fs.existsSync(outputPath)) {
fs.mkdirSync(outputPath, { recursive: true });
}
// Write translation file
fs.writeFileSync(outFile, content);
return webpackResult;
}
export default createBuilder<JsonObject & ExtractI18nBuilderOptions>(execute);