/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/build_angular/src/builders/extract-i18n/ivy-extract-loader.ts
123 строки
4 KB
Alan Agius
refactor: replace `loadEsmModule` with dynamic `import()`
21 окт 2025, 16:05
21 окт 2025, 16:05
b356bb1
Код
Авторство
О чём код?
/** * @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 */ import * as nodePath from 'node:path'; // Extract loader source map parameter type since it is not exported directly type LoaderSourceMap = Parameters<import('webpack').LoaderDefinitionFunction>[1]; interface LocalizeExtractLoaderOptions { messageHandler: (messages: import('@angular/localize').ɵParsedMessage[]) => void; } export default function localizeExtractLoader( this: import('webpack').LoaderContext<LocalizeExtractLoaderOptions>, content: string, map: LoaderSourceMap, ) { // This loader is not cacheable due to how message extraction works. // Extracted messages are not part of webpack pipeline and hence they cannot be retrieved from cache. // TODO: We should investigate in the future on making this deterministic and more cacheable. this.cacheable(false); const options = this.getOptions(); const callback = this.async(); extract(this, content, map, options).then( () => { // Pass through the original content now that messages have been extracted callback(undefined, content, map); }, (error) => { callback(error); }, ); } async function extract( loaderContext: import('webpack').LoaderContext<LocalizeExtractLoaderOptions>, content: string, map: string | LoaderSourceMap | undefined, options: LocalizeExtractLoaderOptions, ) { let MessageExtractor; try { const { MessageExtractor: MsgExtractor } = await import('@angular/localize/tools'); MessageExtractor = MsgExtractor; } catch { throw new Error( `Unable to load message extractor. Please ensure '@angular/localize' is installed.`, ); } // Setup a Webpack-based logger instance const logger = { // level 2 is warnings level: 2, debug(...args: string[]): void { // eslint-disable-next-line no-console console.debug(...args); }, info(...args: string[]): void { loaderContext.emitWarning(new Error(args.join(''))); }, warn(...args: string[]): void { loaderContext.emitWarning(new Error(args.join(''))); }, error(...args: string[]): void { loaderContext.emitError(new Error(args.join(''))); }, }; let filename = loaderContext.resourcePath; const mapObject = typeof map === 'string' ? (JSON.parse(map) as Exclude<LoaderSourceMap, string>) : map; if (mapObject?.file) { // The extractor's internal sourcemap handling expects the filenames to match filename = nodePath.join(loaderContext.context, mapObject.file); } // Setup a virtual file system instance for the extractor // * MessageExtractor itself uses readFile, relative and resolve // * Internal SourceFileLoader (sourcemap support) uses dirname, exists, readFile, and resolve const filesystem = { readFile(path: string): string { if (path === filename) { return content; } else if (path === filename + '.map') { return typeof map === 'string' ? map : JSON.stringify(map); } else { throw new Error('Unknown file requested: ' + path); } }, relative(from: string, to: string): string { return nodePath.relative(from, to); }, resolve(...paths: string[]): string { return nodePath.resolve(...paths); }, exists(path: string): boolean { return path === filename || path === filename + '.map'; }, dirname(path: string): string { return nodePath.dirname(path); }, }; // eslint-disable-next-line @typescript-eslint/no-explicit-any const extractor = new MessageExtractor(filesystem as any, logger, { // eslint-disable-next-line @typescript-eslint/no-explicit-any basePath: loaderContext.rootContext as any, useSourceMaps: !!map, }); const messages = extractor.extractMessages(filename); if (messages.length > 0) { options?.messageHandler(messages); } }