-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathi18n-webpack.js
107 lines (107 loc) · 4.98 KB
/
i18n-webpack.js
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
"use strict";
/**
* @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.dev/license
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadTranslations = void 0;
exports.configureI18nBuild = configureI18nBuild;
const private_1 = require("@angular/build/private");
Object.defineProperty(exports, "loadTranslations", { enumerable: true, get: function () { return private_1.loadTranslations; } });
const node_fs_1 = __importDefault(require("node:fs"));
const node_module_1 = require("node:module");
const node_os_1 = __importDefault(require("node:os"));
const node_path_1 = __importDefault(require("node:path"));
const read_tsconfig_1 = require("../utils/read-tsconfig");
/**
* The base module location used to search for locale specific data.
*/
const LOCALE_DATA_BASE_MODULE = '@angular/common/locales/global';
async function configureI18nBuild(context, options) {
if (!context.target) {
throw new Error('The builder requires a target.');
}
const buildOptions = { ...options };
const tsConfig = await (0, read_tsconfig_1.readTsconfig)(buildOptions.tsConfig, context.workspaceRoot);
const metadata = await context.getProjectMetadata(context.target);
const i18n = (0, private_1.createI18nOptions)(metadata, buildOptions.localize, context.logger);
// No additional processing needed if no inlining requested and no source locale defined.
if (!i18n.shouldInline && !i18n.hasDefinedSourceLocale) {
return { buildOptions, i18n };
}
const projectRoot = node_path_1.default.join(context.workspaceRoot, metadata.root || '');
// The trailing slash is required to signal that the path is a directory and not a file.
const projectRequire = (0, node_module_1.createRequire)(projectRoot + '/');
const localeResolver = (locale) => projectRequire.resolve(node_path_1.default.join(LOCALE_DATA_BASE_MODULE, locale));
// Load locale data and translations (if present)
let loader;
const usedFormats = new Set();
for (const [locale, desc] of Object.entries(i18n.locales)) {
if (!i18n.inlineLocales.has(locale) && locale !== i18n.sourceLocale) {
continue;
}
let localeDataPath = findLocaleDataPath(locale, localeResolver);
if (!localeDataPath) {
const [first] = locale.split('-');
if (first) {
localeDataPath = findLocaleDataPath(first.toLowerCase(), localeResolver);
if (localeDataPath) {
context.logger.warn(`Locale data for '${locale}' cannot be found. Using locale data for '${first}'.`);
}
}
}
if (!localeDataPath) {
context.logger.warn(`Locale data for '${locale}' cannot be found. No locale data will be included for this locale.`);
}
else {
desc.dataPath = localeDataPath;
}
if (!desc.files.length) {
continue;
}
loader ??= await (0, private_1.createTranslationLoader)();
(0, private_1.loadTranslations)(locale, desc, context.workspaceRoot, loader, {
warn(message) {
context.logger.warn(message);
},
error(message) {
throw new Error(message);
},
}, usedFormats, buildOptions.i18nDuplicateTranslation);
if (usedFormats.size > 1 && tsConfig.options.enableI18nLegacyMessageIdFormat !== false) {
// This limitation is only for legacy message id support (defaults to true as of 9.0)
throw new Error('Localization currently only supports using one type of translation file format for the entire application.');
}
}
// If inlining store the output in a temporary location to facilitate post-processing
if (i18n.shouldInline) {
// TODO: we should likely save these in the .angular directory in the next major version.
// We'd need to do a migration to add the temp directory to gitignore.
const tempPath = node_fs_1.default.mkdtempSync(node_path_1.default.join(node_fs_1.default.realpathSync(node_os_1.default.tmpdir()), 'angular-cli-i18n-'));
buildOptions.outputPath = tempPath;
process.on('exit', () => {
try {
node_fs_1.default.rmSync(tempPath, { force: true, recursive: true, maxRetries: 3 });
}
catch { }
});
}
return { buildOptions, i18n };
}
function findLocaleDataPath(locale, resolver) {
// Remove private use subtags
const scrubbedLocale = locale.replace(/-x(-[a-zA-Z0-9]{1,8})+$/, '');
try {
return resolver(scrubbedLocale);
}
catch {
// fallback to known existing en-US locale data as of 14.0
return scrubbedLocale === 'en-US' ? findLocaleDataPath('en', resolver) : null;
}
}