@formatjs/cli-lib 8.7.10 → 8.7.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { extname, resolve } from "path";
|
|
|
7
7
|
import { pathToFileURL } from "url";
|
|
8
8
|
import { createRequire } from "module";
|
|
9
9
|
import { readFile } from "fs/promises";
|
|
10
|
-
import
|
|
10
|
+
import glob from "fast-glob";
|
|
11
11
|
//#region \0rolldown/runtime.js
|
|
12
12
|
var __defProp = Object.defineProperty;
|
|
13
13
|
var __exportAll = (all, no_symbols) => {
|
|
@@ -238,7 +238,7 @@ function extractWithNative(inputFiles, opts = {}) {
|
|
|
238
238
|
//#endregion
|
|
239
239
|
//#region packages/cli-lib/extract.ts
|
|
240
240
|
const stringify$1 = stringifyNs.default || stringifyNs;
|
|
241
|
-
const BUILTIN_FORMATTERS$1 = new Set([
|
|
241
|
+
const BUILTIN_FORMATTERS$1 = /* @__PURE__ */ new Set([
|
|
242
242
|
"default",
|
|
243
243
|
"simple",
|
|
244
244
|
"transifex",
|
|
@@ -246,7 +246,7 @@ const BUILTIN_FORMATTERS$1 = new Set([
|
|
|
246
246
|
"lokalise",
|
|
247
247
|
"crowdin"
|
|
248
248
|
]);
|
|
249
|
-
const NATIVE_SUPPORTED_EXTENSIONS = new Set([
|
|
249
|
+
const NATIVE_SUPPORTED_EXTENSIONS = /* @__PURE__ */ new Set([
|
|
250
250
|
".cjs",
|
|
251
251
|
".js",
|
|
252
252
|
".jsx",
|
|
@@ -305,7 +305,7 @@ async function processFile(source, fn, { idInterpolationPattern, ...opts }) {
|
|
|
305
305
|
parseFile(source, fn, scriptParseFn);
|
|
306
306
|
} else if (fn.endsWith(".svelte")) {
|
|
307
307
|
debug("Processing %s using svelte extractor", fn);
|
|
308
|
-
const { parseFile } = await import("./svelte_extractor-
|
|
308
|
+
const { parseFile } = await import("./svelte_extractor-CDMsbv9D.js");
|
|
309
309
|
parseFile(source, fn, scriptParseFn);
|
|
310
310
|
} else if (fn.endsWith(".hbs")) {
|
|
311
311
|
debug("Processing %s using hbs extractor", fn);
|
|
@@ -435,7 +435,7 @@ const dynamicImport = new Function("specifier", "return import(specifier)");
|
|
|
435
435
|
const globSync = glob.sync;
|
|
436
436
|
const stringify = stringifyNs.default || stringifyNs;
|
|
437
437
|
const CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING = "Passing a custom formatter file to --format during compilation is deprecated and will be removed in a future release. Prefer a built-in formatter name or pre-process translation files before running formatjs compile.";
|
|
438
|
-
const BUILTIN_FORMATTERS = new Set([
|
|
438
|
+
const BUILTIN_FORMATTERS = /* @__PURE__ */ new Set([
|
|
439
439
|
"default",
|
|
440
440
|
"simple",
|
|
441
441
|
"transifex",
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["format","compile","format","compile","format","compile","format","compile","format","compile","compile","defaultFormatter","transifex","smartling","simple","lokalise","crowdin","require","stringify","BUILTIN_FORMATTERS","isBuiltinFormatter"],"sources":["../formatters/crowdin.ts","../formatters/default.ts","../formatters/lokalise.ts","../formatters/simple.ts","../formatters/smartling.ts","../formatters/transifex.ts","../formatters/index.ts","../native.ts","../extract.ts","../compile.ts"],"sourcesContent":["import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type CrowdinJson = Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<CrowdinJson> = msgs => {\n const results: CrowdinJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<CrowdinJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {type MessageDescriptor} from '@formatjs/ts-transformer'\nexport type FormatFn<T = Record<string, MessageDescriptor>> = (\n msgs: Record<string, MessageDescriptor>\n) => T\n\nexport type CompileFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => Record<string, string>\n\nexport type SerializeFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => string\n\nexport const format: FormatFn = msgs => msgs\n\nexport const compile: CompileFn = msgs => {\n const results: Record<string, string> = {}\n for (const k in msgs) {\n results[k] = msgs[k].defaultMessage!\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n translation: string\n notes?: string\n context?: string\n limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n translation: msg.defaultMessage!,\n notes:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.translation\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type PhraseJson = Record<string, string>\n\nexport const format: FormatFn<PhraseJson> = msgs => {\n return Object.keys(msgs).reduce((all: PhraseJson, k) => {\n all[k] = msgs[k].defaultMessage!\n return all\n }, {})\n}\n\nexport const compile: CompileFn<PhraseJson> = msgs => msgs\n","import type {Comparator} from 'json-stable-stringify'\nimport {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport interface SmartlingDirectives {\n translate_paths: [\n {\n path: string\n key: string\n instruction: string\n },\n ]\n variants_enabled: boolean\n string_format: string\n [k: string]: any\n}\n\nexport type SmartlingJson = {\n smartling: SmartlingDirectives\n} & Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<SmartlingJson> = msgs => {\n const results: SmartlingJson = {\n smartling: {\n translate_paths: [\n {\n path: '*/message',\n key: '{*}/message',\n instruction: '*/description',\n },\n ],\n variants_enabled: true,\n string_format: 'icu',\n },\n } as any\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compareMessages: Comparator = (el1, el2) => {\n // `smartling` has to be the 1st key\n if (el1.key === 'smartling') {\n return -1\n }\n if (el2.key === 'smartling') {\n return 1\n }\n return el1.key < el2.key ? -1 : el1.key === el2.key ? 0 : 1\n}\n\nexport const compile: CompileFn<SmartlingJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n string: string\n developer_comment?: string\n context?: string\n character_limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n string: msg.defaultMessage!,\n developer_comment:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.string\n }\n return results\n}\n","import type {Comparator} from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport * as crowdin from '#packages/cli-lib/formatters/crowdin.js'\nimport * as defaultFormatter from '#packages/cli-lib/formatters/default.js'\nimport {\n type CompileFn,\n type FormatFn,\n type SerializeFn,\n} from '#packages/cli-lib/formatters/default.js'\nimport * as lokalise from '#packages/cli-lib/formatters/lokalise.js'\nimport * as simple from '#packages/cli-lib/formatters/simple.js'\nimport * as smartling from '#packages/cli-lib/formatters/smartling.js'\nimport * as transifex from '#packages/cli-lib/formatters/transifex.js'\n\nexport interface Formatter<T> {\n serialize?: SerializeFn<T>\n format: FormatFn<T>\n compile: CompileFn<T>\n compareMessages?: Comparator\n}\n\nexport async function resolveBuiltinFormatter(\n format?: string | Formatter<unknown>\n): Promise<any> {\n if (!format) {\n return defaultFormatter\n }\n if (typeof format !== 'string') {\n return format\n }\n switch (format) {\n case 'transifex':\n return transifex\n case 'smartling':\n return smartling\n case 'simple':\n return simple\n case 'lokalise':\n return lokalise\n case 'crowdin':\n return crowdin\n }\n try {\n // eslint-disable-next-line import/dynamic-import-chunkname\n return import(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n","import {createRequire} from 'module'\n\nconst require = createRequire(import.meta.url)\n\nconst NATIVE_PACKAGES: Record<string, string[]> = {\n 'darwin-arm64': ['@formatjs/cli-native-darwin-arm64'],\n 'linux-arm64': [\n '@formatjs/cli-native-linux-arm64',\n '@formatjs/cli-native-linux-arm64-musl',\n ],\n 'linux-x64': [\n '@formatjs/cli-native-linux-x64',\n '@formatjs/cli-native-linux-x64-musl',\n ],\n 'win32-x64': ['@formatjs/cli-native-win32-x64'],\n}\n\nexport interface NativeCompileOptions {\n ast?: boolean\n format?: string\n ignoreTag?: boolean\n pseudoLocale?: string\n skipErrors?: boolean\n followLinks?: boolean\n}\n\nexport interface NativeCompileMessage {\n id: string\n message: string\n sourceFile: string\n}\n\nexport interface NativeExtractOptions {\n additionalComponentNames?: string[]\n additionalFunctionNames?: string[]\n extractSourceLocation?: boolean\n flatten?: boolean\n followLinks?: boolean\n format?: string\n idInterpolationPattern?: string\n ignore?: string[]\n inFile?: string\n pragma?: string\n preserveWhitespace?: boolean\n throws?: boolean\n}\n\nexport interface NativeBinding {\n compile(inputFiles: string[], opts?: NativeCompileOptions): string\n compileMessages(\n messages: NativeCompileMessage[],\n opts?: NativeCompileOptions\n ): string\n extract(inputFiles: string[], opts?: NativeExtractOptions): string\n supportedBuiltinFormatters(): string[]\n}\n\nlet nativeBinding: NativeBinding | null | undefined\n\nexport function getInstalledNativePackageCandidates(\n candidates: readonly string[],\n canResolve = (candidate: string): boolean => {\n try {\n require.resolve(candidate)\n return true\n } catch {\n return false\n }\n }\n): string[] {\n return candidates.filter(canResolve)\n}\n\nexport function getNativePackageCandidates(\n platform: NodeJS.Platform = process.platform,\n arch: string = process.arch\n): string[] {\n const platformArch = `${platform}-${arch}`\n return NATIVE_PACKAGES[platformArch] || []\n}\n\nexport function loadNative(): NativeBinding {\n if (nativeBinding !== undefined) {\n if (nativeBinding) {\n return nativeBinding\n }\n throw new Error('Native @formatjs/cli-lib binding is unavailable')\n }\n\n const overridePath = process.env.FORMATJS_CLI_LIB_NATIVE_PATH\n const packageCandidates = getNativePackageCandidates()\n const installedPackageCandidates =\n getInstalledNativePackageCandidates(packageCandidates)\n const candidates = [\n overridePath,\n ...(installedPackageCandidates.length\n ? installedPackageCandidates\n : packageCandidates),\n ].filter(Boolean) as string[]\n const loadErrors: string[] = []\n\n for (const candidate of candidates) {\n try {\n nativeBinding = require(candidate) as NativeBinding\n return nativeBinding\n } catch (e) {\n loadErrors.push(`${candidate}: ${(e as Error).message}`)\n }\n }\n\n nativeBinding = null\n throw new Error(\n `Native @formatjs/cli-lib binding is unavailable.\\n${loadErrors.join('\\n')}`\n )\n}\n\nexport function compileWithNative(\n inputFiles: string[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compile(inputFiles, {\n ast: opts.ast,\n format: opts.format,\n followLinks: opts.followLinks,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function compileMessagesWithNative(\n messages: NativeCompileMessage[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compileMessages(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function extractWithNative(\n inputFiles: readonly string[],\n opts: NativeExtractOptions = {}\n): string {\n const native = loadNative()\n return native.extract([...inputFiles], {\n additionalComponentNames: opts.additionalComponentNames,\n additionalFunctionNames: opts.additionalFunctionNames,\n extractSourceLocation: opts.extractSourceLocation,\n flatten: opts.flatten,\n followLinks: opts.followLinks,\n format: opts.format,\n idInterpolationPattern: opts.idInterpolationPattern,\n ignore: opts.ignore,\n inFile: opts.inFile,\n pragma: opts.pragma,\n preserveWhitespace: opts.preserveWhitespace,\n throws: opts.throws,\n })\n}\n","import {\n type MessageDescriptor,\n type Opts,\n interpolateName,\n} from '@formatjs/ts-transformer'\nimport {existsSync} from 'fs'\nimport {outputFile} from 'fs-extra/esm'\nimport {\n debug,\n getStdinAsString,\n warn,\n writeStdout,\n} from '#packages/cli-lib/console_utils.js'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {extname} from 'path'\n\nimport {\n type Formatter,\n resolveBuiltinFormatter,\n} from '#packages/cli-lib/formatters/index.js'\nimport {extractWithNative} from '#packages/cli-lib/native.js'\nimport {parseScript} from '#packages/cli-lib/parse_script.js'\nimport {readFile} from 'fs/promises'\n\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\nconst NATIVE_SUPPORTED_EXTENSIONS = new Set([\n '.cjs',\n '.js',\n '.jsx',\n '.mjs',\n '.ts',\n '.tsx',\n])\nexport interface ExtractionResult<M = Record<string, string>> {\n /**\n * List of extracted messages\n */\n messages: MessageDescriptor[]\n /**\n * Metadata extracted w/ `pragma`\n */\n meta?: M\n}\n\nexport interface ExtractedMessageDescriptor extends MessageDescriptor {\n /**\n * Line number\n */\n line?: number\n /**\n * Column number\n */\n col?: number\n /**\n * Metadata extracted from pragma\n */\n meta?: Record<string, string>\n}\n\nexport type ExtractCLIOptions = Omit<\n ExtractOpts,\n 'overrideIdFn' | 'onMsgExtracted' | 'onMetaExtracted'\n> & {\n /**\n * Output File\n */\n outFile?: string\n /**\n * Input File\n */\n inFile?: string\n /**\n * Ignore file glob pattern\n */\n ignore?: string[]\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\nexport type ExtractOpts = Opts & {\n /**\n * Whether to throw an error if we had any issues with\n * 1 of the source files\n */\n throws?: boolean\n /**\n * Message ID interpolation pattern\n */\n idInterpolationPattern?: string\n /**\n * Whether we read from stdin instead of a file\n */\n readFromStdin?: boolean\n /**\n * Either path to a formatter file that controls the shape of JSON file from `outFile` or {@link Formatter} object.\n */\n format?: string | Formatter<any>\n /**\n * Whether to hoist selectors & flatten sentences\n */\n flatten?: boolean\n /**\n * An AbortSignal to cancel the extraction\n */\n signal?: AbortSignal\n} & Pick<Opts, 'onMsgExtracted' | 'onMetaExtracted'>\n\nfunction calculateLineColFromOffset(\n text: string,\n start?: number\n): Pick<ExtractedMessageDescriptor, 'line' | 'col'> {\n if (!start) {\n return {line: 1, col: 1}\n }\n const chunk = text.slice(0, start)\n const lines = chunk.split('\\n')\n const lastLine = lines[lines.length - 1]\n return {line: lines.length, col: lastLine.length}\n}\n\nfunction isBuiltinFormatter(\n format: ExtractOpts['format']\n): format is string | undefined {\n return (\n !format || (typeof format === 'string' && BUILTIN_FORMATTERS.has(format))\n )\n}\n\nfunction canExtractWithNative(\n files: readonly string[],\n opts: Omit<ExtractOpts, 'readFromStdin' | 'signal' | 'throws'>,\n readFromStdin: boolean | undefined\n): boolean {\n return (\n !readFromStdin &&\n typeof opts.idInterpolationPattern === 'string' &&\n !opts.ast &&\n !opts.extractSourceLocation &&\n !opts.onMetaExtracted &&\n !opts.onMsgError &&\n !opts.onMsgExtracted &&\n !opts.overrideIdFn &&\n !opts.pragma &&\n !opts.removeDefaultMessage &&\n isBuiltinFormatter(opts.format) &&\n files.every(\n file =>\n existsSync(file) &&\n NATIVE_SUPPORTED_EXTENSIONS.has(extname(file).toLowerCase())\n )\n )\n}\n\nasync function processFile(\n source: string,\n fn: string,\n {idInterpolationPattern, ...opts}: Opts & {idInterpolationPattern?: string}\n) {\n let messages: ExtractedMessageDescriptor[] = []\n let meta: Record<string, string> | undefined\n\n const onMsgExtracted = opts.onMsgExtracted\n const onMetaExtracted = opts.onMetaExtracted\n\n opts = {\n ...opts,\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n onMsgExtracted(filePath, msgs) {\n if (opts.extractSourceLocation) {\n msgs = msgs.map(msg => ({\n ...msg,\n ...calculateLineColFromOffset(source, msg.start),\n }))\n }\n messages = messages.concat(msgs)\n\n if (onMsgExtracted) {\n onMsgExtracted(filePath, msgs)\n }\n },\n onMetaExtracted(filePath, m) {\n meta = m\n\n if (onMetaExtracted) {\n onMetaExtracted(filePath, m)\n }\n },\n }\n\n if (!opts.overrideIdFn && idInterpolationPattern) {\n opts = {\n ...opts,\n overrideIdFn: (id, defaultMessage, description, fileName) =>\n id ||\n interpolateName(\n {\n resourcePath: fileName,\n } as any,\n idInterpolationPattern,\n {\n content: description\n ? `${defaultMessage}#${\n typeof description === 'string'\n ? description\n : stringify(description)\n }`\n : defaultMessage,\n }\n ),\n }\n }\n\n debug('Processing opts for %s: %s', fn, opts)\n\n const scriptParseFn = parseScript(opts, fn)\n if (fn.endsWith('.vue')) {\n debug('Processing %s using vue extractor', fn)\n const {parseFile} = await import('./vue_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.svelte')) {\n debug('Processing %s using svelte extractor', fn)\n const {parseFile} = await import('./svelte_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.hbs')) {\n debug('Processing %s using hbs extractor', fn)\n const {parseFile} = await import('./hbs_extractor.js')\n parseFile(source, fn, opts)\n } else if (fn.endsWith('.gts') || fn.endsWith('.gjs')) {\n debug('Processing %s as gts/gjs file', fn)\n const {parseFile} = await import('./gts_extractor.js')\n parseFile(source, fn, opts)\n } else {\n debug('Processing %s using typescript extractor', fn)\n scriptParseFn(source)\n }\n debug('Done extracting %s messages: %s', fn, messages)\n if (meta) {\n debug('Extracted meta:', meta)\n messages.forEach(m => (m.meta = meta))\n }\n return {messages, meta}\n}\n\n/**\n * Extract strings from source files\n * @param files list of files\n * @param extractOpts extract options\n * @returns messages serialized as JSON string since key order\n * matters for some `format`\n */\nexport async function extract(\n files: readonly string[],\n extractOpts: ExtractOpts\n): Promise<string> {\n const {throws, readFromStdin, signal, ...opts} = extractOpts\n // When throws is not explicitly true, we want to collect partial results\n const shouldThrow = throws === true\n // Pass throws option to transformer for per-message error handling\n const optsWithThrows = {\n ...opts,\n throws: shouldThrow,\n onMsgError: !shouldThrow\n ? (_: string, e: Error) => warn(e.message)\n : undefined,\n }\n\n if (!signal?.aborted && canExtractWithNative(files, opts, readFromStdin)) {\n return extractWithNative(files, {\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n additionalFunctionNames: opts.additionalFunctionNames,\n flatten: opts.flatten,\n format: typeof opts.format === 'string' ? opts.format : undefined,\n idInterpolationPattern: opts.idInterpolationPattern,\n preserveWhitespace: opts.preserveWhitespace,\n throws: shouldThrow,\n })\n }\n\n let rawResults: Array<ExtractionResult | undefined> = []\n try {\n if (readFromStdin) {\n debug(`Reading input from stdin`)\n // Read from stdin\n if (process.stdin.isTTY) {\n warn('Reading source file from TTY.')\n }\n const stdinSource = await getStdinAsString()\n rawResults = [await processFile(stdinSource, 'dummy', optsWithThrows)]\n } else {\n // Use Promise.allSettled when throws is not explicitly true to collect partial results\n if (!shouldThrow) {\n const settledResults = await Promise.allSettled(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n rawResults = settledResults.map(result => {\n if (result.status === 'fulfilled') {\n return result.value\n } else {\n warn(String(result.reason))\n return undefined\n }\n })\n } else {\n rawResults = await Promise.all(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n }\n }\n } catch (e) {\n if (shouldThrow) {\n throw e\n } else {\n warn(String(e))\n }\n }\n\n const formatter: Formatter<unknown> = await resolveBuiltinFormatter(\n opts.format\n )\n const extractionResults = rawResults.filter((r): r is ExtractionResult => !!r)\n\n const extractedMessages = new Map<string, MessageDescriptor>()\n\n for (const {messages} of extractionResults) {\n for (const message of messages) {\n const {id, description, defaultMessage} = message\n if (!id) {\n const error = new Error(\n `[FormatJS CLI] Missing message id for message:\n${JSON.stringify(message, undefined, 2)}`\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n continue\n }\n\n if (extractedMessages.has(id)) {\n const existing = extractedMessages.get(id)!\n if (\n stringify(description) !== stringify(existing.description) ||\n defaultMessage !== existing.defaultMessage\n ) {\n const error = new Error(\n `[FormatJS CLI] Duplicate message id: \"${id}\", ` +\n 'but the `description` and/or `defaultMessage` are different.'\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n }\n }\n extractedMessages.set(id, message)\n }\n }\n const results: Record<string, Omit<MessageDescriptor, 'id'>> = {}\n const messages = Array.from(extractedMessages.values())\n for (const {id, ...msg} of messages) {\n // GH #3537: flatten is now applied during extraction in the babel plugin,\n // so we don't need to apply it again here. The messages are already flattened.\n results[id] = msg\n }\n if (typeof formatter.serialize === 'function') {\n return formatter.serialize(formatter.format(results as any))\n }\n return (\n stringify(formatter.format(results as any), {\n space: 2,\n cmp: formatter.compareMessages || undefined,\n }) ?? ''\n )\n}\n\n/**\n * Extract strings from source files, also writes to a file.\n * @param files list of files\n * @param extractOpts extract options\n * @returns A Promise that resolves if output file was written successfully\n */\nexport default async function extractAndWrite(\n files: readonly string[],\n extractOpts: ExtractCLIOptions\n): Promise<void> {\n const {outFile, ...opts} = extractOpts\n const serializedResult = (await extract(files, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n","import {outputFile} from 'fs-extra/esm'\nimport {readFile} from 'fs/promises'\nimport * as glob from 'fast-glob'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport {debug, warn, writeStdout} from '#packages/cli-lib/console_utils.js'\nimport {type Formatter} from '#packages/cli-lib/formatters/index.js'\nimport {\n type NativeCompileMessage,\n compileMessagesWithNative,\n compileWithNative,\n} from '#packages/cli-lib/native.js'\n\nconst dynamicImport = new Function('specifier', 'return import(specifier)') as (\n specifier: string\n) => Promise<Formatter<unknown>>\nconst globSync = glob.sync\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING =\n 'Passing a custom formatter file to --format during compilation is deprecated and will be removed in a future release. Prefer a built-in formatter name or pre-process translation files before running formatjs compile.'\n\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\n\nexport type PseudoLocale = 'xx-LS' | 'xx-AC' | 'xx-HA' | 'en-XA' | 'en-XB'\n\nexport interface CompileCLIOpts extends Opts {\n /**\n * The target file that contains compiled messages.\n */\n outFile?: string\n}\n\nexport interface Opts {\n /**\n * Whether to compile message into AST instead of just string\n */\n ast?: boolean\n /**\n * Whether to continue compiling messages after encountering an error.\n * Any keys with errors will not be included in the output file.\n */\n skipErrors?: boolean\n /**\n * Built-in formatter name or path to a formatter file that converts\n * <translation_files> to `Record<string, string>` so we can compile.\n * Formatter file paths are deprecated for compilation.\n */\n format?: string | Formatter<unknown>\n /**\n * Whether to compile to pseudo locale\n */\n pseudoLocale?: PseudoLocale\n /**\n * Whether the parser to treat HTML/XML tags as string literal\n * instead of parsing them as tag token.\n * When this is false we only allow simple tags without\n * any attributes\n */\n ignoreTag?: boolean\n /**\n * An AbortSignal to cancel the compilation before invoking native code.\n */\n signal?: AbortSignal\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding.\n * @param inputFiles Input files or glob patterns\n * @param opts Options\n * @returns serialized result in string format\n */\nexport async function compile(\n inputFiles: string[],\n opts: Opts = {}\n): Promise<string> {\n debug('Compiling files:', inputFiles)\n const {\n ast,\n format,\n pseudoLocale,\n skipErrors,\n ignoreTag,\n signal,\n followLinks,\n } = opts\n signal?.throwIfAborted()\n\n if (format && !isBuiltinFormatter(format)) {\n return compileWithCustomFormatter(inputFiles, opts)\n }\n\n return compileWithNative(inputFiles, {\n ast,\n format: typeof format === 'string' ? format : undefined,\n followLinks,\n ignoreTag,\n pseudoLocale,\n skipErrors,\n })\n}\n\nfunction isBuiltinFormatter(\n format: string | Formatter<unknown>\n): format is string {\n return typeof format === 'string' && BUILTIN_FORMATTERS.has(format)\n}\n\nasync function compileWithCustomFormatter(\n inputFiles: string[],\n opts: Opts\n): Promise<string> {\n if (typeof opts.format === 'string') {\n await warn(CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING)\n }\n\n const formatter = await resolveCustomFormatter(opts.format)\n const files = globSync(inputFiles, {\n followSymbolicLinks: opts.followLinks ?? true,\n })\n\n if (!files.length) {\n throw new Error('No translation files found matching the patterns')\n }\n\n const messages: NativeCompileMessage[] = []\n await Promise.all(\n files.map(async file => {\n opts.signal?.throwIfAborted()\n const content = await readFile(file, {\n encoding: 'utf8',\n signal: opts.signal,\n })\n const compiled = formatter.compile(JSON.parse(content))\n for (const id of Object.keys(compiled)) {\n messages.push({\n id,\n message: compiled[id],\n sourceFile: file,\n })\n }\n })\n )\n\n const serialized = compileMessagesWithNative(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n\n if (formatter.compareMessages) {\n return (\n stringify(JSON.parse(serialized), {\n space: 2,\n cmp: formatter.compareMessages,\n }) ?? ''\n )\n }\n\n return serialized\n}\n\nasync function resolveCustomFormatter(\n format: string | Formatter<unknown> | undefined\n): Promise<Formatter<unknown>> {\n if (!format) {\n throw new Error('A custom formatter is required')\n }\n if (typeof format !== 'string') {\n return format\n }\n try {\n return dynamicImport(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding and\n * write output to `outFile` when provided.\n * @param inputFiles Input files or glob patterns\n * @param compileOpts options\n * @returns A `Promise` that resolves if file was written successfully\n */\nexport default async function compileAndWrite(\n inputFiles: string[],\n compileOpts: CompileCLIOpts = {}\n): Promise<void> {\n const {outFile, ...opts} = compileOpts\n const serializedResult = (await compile(inputFiles, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":["format","compile","format","compile","format","compile","format","compile","format","compile","compile","defaultFormatter","transifex","smartling","simple","lokalise","crowdin","require","stringify","BUILTIN_FORMATTERS","isBuiltinFormatter"],"sources":["../formatters/crowdin.ts","../formatters/default.ts","../formatters/lokalise.ts","../formatters/simple.ts","../formatters/smartling.ts","../formatters/transifex.ts","../formatters/index.ts","../native.ts","../extract.ts","../compile.ts"],"sourcesContent":["import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type CrowdinJson = Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<CrowdinJson> = msgs => {\n const results: CrowdinJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<CrowdinJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {type MessageDescriptor} from '@formatjs/ts-transformer'\nexport type FormatFn<T = Record<string, MessageDescriptor>> = (\n msgs: Record<string, MessageDescriptor>\n) => T\n\nexport type CompileFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => Record<string, string>\n\nexport type SerializeFn<T = Record<string, MessageDescriptor>> = (\n msgs: T\n) => string\n\nexport const format: FormatFn = msgs => msgs\n\nexport const compile: CompileFn = msgs => {\n const results: Record<string, string> = {}\n for (const k in msgs) {\n results[k] = msgs[k].defaultMessage!\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n translation: string\n notes?: string\n context?: string\n limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n translation: msg.defaultMessage!,\n notes:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.translation\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type PhraseJson = Record<string, string>\n\nexport const format: FormatFn<PhraseJson> = msgs => {\n return Object.keys(msgs).reduce((all: PhraseJson, k) => {\n all[k] = msgs[k].defaultMessage!\n return all\n }, {})\n}\n\nexport const compile: CompileFn<PhraseJson> = msgs => msgs\n","import type {Comparator} from 'json-stable-stringify'\nimport {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport interface SmartlingDirectives {\n translate_paths: [\n {\n path: string\n key: string\n instruction: string\n },\n ]\n variants_enabled: boolean\n string_format: string\n [k: string]: any\n}\n\nexport type SmartlingJson = {\n smartling: SmartlingDirectives\n} & Record<\n string,\n {\n message: string\n description?: string\n }\n>\n\nexport const format: FormatFn<SmartlingJson> = msgs => {\n const results: SmartlingJson = {\n smartling: {\n translate_paths: [\n {\n path: '*/message',\n key: '{*}/message',\n instruction: '*/description',\n },\n ],\n variants_enabled: true,\n string_format: 'icu',\n },\n } as any\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n message: msg.defaultMessage!,\n description:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compareMessages: Comparator = (el1, el2) => {\n // `smartling` has to be the 1st key\n if (el1.key === 'smartling') {\n return -1\n }\n if (el2.key === 'smartling') {\n return 1\n }\n return el1.key < el2.key ? -1 : el1.key === el2.key ? 0 : 1\n}\n\nexport const compile: CompileFn<SmartlingJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n if (id === 'smartling') {\n continue\n }\n results[id] = msg.message\n }\n return results\n}\n","import {\n type CompileFn,\n type FormatFn,\n} from '#packages/cli-lib/formatters/default.js'\n\nexport type StructuredJson = Record<\n string,\n {\n string: string\n developer_comment?: string\n context?: string\n character_limit?: string\n }\n>\n\nexport const format: FormatFn<StructuredJson> = msgs => {\n const results: StructuredJson = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = {\n string: msg.defaultMessage!,\n developer_comment:\n typeof msg.description === 'string'\n ? msg.description\n : JSON.stringify(msg.description),\n }\n }\n return results\n}\n\nexport const compile: CompileFn<StructuredJson> = msgs => {\n const results: Record<string, string> = {}\n for (const [id, msg] of Object.entries(msgs)) {\n results[id] = msg.string\n }\n return results\n}\n","import type {Comparator} from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport * as crowdin from '#packages/cli-lib/formatters/crowdin.js'\nimport * as defaultFormatter from '#packages/cli-lib/formatters/default.js'\nimport {\n type CompileFn,\n type FormatFn,\n type SerializeFn,\n} from '#packages/cli-lib/formatters/default.js'\nimport * as lokalise from '#packages/cli-lib/formatters/lokalise.js'\nimport * as simple from '#packages/cli-lib/formatters/simple.js'\nimport * as smartling from '#packages/cli-lib/formatters/smartling.js'\nimport * as transifex from '#packages/cli-lib/formatters/transifex.js'\n\nexport interface Formatter<T> {\n serialize?: SerializeFn<T>\n format: FormatFn<T>\n compile: CompileFn<T>\n compareMessages?: Comparator\n}\n\nexport async function resolveBuiltinFormatter(\n format?: string | Formatter<unknown>\n): Promise<any> {\n if (!format) {\n return defaultFormatter\n }\n if (typeof format !== 'string') {\n return format\n }\n switch (format) {\n case 'transifex':\n return transifex\n case 'smartling':\n return smartling\n case 'simple':\n return simple\n case 'lokalise':\n return lokalise\n case 'crowdin':\n return crowdin\n }\n try {\n // eslint-disable-next-line import/dynamic-import-chunkname\n return import(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n","import {createRequire} from 'module'\n\nconst require = createRequire(import.meta.url)\n\nconst NATIVE_PACKAGES: Record<string, string[]> = {\n 'darwin-arm64': ['@formatjs/cli-native-darwin-arm64'],\n 'linux-arm64': [\n '@formatjs/cli-native-linux-arm64',\n '@formatjs/cli-native-linux-arm64-musl',\n ],\n 'linux-x64': [\n '@formatjs/cli-native-linux-x64',\n '@formatjs/cli-native-linux-x64-musl',\n ],\n 'win32-x64': ['@formatjs/cli-native-win32-x64'],\n}\n\nexport interface NativeCompileOptions {\n ast?: boolean\n format?: string\n ignoreTag?: boolean\n pseudoLocale?: string\n skipErrors?: boolean\n followLinks?: boolean\n}\n\nexport interface NativeCompileMessage {\n id: string\n message: string\n sourceFile: string\n}\n\nexport interface NativeExtractOptions {\n additionalComponentNames?: string[]\n additionalFunctionNames?: string[]\n extractSourceLocation?: boolean\n flatten?: boolean\n followLinks?: boolean\n format?: string\n idInterpolationPattern?: string\n ignore?: string[]\n inFile?: string\n pragma?: string\n preserveWhitespace?: boolean\n throws?: boolean\n}\n\nexport interface NativeBinding {\n compile(inputFiles: string[], opts?: NativeCompileOptions): string\n compileMessages(\n messages: NativeCompileMessage[],\n opts?: NativeCompileOptions\n ): string\n extract(inputFiles: string[], opts?: NativeExtractOptions): string\n supportedBuiltinFormatters(): string[]\n}\n\nlet nativeBinding: NativeBinding | null | undefined\n\nexport function getInstalledNativePackageCandidates(\n candidates: readonly string[],\n canResolve = (candidate: string): boolean => {\n try {\n require.resolve(candidate)\n return true\n } catch {\n return false\n }\n }\n): string[] {\n return candidates.filter(canResolve)\n}\n\nexport function getNativePackageCandidates(\n platform: NodeJS.Platform = process.platform,\n arch: string = process.arch\n): string[] {\n const platformArch = `${platform}-${arch}`\n return NATIVE_PACKAGES[platformArch] || []\n}\n\nexport function loadNative(): NativeBinding {\n if (nativeBinding !== undefined) {\n if (nativeBinding) {\n return nativeBinding\n }\n throw new Error('Native @formatjs/cli-lib binding is unavailable')\n }\n\n const overridePath = process.env.FORMATJS_CLI_LIB_NATIVE_PATH\n const packageCandidates = getNativePackageCandidates()\n const installedPackageCandidates =\n getInstalledNativePackageCandidates(packageCandidates)\n const candidates = [\n overridePath,\n ...(installedPackageCandidates.length\n ? installedPackageCandidates\n : packageCandidates),\n ].filter(Boolean) as string[]\n const loadErrors: string[] = []\n\n for (const candidate of candidates) {\n try {\n nativeBinding = require(candidate) as NativeBinding\n return nativeBinding\n } catch (e) {\n loadErrors.push(`${candidate}: ${(e as Error).message}`)\n }\n }\n\n nativeBinding = null\n throw new Error(\n `Native @formatjs/cli-lib binding is unavailable.\\n${loadErrors.join('\\n')}`\n )\n}\n\nexport function compileWithNative(\n inputFiles: string[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compile(inputFiles, {\n ast: opts.ast,\n format: opts.format,\n followLinks: opts.followLinks,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function compileMessagesWithNative(\n messages: NativeCompileMessage[],\n opts: NativeCompileOptions = {}\n): string {\n const native = loadNative()\n return native.compileMessages(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n}\n\nexport function extractWithNative(\n inputFiles: readonly string[],\n opts: NativeExtractOptions = {}\n): string {\n const native = loadNative()\n return native.extract([...inputFiles], {\n additionalComponentNames: opts.additionalComponentNames,\n additionalFunctionNames: opts.additionalFunctionNames,\n extractSourceLocation: opts.extractSourceLocation,\n flatten: opts.flatten,\n followLinks: opts.followLinks,\n format: opts.format,\n idInterpolationPattern: opts.idInterpolationPattern,\n ignore: opts.ignore,\n inFile: opts.inFile,\n pragma: opts.pragma,\n preserveWhitespace: opts.preserveWhitespace,\n throws: opts.throws,\n })\n}\n","import {\n type MessageDescriptor,\n type Opts,\n interpolateName,\n} from '@formatjs/ts-transformer'\nimport {existsSync} from 'fs'\nimport {outputFile} from 'fs-extra/esm'\nimport {\n debug,\n getStdinAsString,\n warn,\n writeStdout,\n} from '#packages/cli-lib/console_utils.js'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {extname} from 'path'\n\nimport {\n type Formatter,\n resolveBuiltinFormatter,\n} from '#packages/cli-lib/formatters/index.js'\nimport {extractWithNative} from '#packages/cli-lib/native.js'\nimport {parseScript} from '#packages/cli-lib/parse_script.js'\nimport {readFile} from 'fs/promises'\n\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\nconst NATIVE_SUPPORTED_EXTENSIONS = new Set([\n '.cjs',\n '.js',\n '.jsx',\n '.mjs',\n '.ts',\n '.tsx',\n])\nexport interface ExtractionResult<M = Record<string, string>> {\n /**\n * List of extracted messages\n */\n messages: MessageDescriptor[]\n /**\n * Metadata extracted w/ `pragma`\n */\n meta?: M\n}\n\nexport interface ExtractedMessageDescriptor extends MessageDescriptor {\n /**\n * Line number\n */\n line?: number\n /**\n * Column number\n */\n col?: number\n /**\n * Metadata extracted from pragma\n */\n meta?: Record<string, string>\n}\n\nexport type ExtractCLIOptions = Omit<\n ExtractOpts,\n 'overrideIdFn' | 'onMsgExtracted' | 'onMetaExtracted'\n> & {\n /**\n * Output File\n */\n outFile?: string\n /**\n * Input File\n */\n inFile?: string\n /**\n * Ignore file glob pattern\n */\n ignore?: string[]\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\nexport type ExtractOpts = Opts & {\n /**\n * Whether to throw an error if we had any issues with\n * 1 of the source files\n */\n throws?: boolean\n /**\n * Message ID interpolation pattern\n */\n idInterpolationPattern?: string\n /**\n * Whether we read from stdin instead of a file\n */\n readFromStdin?: boolean\n /**\n * Either path to a formatter file that controls the shape of JSON file from `outFile` or {@link Formatter} object.\n */\n format?: string | Formatter<any>\n /**\n * Whether to hoist selectors & flatten sentences\n */\n flatten?: boolean\n /**\n * An AbortSignal to cancel the extraction\n */\n signal?: AbortSignal\n} & Pick<Opts, 'onMsgExtracted' | 'onMetaExtracted'>\n\nfunction calculateLineColFromOffset(\n text: string,\n start?: number\n): Pick<ExtractedMessageDescriptor, 'line' | 'col'> {\n if (!start) {\n return {line: 1, col: 1}\n }\n const chunk = text.slice(0, start)\n const lines = chunk.split('\\n')\n const lastLine = lines[lines.length - 1]\n return {line: lines.length, col: lastLine.length}\n}\n\nfunction isBuiltinFormatter(\n format: ExtractOpts['format']\n): format is string | undefined {\n return (\n !format || (typeof format === 'string' && BUILTIN_FORMATTERS.has(format))\n )\n}\n\nfunction canExtractWithNative(\n files: readonly string[],\n opts: Omit<ExtractOpts, 'readFromStdin' | 'signal' | 'throws'>,\n readFromStdin: boolean | undefined\n): boolean {\n return (\n !readFromStdin &&\n typeof opts.idInterpolationPattern === 'string' &&\n !opts.ast &&\n !opts.extractSourceLocation &&\n !opts.onMetaExtracted &&\n !opts.onMsgError &&\n !opts.onMsgExtracted &&\n !opts.overrideIdFn &&\n !opts.pragma &&\n !opts.removeDefaultMessage &&\n isBuiltinFormatter(opts.format) &&\n files.every(\n file =>\n existsSync(file) &&\n NATIVE_SUPPORTED_EXTENSIONS.has(extname(file).toLowerCase())\n )\n )\n}\n\nasync function processFile(\n source: string,\n fn: string,\n {idInterpolationPattern, ...opts}: Opts & {idInterpolationPattern?: string}\n) {\n let messages: ExtractedMessageDescriptor[] = []\n let meta: Record<string, string> | undefined\n\n const onMsgExtracted = opts.onMsgExtracted\n const onMetaExtracted = opts.onMetaExtracted\n\n opts = {\n ...opts,\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n onMsgExtracted(filePath, msgs) {\n if (opts.extractSourceLocation) {\n msgs = msgs.map(msg => ({\n ...msg,\n ...calculateLineColFromOffset(source, msg.start),\n }))\n }\n messages = messages.concat(msgs)\n\n if (onMsgExtracted) {\n onMsgExtracted(filePath, msgs)\n }\n },\n onMetaExtracted(filePath, m) {\n meta = m\n\n if (onMetaExtracted) {\n onMetaExtracted(filePath, m)\n }\n },\n }\n\n if (!opts.overrideIdFn && idInterpolationPattern) {\n opts = {\n ...opts,\n overrideIdFn: (id, defaultMessage, description, fileName) =>\n id ||\n interpolateName(\n {\n resourcePath: fileName,\n } as any,\n idInterpolationPattern,\n {\n content: description\n ? `${defaultMessage}#${\n typeof description === 'string'\n ? description\n : stringify(description)\n }`\n : defaultMessage,\n }\n ),\n }\n }\n\n debug('Processing opts for %s: %s', fn, opts)\n\n const scriptParseFn = parseScript(opts, fn)\n if (fn.endsWith('.vue')) {\n debug('Processing %s using vue extractor', fn)\n const {parseFile} = await import('./vue_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.svelte')) {\n debug('Processing %s using svelte extractor', fn)\n const {parseFile} = await import('./svelte_extractor.js')\n parseFile(source, fn, scriptParseFn)\n } else if (fn.endsWith('.hbs')) {\n debug('Processing %s using hbs extractor', fn)\n const {parseFile} = await import('./hbs_extractor.js')\n parseFile(source, fn, opts)\n } else if (fn.endsWith('.gts') || fn.endsWith('.gjs')) {\n debug('Processing %s as gts/gjs file', fn)\n const {parseFile} = await import('./gts_extractor.js')\n parseFile(source, fn, opts)\n } else {\n debug('Processing %s using typescript extractor', fn)\n scriptParseFn(source)\n }\n debug('Done extracting %s messages: %s', fn, messages)\n if (meta) {\n debug('Extracted meta:', meta)\n messages.forEach(m => (m.meta = meta))\n }\n return {messages, meta}\n}\n\n/**\n * Extract strings from source files\n * @param files list of files\n * @param extractOpts extract options\n * @returns messages serialized as JSON string since key order\n * matters for some `format`\n */\nexport async function extract(\n files: readonly string[],\n extractOpts: ExtractOpts\n): Promise<string> {\n const {throws, readFromStdin, signal, ...opts} = extractOpts\n // When throws is not explicitly true, we want to collect partial results\n const shouldThrow = throws === true\n // Pass throws option to transformer for per-message error handling\n const optsWithThrows = {\n ...opts,\n throws: shouldThrow,\n onMsgError: !shouldThrow\n ? (_: string, e: Error) => warn(e.message)\n : undefined,\n }\n\n if (!signal?.aborted && canExtractWithNative(files, opts, readFromStdin)) {\n return extractWithNative(files, {\n additionalComponentNames: [\n '$formatMessage',\n ...(opts.additionalComponentNames || []),\n ],\n additionalFunctionNames: opts.additionalFunctionNames,\n flatten: opts.flatten,\n format: typeof opts.format === 'string' ? opts.format : undefined,\n idInterpolationPattern: opts.idInterpolationPattern,\n preserveWhitespace: opts.preserveWhitespace,\n throws: shouldThrow,\n })\n }\n\n let rawResults: Array<ExtractionResult | undefined> = []\n try {\n if (readFromStdin) {\n debug(`Reading input from stdin`)\n // Read from stdin\n if (process.stdin.isTTY) {\n warn('Reading source file from TTY.')\n }\n const stdinSource = await getStdinAsString()\n rawResults = [await processFile(stdinSource, 'dummy', optsWithThrows)]\n } else {\n // Use Promise.allSettled when throws is not explicitly true to collect partial results\n if (!shouldThrow) {\n const settledResults = await Promise.allSettled(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n rawResults = settledResults.map(result => {\n if (result.status === 'fulfilled') {\n return result.value\n } else {\n warn(String(result.reason))\n return undefined\n }\n })\n } else {\n rawResults = await Promise.all(\n files.map(async fn => {\n debug('Extracting file:', fn)\n const source = await readFile(fn, {encoding: 'utf8', signal})\n return processFile(source, fn, optsWithThrows)\n })\n )\n }\n }\n } catch (e) {\n if (shouldThrow) {\n throw e\n } else {\n warn(String(e))\n }\n }\n\n const formatter: Formatter<unknown> = await resolveBuiltinFormatter(\n opts.format\n )\n const extractionResults = rawResults.filter((r): r is ExtractionResult => !!r)\n\n const extractedMessages = new Map<string, MessageDescriptor>()\n\n for (const {messages} of extractionResults) {\n for (const message of messages) {\n const {id, description, defaultMessage} = message\n if (!id) {\n const error = new Error(\n `[FormatJS CLI] Missing message id for message:\n${JSON.stringify(message, undefined, 2)}`\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n continue\n }\n\n if (extractedMessages.has(id)) {\n const existing = extractedMessages.get(id)!\n if (\n stringify(description) !== stringify(existing.description) ||\n defaultMessage !== existing.defaultMessage\n ) {\n const error = new Error(\n `[FormatJS CLI] Duplicate message id: \"${id}\", ` +\n 'but the `description` and/or `defaultMessage` are different.'\n )\n if (throws) {\n throw error\n } else {\n warn(error.message)\n }\n }\n }\n extractedMessages.set(id, message)\n }\n }\n const results: Record<string, Omit<MessageDescriptor, 'id'>> = {}\n const messages = Array.from(extractedMessages.values())\n for (const {id, ...msg} of messages) {\n // GH #3537: flatten is now applied during extraction in the babel plugin,\n // so we don't need to apply it again here. The messages are already flattened.\n results[id] = msg\n }\n if (typeof formatter.serialize === 'function') {\n return formatter.serialize(formatter.format(results as any))\n }\n return (\n stringify(formatter.format(results as any), {\n space: 2,\n cmp: formatter.compareMessages || undefined,\n }) ?? ''\n )\n}\n\n/**\n * Extract strings from source files, also writes to a file.\n * @param files list of files\n * @param extractOpts extract options\n * @returns A Promise that resolves if output file was written successfully\n */\nexport default async function extractAndWrite(\n files: readonly string[],\n extractOpts: ExtractCLIOptions\n): Promise<void> {\n const {outFile, ...opts} = extractOpts\n const serializedResult = (await extract(files, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n","import {outputFile} from 'fs-extra/esm'\nimport {readFile} from 'fs/promises'\nimport glob from 'fast-glob'\nimport * as stringifyNs from 'json-stable-stringify'\nimport {resolve} from 'path'\nimport {pathToFileURL} from 'url'\nimport {debug, warn, writeStdout} from '#packages/cli-lib/console_utils.js'\nimport {type Formatter} from '#packages/cli-lib/formatters/index.js'\nimport {\n type NativeCompileMessage,\n compileMessagesWithNative,\n compileWithNative,\n} from '#packages/cli-lib/native.js'\n\nconst dynamicImport = new Function('specifier', 'return import(specifier)') as (\n specifier: string\n) => Promise<Formatter<unknown>>\nconst globSync = glob.sync\nconst stringify = (stringifyNs as any).default || stringifyNs\nconst CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING =\n 'Passing a custom formatter file to --format during compilation is deprecated and will be removed in a future release. Prefer a built-in formatter name or pre-process translation files before running formatjs compile.'\n\nconst BUILTIN_FORMATTERS = new Set([\n 'default',\n 'simple',\n 'transifex',\n 'smartling',\n 'lokalise',\n 'crowdin',\n])\n\nexport type PseudoLocale = 'xx-LS' | 'xx-AC' | 'xx-HA' | 'en-XA' | 'en-XB'\n\nexport interface CompileCLIOpts extends Opts {\n /**\n * The target file that contains compiled messages.\n */\n outFile?: string\n}\n\nexport interface Opts {\n /**\n * Whether to compile message into AST instead of just string\n */\n ast?: boolean\n /**\n * Whether to continue compiling messages after encountering an error.\n * Any keys with errors will not be included in the output file.\n */\n skipErrors?: boolean\n /**\n * Built-in formatter name or path to a formatter file that converts\n * <translation_files> to `Record<string, string>` so we can compile.\n * Formatter file paths are deprecated for compilation.\n */\n format?: string | Formatter<unknown>\n /**\n * Whether to compile to pseudo locale\n */\n pseudoLocale?: PseudoLocale\n /**\n * Whether the parser to treat HTML/XML tags as string literal\n * instead of parsing them as tag token.\n * When this is false we only allow simple tags without\n * any attributes\n */\n ignoreTag?: boolean\n /**\n * An AbortSignal to cancel the compilation before invoking native code.\n */\n signal?: AbortSignal\n /**\n * Whether to follow symbolic links when traversing directories.\n * Defaults to true for compatibility with pnpm symlinked node_modules.\n */\n followLinks?: boolean\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding.\n * @param inputFiles Input files or glob patterns\n * @param opts Options\n * @returns serialized result in string format\n */\nexport async function compile(\n inputFiles: string[],\n opts: Opts = {}\n): Promise<string> {\n debug('Compiling files:', inputFiles)\n const {\n ast,\n format,\n pseudoLocale,\n skipErrors,\n ignoreTag,\n signal,\n followLinks,\n } = opts\n signal?.throwIfAborted()\n\n if (format && !isBuiltinFormatter(format)) {\n return compileWithCustomFormatter(inputFiles, opts)\n }\n\n return compileWithNative(inputFiles, {\n ast,\n format: typeof format === 'string' ? format : undefined,\n followLinks,\n ignoreTag,\n pseudoLocale,\n skipErrors,\n })\n}\n\nfunction isBuiltinFormatter(\n format: string | Formatter<unknown>\n): format is string {\n return typeof format === 'string' && BUILTIN_FORMATTERS.has(format)\n}\n\nasync function compileWithCustomFormatter(\n inputFiles: string[],\n opts: Opts\n): Promise<string> {\n if (typeof opts.format === 'string') {\n await warn(CUSTOM_FORMATTER_FILE_DEPRECATION_WARNING)\n }\n\n const formatter = await resolveCustomFormatter(opts.format)\n const files = globSync(inputFiles, {\n followSymbolicLinks: opts.followLinks ?? true,\n })\n\n if (!files.length) {\n throw new Error('No translation files found matching the patterns')\n }\n\n const messages: NativeCompileMessage[] = []\n await Promise.all(\n files.map(async file => {\n opts.signal?.throwIfAborted()\n const content = await readFile(file, {\n encoding: 'utf8',\n signal: opts.signal,\n })\n const compiled = formatter.compile(JSON.parse(content))\n for (const id of Object.keys(compiled)) {\n messages.push({\n id,\n message: compiled[id],\n sourceFile: file,\n })\n }\n })\n )\n\n const serialized = compileMessagesWithNative(messages, {\n ast: opts.ast,\n ignoreTag: opts.ignoreTag,\n pseudoLocale: opts.pseudoLocale,\n skipErrors: opts.skipErrors,\n })\n\n if (formatter.compareMessages) {\n return (\n stringify(JSON.parse(serialized), {\n space: 2,\n cmp: formatter.compareMessages,\n }) ?? ''\n )\n }\n\n return serialized\n}\n\nasync function resolveCustomFormatter(\n format: string | Formatter<unknown> | undefined\n): Promise<Formatter<unknown>> {\n if (!format) {\n throw new Error('A custom formatter is required')\n }\n if (typeof format !== 'string') {\n return format\n }\n try {\n return dynamicImport(pathToFileURL(resolve(process.cwd(), format)).href)\n } catch (e) {\n console.error(`Cannot resolve formatter ${format}`)\n throw e\n }\n}\n\n/**\n * Compile extracted translation files with the native formatjs CLI binding and\n * write output to `outFile` when provided.\n * @param inputFiles Input files or glob patterns\n * @param compileOpts options\n * @returns A `Promise` that resolves if file was written successfully\n */\nexport default async function compileAndWrite(\n inputFiles: string[],\n compileOpts: CompileCLIOpts = {}\n): Promise<void> {\n const {outFile, ...opts} = compileOpts\n const serializedResult = (await compile(inputFiles, opts)) + '\\n'\n if (outFile) {\n debug('Writing output file:', outFile)\n return outputFile(outFile, serializedResult)\n }\n await writeStdout(serializedResult)\n}\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/cli-lib",
|
|
3
|
-
"version": "8.7.
|
|
3
|
+
"version": "8.7.12",
|
|
4
4
|
"description": "Lib for CLI for formatjs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -23,7 +23,10 @@
|
|
|
23
23
|
"bugs": "https://github.com/formatjs/formatjs/issues",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"author": "Linjie Ding <linjie@airtable.com>",
|
|
26
|
-
"repository":
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "formatjs/formatjs.git"
|
|
29
|
+
},
|
|
27
30
|
"type": "module",
|
|
28
31
|
"main": "index.js",
|
|
29
32
|
"types": "index.d.ts",
|
|
@@ -32,8 +35,8 @@
|
|
|
32
35
|
},
|
|
33
36
|
"dependencies": {
|
|
34
37
|
"@babel/types": "^7.29.0",
|
|
35
|
-
"@formatjs/icu-messageformat-parser": "3.5.
|
|
36
|
-
"@formatjs/ts-transformer": "4.4.
|
|
38
|
+
"@formatjs/icu-messageformat-parser": "3.5.13",
|
|
39
|
+
"@formatjs/ts-transformer": "4.4.15",
|
|
37
40
|
"@types/fs-extra": "^11.0.4",
|
|
38
41
|
"@types/node": "22 || 24",
|
|
39
42
|
"commander": "^14.0.0",
|
|
@@ -77,12 +80,12 @@
|
|
|
77
80
|
}
|
|
78
81
|
},
|
|
79
82
|
"optionalDependencies": {
|
|
80
|
-
"@formatjs/cli-native-darwin-arm64": "1.1.
|
|
81
|
-
"@formatjs/cli-native-linux-arm64": "1.2.
|
|
82
|
-
"@formatjs/cli-native-linux-arm64-musl": "1.0.
|
|
83
|
-
"@formatjs/cli-native-linux-x64": "1.1.
|
|
84
|
-
"@formatjs/cli-native-linux-x64-musl": "1.0.
|
|
85
|
-
"@formatjs/cli-native-win32-x64": "1.1.
|
|
83
|
+
"@formatjs/cli-native-darwin-arm64": "1.1.6",
|
|
84
|
+
"@formatjs/cli-native-linux-arm64": "1.2.6",
|
|
85
|
+
"@formatjs/cli-native-linux-arm64-musl": "1.0.4",
|
|
86
|
+
"@formatjs/cli-native-linux-x64": "1.1.6",
|
|
87
|
+
"@formatjs/cli-native-linux-x64-musl": "1.0.4",
|
|
88
|
+
"@formatjs/cli-native-win32-x64": "1.1.7"
|
|
86
89
|
},
|
|
87
90
|
"engines": {
|
|
88
91
|
"node": ">= 20.12.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { parse } from "svelte/compiler";
|
|
2
2
|
//#region packages/cli-lib/svelte_extractor.ts
|
|
3
|
-
const MESSAGE_DESCRIPTOR_PROPS = new Set([
|
|
3
|
+
const MESSAGE_DESCRIPTOR_PROPS = /* @__PURE__ */ new Set([
|
|
4
4
|
"id",
|
|
5
5
|
"defaultMessage",
|
|
6
6
|
"description"
|
|
@@ -139,4 +139,4 @@ function parseFile(source, filename, parseScriptFn) {
|
|
|
139
139
|
//#endregion
|
|
140
140
|
export { parseFile };
|
|
141
141
|
|
|
142
|
-
//# sourceMappingURL=svelte_extractor-
|
|
142
|
+
//# sourceMappingURL=svelte_extractor-CDMsbv9D.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"svelte_extractor-kQTSfy8K.js","names":[],"sources":["../svelte_extractor.ts"],"sourcesContent":["import {parse} from 'svelte/compiler'\n\nexport type ScriptParseFn = (source: string) => void\n\ninterface SvelteNode {\n type: string\n start: number\n end: number\n [key: string]: any\n}\n\nconst MESSAGE_DESCRIPTOR_PROPS = new Set([\n 'id',\n 'defaultMessage',\n 'description',\n])\n\nfunction isValidIdentifier(name: string): boolean {\n return /^[$A-Z_a-z][$\\w]*$/.test(name)\n}\n\nfunction walkFragment(\n fragment: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!fragment || !fragment.nodes) {\n return\n }\n for (const node of fragment.nodes) {\n walkNode(node, source, parseScriptFn)\n }\n}\n\nfunction extractExpression(\n expression: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!expression || expression.start == null || expression.end == null) {\n return\n }\n const content = source.slice(expression.start, expression.end)\n try {\n parseScriptFn(`(${content})`)\n } catch (e) {\n console.warn(\n `Failed to parse \"${content}\". Ignore this if content has no extractable message`,\n e\n )\n }\n}\n\nfunction getStringAttributeValue(value: SvelteNode): string {\n return value.data ?? value.raw ?? ''\n}\n\nfunction getAttributeExpression(\n attr: SvelteNode,\n source: string\n): string | undefined {\n if (attr.value === true || attr.value == null) {\n return undefined\n }\n\n if (!Array.isArray(attr.value)) {\n if (attr.value.type === 'ExpressionTag') {\n return source.slice(\n attr.value.expression.start,\n attr.value.expression.end\n )\n }\n return undefined\n }\n\n if (!attr.value.length) {\n return '\"\"'\n }\n\n if (attr.value.length === 1) {\n const [value] = attr.value\n if (value.type === 'ExpressionTag') {\n return source.slice(value.expression.start, value.expression.end)\n }\n return JSON.stringify(getStringAttributeValue(value))\n }\n\n let staticValue = ''\n for (const value of attr.value) {\n if (value.type === 'ExpressionTag') {\n return undefined\n }\n staticValue += getStringAttributeValue(value)\n }\n return JSON.stringify(staticValue)\n}\n\nfunction extractMessageComponent(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (typeof node.name !== 'string' || !isValidIdentifier(node.name)) {\n return\n }\n\n const props: string[] = []\n for (const attr of node.attributes || []) {\n if (\n attr.type !== 'Attribute' ||\n typeof attr.name !== 'string' ||\n !MESSAGE_DESCRIPTOR_PROPS.has(attr.name)\n ) {\n continue\n }\n\n const expression = getAttributeExpression(attr, source)\n if (expression != null) {\n props.push(`${attr.name}: ${expression}`)\n }\n }\n\n if (!props.length) {\n return\n }\n\n try {\n parseScriptFn(`${node.name}({${props.join(', ')}})`)\n } catch (e) {\n console.warn(\n `Failed to parse ${node.name} message component. Ignore this if component has no extractable message`,\n e\n )\n }\n}\n\nfunction walkNode(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n switch (node.type) {\n case 'ExpressionTag':\n extractExpression(node.expression, source, parseScriptFn)\n break\n\n case 'ConstTag':\n // {@const x = expr} — the declaration contains the expression\n if (node.declaration) {\n const content = source.slice(\n node.declaration.start,\n node.declaration.end\n )\n try {\n parseScriptFn(content)\n } catch (e) {\n console.warn(\n `Failed to parse const declaration. Ignore this if content has no extractable message`,\n e\n )\n }\n }\n break\n\n case 'IfBlock':\n extractExpression(node.test, source, parseScriptFn)\n walkFragment(node.consequent, source, parseScriptFn)\n walkFragment(node.alternate, source, parseScriptFn)\n break\n\n case 'EachBlock':\n extractExpression(node.expression, source, parseScriptFn)\n if (node.key) {\n extractExpression(node.key, source, parseScriptFn)\n }\n walkFragment(node.body, source, parseScriptFn)\n walkFragment(node.fallback, source, parseScriptFn)\n break\n\n case 'AwaitBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.pending, source, parseScriptFn)\n walkFragment(node.then, source, parseScriptFn)\n walkFragment(node.catch, source, parseScriptFn)\n break\n\n case 'KeyBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.fragment, source, parseScriptFn)\n break\n\n case 'SnippetBlock':\n walkFragment(node.body, source, parseScriptFn)\n break\n\n case 'RegularElement':\n case 'Component':\n case 'SvelteComponent':\n case 'SvelteElement':\n case 'SvelteHead':\n case 'SvelteBody':\n case 'SvelteWindow':\n case 'SvelteDocument':\n case 'SlotElement':\n case 'SvelteSelf':\n case 'SvelteFragment':\n if (node.type === 'Component') {\n extractMessageComponent(node, source, parseScriptFn)\n }\n // Process attributes\n if (node.attributes) {\n for (const attr of node.attributes) {\n if (attr.type === 'Attribute') {\n if (Array.isArray(attr.value)) {\n for (const v of attr.value) {\n if (v.type === 'ExpressionTag') {\n extractExpression(v.expression, source, parseScriptFn)\n }\n }\n } else if (\n typeof attr.value === 'object' &&\n attr.value !== null &&\n attr.value.type === 'ExpressionTag'\n ) {\n extractExpression(attr.value.expression, source, parseScriptFn)\n }\n } else if (attr.type === 'SpreadAttribute') {\n extractExpression(attr.expression, source, parseScriptFn)\n } else if (attr.expression) {\n // Directive nodes (OnDirective, BindDirective, etc.)\n extractExpression(attr.expression, source, parseScriptFn)\n }\n }\n }\n // Process children\n walkFragment(node.fragment, source, parseScriptFn)\n break\n }\n}\n\nexport function parseFile(\n source: string,\n filename: string,\n parseScriptFn: ScriptParseFn\n): void {\n const ast = parse(source, {modern: true, filename})\n\n // Walk the template fragment\n walkFragment(ast.fragment as unknown as SvelteNode, source, parseScriptFn)\n\n // Process <script> block\n if (ast.instance) {\n const program = ast.instance.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n\n // Process <script context=\"module\"> / <script module> block\n if (ast.module) {\n const program = ast.module.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"svelte_extractor-CDMsbv9D.js","names":[],"sources":["../svelte_extractor.ts"],"sourcesContent":["import {parse} from 'svelte/compiler'\n\nexport type ScriptParseFn = (source: string) => void\n\ninterface SvelteNode {\n type: string\n start: number\n end: number\n [key: string]: any\n}\n\nconst MESSAGE_DESCRIPTOR_PROPS = new Set([\n 'id',\n 'defaultMessage',\n 'description',\n])\n\nfunction isValidIdentifier(name: string): boolean {\n return /^[$A-Z_a-z][$\\w]*$/.test(name)\n}\n\nfunction walkFragment(\n fragment: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!fragment || !fragment.nodes) {\n return\n }\n for (const node of fragment.nodes) {\n walkNode(node, source, parseScriptFn)\n }\n}\n\nfunction extractExpression(\n expression: SvelteNode | null | undefined,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (!expression || expression.start == null || expression.end == null) {\n return\n }\n const content = source.slice(expression.start, expression.end)\n try {\n parseScriptFn(`(${content})`)\n } catch (e) {\n console.warn(\n `Failed to parse \"${content}\". Ignore this if content has no extractable message`,\n e\n )\n }\n}\n\nfunction getStringAttributeValue(value: SvelteNode): string {\n return value.data ?? value.raw ?? ''\n}\n\nfunction getAttributeExpression(\n attr: SvelteNode,\n source: string\n): string | undefined {\n if (attr.value === true || attr.value == null) {\n return undefined\n }\n\n if (!Array.isArray(attr.value)) {\n if (attr.value.type === 'ExpressionTag') {\n return source.slice(\n attr.value.expression.start,\n attr.value.expression.end\n )\n }\n return undefined\n }\n\n if (!attr.value.length) {\n return '\"\"'\n }\n\n if (attr.value.length === 1) {\n const [value] = attr.value\n if (value.type === 'ExpressionTag') {\n return source.slice(value.expression.start, value.expression.end)\n }\n return JSON.stringify(getStringAttributeValue(value))\n }\n\n let staticValue = ''\n for (const value of attr.value) {\n if (value.type === 'ExpressionTag') {\n return undefined\n }\n staticValue += getStringAttributeValue(value)\n }\n return JSON.stringify(staticValue)\n}\n\nfunction extractMessageComponent(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n if (typeof node.name !== 'string' || !isValidIdentifier(node.name)) {\n return\n }\n\n const props: string[] = []\n for (const attr of node.attributes || []) {\n if (\n attr.type !== 'Attribute' ||\n typeof attr.name !== 'string' ||\n !MESSAGE_DESCRIPTOR_PROPS.has(attr.name)\n ) {\n continue\n }\n\n const expression = getAttributeExpression(attr, source)\n if (expression != null) {\n props.push(`${attr.name}: ${expression}`)\n }\n }\n\n if (!props.length) {\n return\n }\n\n try {\n parseScriptFn(`${node.name}({${props.join(', ')}})`)\n } catch (e) {\n console.warn(\n `Failed to parse ${node.name} message component. Ignore this if component has no extractable message`,\n e\n )\n }\n}\n\nfunction walkNode(\n node: SvelteNode,\n source: string,\n parseScriptFn: ScriptParseFn\n): void {\n switch (node.type) {\n case 'ExpressionTag':\n extractExpression(node.expression, source, parseScriptFn)\n break\n\n case 'ConstTag':\n // {@const x = expr} — the declaration contains the expression\n if (node.declaration) {\n const content = source.slice(\n node.declaration.start,\n node.declaration.end\n )\n try {\n parseScriptFn(content)\n } catch (e) {\n console.warn(\n `Failed to parse const declaration. Ignore this if content has no extractable message`,\n e\n )\n }\n }\n break\n\n case 'IfBlock':\n extractExpression(node.test, source, parseScriptFn)\n walkFragment(node.consequent, source, parseScriptFn)\n walkFragment(node.alternate, source, parseScriptFn)\n break\n\n case 'EachBlock':\n extractExpression(node.expression, source, parseScriptFn)\n if (node.key) {\n extractExpression(node.key, source, parseScriptFn)\n }\n walkFragment(node.body, source, parseScriptFn)\n walkFragment(node.fallback, source, parseScriptFn)\n break\n\n case 'AwaitBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.pending, source, parseScriptFn)\n walkFragment(node.then, source, parseScriptFn)\n walkFragment(node.catch, source, parseScriptFn)\n break\n\n case 'KeyBlock':\n extractExpression(node.expression, source, parseScriptFn)\n walkFragment(node.fragment, source, parseScriptFn)\n break\n\n case 'SnippetBlock':\n walkFragment(node.body, source, parseScriptFn)\n break\n\n case 'RegularElement':\n case 'Component':\n case 'SvelteComponent':\n case 'SvelteElement':\n case 'SvelteHead':\n case 'SvelteBody':\n case 'SvelteWindow':\n case 'SvelteDocument':\n case 'SlotElement':\n case 'SvelteSelf':\n case 'SvelteFragment':\n if (node.type === 'Component') {\n extractMessageComponent(node, source, parseScriptFn)\n }\n // Process attributes\n if (node.attributes) {\n for (const attr of node.attributes) {\n if (attr.type === 'Attribute') {\n if (Array.isArray(attr.value)) {\n for (const v of attr.value) {\n if (v.type === 'ExpressionTag') {\n extractExpression(v.expression, source, parseScriptFn)\n }\n }\n } else if (\n typeof attr.value === 'object' &&\n attr.value !== null &&\n attr.value.type === 'ExpressionTag'\n ) {\n extractExpression(attr.value.expression, source, parseScriptFn)\n }\n } else if (attr.type === 'SpreadAttribute') {\n extractExpression(attr.expression, source, parseScriptFn)\n } else if (attr.expression) {\n // Directive nodes (OnDirective, BindDirective, etc.)\n extractExpression(attr.expression, source, parseScriptFn)\n }\n }\n }\n // Process children\n walkFragment(node.fragment, source, parseScriptFn)\n break\n }\n}\n\nexport function parseFile(\n source: string,\n filename: string,\n parseScriptFn: ScriptParseFn\n): void {\n const ast = parse(source, {modern: true, filename})\n\n // Walk the template fragment\n walkFragment(ast.fragment as unknown as SvelteNode, source, parseScriptFn)\n\n // Process <script> block\n if (ast.instance) {\n const program = ast.instance.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n\n // Process <script context=\"module\"> / <script module> block\n if (ast.module) {\n const program = ast.module.content as unknown as SvelteNode\n parseScriptFn(source.slice(program.start, program.end))\n }\n}\n"],"mappings":"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"}
|