core-base.prod.cjs 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578
  1. /*!
  2. * core-base v9.13.1
  3. * (c) 2024 kazuya kawaguchi
  4. * Released under the MIT License.
  5. */
  6. 'use strict';
  7. var messageCompiler = require('@intlify/message-compiler');
  8. var shared = require('@intlify/shared');
  9. const pathStateMachine = [];
  10. pathStateMachine[0 /* States.BEFORE_PATH */] = {
  11. ["w" /* PathCharTypes.WORKSPACE */]: [0 /* States.BEFORE_PATH */],
  12. ["i" /* PathCharTypes.IDENT */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],
  13. ["[" /* PathCharTypes.LEFT_BRACKET */]: [4 /* States.IN_SUB_PATH */],
  14. ["o" /* PathCharTypes.END_OF_FAIL */]: [7 /* States.AFTER_PATH */]
  15. };
  16. pathStateMachine[1 /* States.IN_PATH */] = {
  17. ["w" /* PathCharTypes.WORKSPACE */]: [1 /* States.IN_PATH */],
  18. ["." /* PathCharTypes.DOT */]: [2 /* States.BEFORE_IDENT */],
  19. ["[" /* PathCharTypes.LEFT_BRACKET */]: [4 /* States.IN_SUB_PATH */],
  20. ["o" /* PathCharTypes.END_OF_FAIL */]: [7 /* States.AFTER_PATH */]
  21. };
  22. pathStateMachine[2 /* States.BEFORE_IDENT */] = {
  23. ["w" /* PathCharTypes.WORKSPACE */]: [2 /* States.BEFORE_IDENT */],
  24. ["i" /* PathCharTypes.IDENT */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],
  25. ["0" /* PathCharTypes.ZERO */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */]
  26. };
  27. pathStateMachine[3 /* States.IN_IDENT */] = {
  28. ["i" /* PathCharTypes.IDENT */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],
  29. ["0" /* PathCharTypes.ZERO */]: [3 /* States.IN_IDENT */, 0 /* Actions.APPEND */],
  30. ["w" /* PathCharTypes.WORKSPACE */]: [1 /* States.IN_PATH */, 1 /* Actions.PUSH */],
  31. ["." /* PathCharTypes.DOT */]: [2 /* States.BEFORE_IDENT */, 1 /* Actions.PUSH */],
  32. ["[" /* PathCharTypes.LEFT_BRACKET */]: [4 /* States.IN_SUB_PATH */, 1 /* Actions.PUSH */],
  33. ["o" /* PathCharTypes.END_OF_FAIL */]: [7 /* States.AFTER_PATH */, 1 /* Actions.PUSH */]
  34. };
  35. pathStateMachine[4 /* States.IN_SUB_PATH */] = {
  36. ["'" /* PathCharTypes.SINGLE_QUOTE */]: [5 /* States.IN_SINGLE_QUOTE */, 0 /* Actions.APPEND */],
  37. ["\"" /* PathCharTypes.DOUBLE_QUOTE */]: [6 /* States.IN_DOUBLE_QUOTE */, 0 /* Actions.APPEND */],
  38. ["[" /* PathCharTypes.LEFT_BRACKET */]: [
  39. 4 /* States.IN_SUB_PATH */,
  40. 2 /* Actions.INC_SUB_PATH_DEPTH */
  41. ],
  42. ["]" /* PathCharTypes.RIGHT_BRACKET */]: [1 /* States.IN_PATH */, 3 /* Actions.PUSH_SUB_PATH */],
  43. ["o" /* PathCharTypes.END_OF_FAIL */]: 8 /* States.ERROR */,
  44. ["l" /* PathCharTypes.ELSE */]: [4 /* States.IN_SUB_PATH */, 0 /* Actions.APPEND */]
  45. };
  46. pathStateMachine[5 /* States.IN_SINGLE_QUOTE */] = {
  47. ["'" /* PathCharTypes.SINGLE_QUOTE */]: [4 /* States.IN_SUB_PATH */, 0 /* Actions.APPEND */],
  48. ["o" /* PathCharTypes.END_OF_FAIL */]: 8 /* States.ERROR */,
  49. ["l" /* PathCharTypes.ELSE */]: [5 /* States.IN_SINGLE_QUOTE */, 0 /* Actions.APPEND */]
  50. };
  51. pathStateMachine[6 /* States.IN_DOUBLE_QUOTE */] = {
  52. ["\"" /* PathCharTypes.DOUBLE_QUOTE */]: [4 /* States.IN_SUB_PATH */, 0 /* Actions.APPEND */],
  53. ["o" /* PathCharTypes.END_OF_FAIL */]: 8 /* States.ERROR */,
  54. ["l" /* PathCharTypes.ELSE */]: [6 /* States.IN_DOUBLE_QUOTE */, 0 /* Actions.APPEND */]
  55. };
  56. /**
  57. * Check if an expression is a literal value.
  58. */
  59. const literalValueRE = /^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;
  60. function isLiteral(exp) {
  61. return literalValueRE.test(exp);
  62. }
  63. /**
  64. * Strip quotes from a string
  65. */
  66. function stripQuotes(str) {
  67. const a = str.charCodeAt(0);
  68. const b = str.charCodeAt(str.length - 1);
  69. return a === b && (a === 0x22 || a === 0x27) ? str.slice(1, -1) : str;
  70. }
  71. /**
  72. * Determine the type of a character in a keypath.
  73. */
  74. function getPathCharType(ch) {
  75. if (ch === undefined || ch === null) {
  76. return "o" /* PathCharTypes.END_OF_FAIL */;
  77. }
  78. const code = ch.charCodeAt(0);
  79. switch (code) {
  80. case 0x5b: // [
  81. case 0x5d: // ]
  82. case 0x2e: // .
  83. case 0x22: // "
  84. case 0x27: // '
  85. return ch;
  86. case 0x5f: // _
  87. case 0x24: // $
  88. case 0x2d: // -
  89. return "i" /* PathCharTypes.IDENT */;
  90. case 0x09: // Tab (HT)
  91. case 0x0a: // Newline (LF)
  92. case 0x0d: // Return (CR)
  93. case 0xa0: // No-break space (NBSP)
  94. case 0xfeff: // Byte Order Mark (BOM)
  95. case 0x2028: // Line Separator (LS)
  96. case 0x2029: // Paragraph Separator (PS)
  97. return "w" /* PathCharTypes.WORKSPACE */;
  98. }
  99. return "i" /* PathCharTypes.IDENT */;
  100. }
  101. /**
  102. * Format a subPath, return its plain form if it is
  103. * a literal string or number. Otherwise prepend the
  104. * dynamic indicator (*).
  105. */
  106. function formatSubPath(path) {
  107. const trimmed = path.trim();
  108. // invalid leading 0
  109. if (path.charAt(0) === '0' && isNaN(parseInt(path))) {
  110. return false;
  111. }
  112. return isLiteral(trimmed)
  113. ? stripQuotes(trimmed)
  114. : "*" /* PathCharTypes.ASTARISK */ + trimmed;
  115. }
  116. /**
  117. * Parse a string path into an array of segments
  118. */
  119. function parse(path) {
  120. const keys = [];
  121. let index = -1;
  122. let mode = 0 /* States.BEFORE_PATH */;
  123. let subPathDepth = 0;
  124. let c;
  125. let key; // eslint-disable-line
  126. let newChar;
  127. let type;
  128. let transition;
  129. let action;
  130. let typeMap;
  131. const actions = [];
  132. actions[0 /* Actions.APPEND */] = () => {
  133. if (key === undefined) {
  134. key = newChar;
  135. }
  136. else {
  137. key += newChar;
  138. }
  139. };
  140. actions[1 /* Actions.PUSH */] = () => {
  141. if (key !== undefined) {
  142. keys.push(key);
  143. key = undefined;
  144. }
  145. };
  146. actions[2 /* Actions.INC_SUB_PATH_DEPTH */] = () => {
  147. actions[0 /* Actions.APPEND */]();
  148. subPathDepth++;
  149. };
  150. actions[3 /* Actions.PUSH_SUB_PATH */] = () => {
  151. if (subPathDepth > 0) {
  152. subPathDepth--;
  153. mode = 4 /* States.IN_SUB_PATH */;
  154. actions[0 /* Actions.APPEND */]();
  155. }
  156. else {
  157. subPathDepth = 0;
  158. if (key === undefined) {
  159. return false;
  160. }
  161. key = formatSubPath(key);
  162. if (key === false) {
  163. return false;
  164. }
  165. else {
  166. actions[1 /* Actions.PUSH */]();
  167. }
  168. }
  169. };
  170. function maybeUnescapeQuote() {
  171. const nextChar = path[index + 1];
  172. if ((mode === 5 /* States.IN_SINGLE_QUOTE */ &&
  173. nextChar === "'" /* PathCharTypes.SINGLE_QUOTE */) ||
  174. (mode === 6 /* States.IN_DOUBLE_QUOTE */ &&
  175. nextChar === "\"" /* PathCharTypes.DOUBLE_QUOTE */)) {
  176. index++;
  177. newChar = '\\' + nextChar;
  178. actions[0 /* Actions.APPEND */]();
  179. return true;
  180. }
  181. }
  182. while (mode !== null) {
  183. index++;
  184. c = path[index];
  185. if (c === '\\' && maybeUnescapeQuote()) {
  186. continue;
  187. }
  188. type = getPathCharType(c);
  189. typeMap = pathStateMachine[mode];
  190. transition = typeMap[type] || typeMap["l" /* PathCharTypes.ELSE */] || 8 /* States.ERROR */;
  191. // check parse error
  192. if (transition === 8 /* States.ERROR */) {
  193. return;
  194. }
  195. mode = transition[0];
  196. if (transition[1] !== undefined) {
  197. action = actions[transition[1]];
  198. if (action) {
  199. newChar = c;
  200. if (action() === false) {
  201. return;
  202. }
  203. }
  204. }
  205. // check parse finish
  206. if (mode === 7 /* States.AFTER_PATH */) {
  207. return keys;
  208. }
  209. }
  210. }
  211. // path token cache
  212. const cache = new Map();
  213. /**
  214. * key-value message resolver
  215. *
  216. * @remarks
  217. * Resolves messages with the key-value structure. Note that messages with a hierarchical structure such as objects cannot be resolved
  218. *
  219. * @param obj - A target object to be resolved with path
  220. * @param path - A {@link Path | path} to resolve the value of message
  221. *
  222. * @returns A resolved {@link PathValue | path value}
  223. *
  224. * @VueI18nGeneral
  225. */
  226. function resolveWithKeyValue(obj, path) {
  227. return shared.isObject(obj) ? obj[path] : null;
  228. }
  229. /**
  230. * message resolver
  231. *
  232. * @remarks
  233. * Resolves messages. messages with a hierarchical structure such as objects can be resolved. This resolver is used in VueI18n as default.
  234. *
  235. * @param obj - A target object to be resolved with path
  236. * @param path - A {@link Path | path} to resolve the value of message
  237. *
  238. * @returns A resolved {@link PathValue | path value}
  239. *
  240. * @VueI18nGeneral
  241. */
  242. function resolveValue(obj, path) {
  243. // check object
  244. if (!shared.isObject(obj)) {
  245. return null;
  246. }
  247. // parse path
  248. let hit = cache.get(path);
  249. if (!hit) {
  250. hit = parse(path);
  251. if (hit) {
  252. cache.set(path, hit);
  253. }
  254. }
  255. // check hit
  256. if (!hit) {
  257. return null;
  258. }
  259. // resolve path value
  260. const len = hit.length;
  261. let last = obj;
  262. let i = 0;
  263. while (i < len) {
  264. const val = last[hit[i]];
  265. if (val === undefined) {
  266. return null;
  267. }
  268. if (shared.isFunction(last)) {
  269. return null;
  270. }
  271. last = val;
  272. i++;
  273. }
  274. return last;
  275. }
  276. const DEFAULT_MODIFIER = (str) => str;
  277. const DEFAULT_MESSAGE = (ctx) => ''; // eslint-disable-line
  278. const DEFAULT_MESSAGE_DATA_TYPE = 'text';
  279. const DEFAULT_NORMALIZE = (values) => values.length === 0 ? '' : shared.join(values);
  280. const DEFAULT_INTERPOLATE = shared.toDisplayString;
  281. function pluralDefault(choice, choicesLength) {
  282. choice = Math.abs(choice);
  283. if (choicesLength === 2) {
  284. // prettier-ignore
  285. return choice
  286. ? choice > 1
  287. ? 1
  288. : 0
  289. : 1;
  290. }
  291. return choice ? Math.min(choice, 2) : 0;
  292. }
  293. function getPluralIndex(options) {
  294. // prettier-ignore
  295. const index = shared.isNumber(options.pluralIndex)
  296. ? options.pluralIndex
  297. : -1;
  298. // prettier-ignore
  299. return options.named && (shared.isNumber(options.named.count) || shared.isNumber(options.named.n))
  300. ? shared.isNumber(options.named.count)
  301. ? options.named.count
  302. : shared.isNumber(options.named.n)
  303. ? options.named.n
  304. : index
  305. : index;
  306. }
  307. function normalizeNamed(pluralIndex, props) {
  308. if (!props.count) {
  309. props.count = pluralIndex;
  310. }
  311. if (!props.n) {
  312. props.n = pluralIndex;
  313. }
  314. }
  315. function createMessageContext(options = {}) {
  316. const locale = options.locale;
  317. const pluralIndex = getPluralIndex(options);
  318. const pluralRule = shared.isObject(options.pluralRules) &&
  319. shared.isString(locale) &&
  320. shared.isFunction(options.pluralRules[locale])
  321. ? options.pluralRules[locale]
  322. : pluralDefault;
  323. const orgPluralRule = shared.isObject(options.pluralRules) &&
  324. shared.isString(locale) &&
  325. shared.isFunction(options.pluralRules[locale])
  326. ? pluralDefault
  327. : undefined;
  328. const plural = (messages) => {
  329. return messages[pluralRule(pluralIndex, messages.length, orgPluralRule)];
  330. };
  331. const _list = options.list || [];
  332. const list = (index) => _list[index];
  333. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  334. const _named = options.named || {};
  335. shared.isNumber(options.pluralIndex) && normalizeNamed(pluralIndex, _named);
  336. const named = (key) => _named[key];
  337. function message(key) {
  338. // prettier-ignore
  339. const msg = shared.isFunction(options.messages)
  340. ? options.messages(key)
  341. : shared.isObject(options.messages)
  342. ? options.messages[key]
  343. : false;
  344. return !msg
  345. ? options.parent
  346. ? options.parent.message(key) // resolve from parent messages
  347. : DEFAULT_MESSAGE
  348. : msg;
  349. }
  350. const _modifier = (name) => options.modifiers
  351. ? options.modifiers[name]
  352. : DEFAULT_MODIFIER;
  353. const normalize = shared.isPlainObject(options.processor) && shared.isFunction(options.processor.normalize)
  354. ? options.processor.normalize
  355. : DEFAULT_NORMALIZE;
  356. const interpolate = shared.isPlainObject(options.processor) &&
  357. shared.isFunction(options.processor.interpolate)
  358. ? options.processor.interpolate
  359. : DEFAULT_INTERPOLATE;
  360. const type = shared.isPlainObject(options.processor) && shared.isString(options.processor.type)
  361. ? options.processor.type
  362. : DEFAULT_MESSAGE_DATA_TYPE;
  363. const linked = (key, ...args) => {
  364. const [arg1, arg2] = args;
  365. let type = 'text';
  366. let modifier = '';
  367. if (args.length === 1) {
  368. if (shared.isObject(arg1)) {
  369. modifier = arg1.modifier || modifier;
  370. type = arg1.type || type;
  371. }
  372. else if (shared.isString(arg1)) {
  373. modifier = arg1 || modifier;
  374. }
  375. }
  376. else if (args.length === 2) {
  377. if (shared.isString(arg1)) {
  378. modifier = arg1 || modifier;
  379. }
  380. if (shared.isString(arg2)) {
  381. type = arg2 || type;
  382. }
  383. }
  384. const ret = message(key)(ctx);
  385. const msg =
  386. // The message in vnode resolved with linked are returned as an array by processor.nomalize
  387. type === 'vnode' && shared.isArray(ret) && modifier
  388. ? ret[0]
  389. : ret;
  390. return modifier ? _modifier(modifier)(msg, type) : msg;
  391. };
  392. const ctx = {
  393. ["list" /* HelperNameMap.LIST */]: list,
  394. ["named" /* HelperNameMap.NAMED */]: named,
  395. ["plural" /* HelperNameMap.PLURAL */]: plural,
  396. ["linked" /* HelperNameMap.LINKED */]: linked,
  397. ["message" /* HelperNameMap.MESSAGE */]: message,
  398. ["type" /* HelperNameMap.TYPE */]: type,
  399. ["interpolate" /* HelperNameMap.INTERPOLATE */]: interpolate,
  400. ["normalize" /* HelperNameMap.NORMALIZE */]: normalize,
  401. ["values" /* HelperNameMap.VALUES */]: shared.assign({}, _list, _named)
  402. };
  403. return ctx;
  404. }
  405. let devtools = null;
  406. function setDevToolsHook(hook) {
  407. devtools = hook;
  408. }
  409. function getDevToolsHook() {
  410. return devtools;
  411. }
  412. function initI18nDevTools(i18n, version, meta) {
  413. // TODO: queue if devtools is undefined
  414. devtools &&
  415. devtools.emit("i18n:init" /* IntlifyDevToolsHooks.I18nInit */, {
  416. timestamp: Date.now(),
  417. i18n,
  418. version,
  419. meta
  420. });
  421. }
  422. const translateDevTools = /* #__PURE__*/ createDevToolsHook("function:translate" /* IntlifyDevToolsHooks.FunctionTranslate */);
  423. function createDevToolsHook(hook) {
  424. return (payloads) => devtools && devtools.emit(hook, payloads);
  425. }
  426. const code$1 = messageCompiler.CompileWarnCodes.__EXTEND_POINT__;
  427. const inc$1 = shared.incrementer(code$1);
  428. const CoreWarnCodes = {
  429. NOT_FOUND_KEY: code$1, // 2
  430. FALLBACK_TO_TRANSLATE: inc$1(), // 3
  431. CANNOT_FORMAT_NUMBER: inc$1(), // 4
  432. FALLBACK_TO_NUMBER_FORMAT: inc$1(), // 5
  433. CANNOT_FORMAT_DATE: inc$1(), // 6
  434. FALLBACK_TO_DATE_FORMAT: inc$1(), // 7
  435. EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER: inc$1(), // 8
  436. __EXTEND_POINT__: inc$1() // 9
  437. };
  438. /** @internal */
  439. const warnMessages = {
  440. [CoreWarnCodes.NOT_FOUND_KEY]: `Not found '{key}' key in '{locale}' locale messages.`,
  441. [CoreWarnCodes.FALLBACK_TO_TRANSLATE]: `Fall back to translate '{key}' key with '{target}' locale.`,
  442. [CoreWarnCodes.CANNOT_FORMAT_NUMBER]: `Cannot format a number value due to not supported Intl.NumberFormat.`,
  443. [CoreWarnCodes.FALLBACK_TO_NUMBER_FORMAT]: `Fall back to number format '{key}' key with '{target}' locale.`,
  444. [CoreWarnCodes.CANNOT_FORMAT_DATE]: `Cannot format a date value due to not supported Intl.DateTimeFormat.`,
  445. [CoreWarnCodes.FALLBACK_TO_DATE_FORMAT]: `Fall back to datetime format '{key}' key with '{target}' locale.`,
  446. [CoreWarnCodes.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER]: `This project is using Custom Message Compiler, which is an experimental feature. It may receive breaking changes or be removed in the future.`
  447. };
  448. function getWarnMessage(code, ...args) {
  449. return shared.format(warnMessages[code], ...args);
  450. }
  451. const code = messageCompiler.CompileErrorCodes.__EXTEND_POINT__;
  452. const inc = shared.incrementer(code);
  453. const CoreErrorCodes = {
  454. INVALID_ARGUMENT: code, // 17
  455. INVALID_DATE_ARGUMENT: inc(), // 18
  456. INVALID_ISO_DATE_ARGUMENT: inc(), // 19
  457. NOT_SUPPORT_NON_STRING_MESSAGE: inc(), // 20
  458. NOT_SUPPORT_LOCALE_PROMISE_VALUE: inc(), // 21
  459. NOT_SUPPORT_LOCALE_ASYNC_FUNCTION: inc(), // 22
  460. NOT_SUPPORT_LOCALE_TYPE: inc(), // 23
  461. __EXTEND_POINT__: inc() // 24
  462. };
  463. function createCoreError(code) {
  464. return messageCompiler.createCompileError(code, null, undefined);
  465. }
  466. /** @internal */
  467. ({
  468. [CoreErrorCodes.INVALID_ARGUMENT]: 'Invalid arguments',
  469. [CoreErrorCodes.INVALID_DATE_ARGUMENT]: 'The date provided is an invalid Date object.' +
  470. 'Make sure your Date represents a valid date.',
  471. [CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT]: 'The argument provided is not a valid ISO date string',
  472. [CoreErrorCodes.NOT_SUPPORT_NON_STRING_MESSAGE]: 'Not support non-string message',
  473. [CoreErrorCodes.NOT_SUPPORT_LOCALE_PROMISE_VALUE]: 'cannot support promise value',
  474. [CoreErrorCodes.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION]: 'cannot support async function',
  475. [CoreErrorCodes.NOT_SUPPORT_LOCALE_TYPE]: 'cannot support locale type'
  476. });
  477. /** @internal */
  478. function getLocale(context, options) {
  479. return options.locale != null
  480. ? resolveLocale(options.locale)
  481. : resolveLocale(context.locale);
  482. }
  483. let _resolveLocale;
  484. /** @internal */
  485. function resolveLocale(locale) {
  486. if (shared.isString(locale)) {
  487. return locale;
  488. }
  489. else {
  490. if (shared.isFunction(locale)) {
  491. if (locale.resolvedOnce && _resolveLocale != null) {
  492. return _resolveLocale;
  493. }
  494. else if (locale.constructor.name === 'Function') {
  495. const resolve = locale();
  496. if (shared.isPromise(resolve)) {
  497. throw createCoreError(CoreErrorCodes.NOT_SUPPORT_LOCALE_PROMISE_VALUE);
  498. }
  499. return (_resolveLocale = resolve);
  500. }
  501. else {
  502. throw createCoreError(CoreErrorCodes.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION);
  503. }
  504. }
  505. else {
  506. throw createCoreError(CoreErrorCodes.NOT_SUPPORT_LOCALE_TYPE);
  507. }
  508. }
  509. }
  510. /**
  511. * Fallback with simple implemenation
  512. *
  513. * @remarks
  514. * A fallback locale function implemented with a simple fallback algorithm.
  515. *
  516. * Basically, it returns the value as specified in the `fallbackLocale` props, and is processed with the fallback inside intlify.
  517. *
  518. * @param ctx - A {@link CoreContext | context}
  519. * @param fallback - A {@link FallbackLocale | fallback locale}
  520. * @param start - A starting {@link Locale | locale}
  521. *
  522. * @returns Fallback locales
  523. *
  524. * @VueI18nGeneral
  525. */
  526. function fallbackWithSimple(ctx, fallback, start // eslint-disable-line @typescript-eslint/no-unused-vars
  527. ) {
  528. // prettier-ignore
  529. return [...new Set([
  530. start,
  531. ...(shared.isArray(fallback)
  532. ? fallback
  533. : shared.isObject(fallback)
  534. ? Object.keys(fallback)
  535. : shared.isString(fallback)
  536. ? [fallback]
  537. : [start])
  538. ])];
  539. }
  540. /**
  541. * Fallback with locale chain
  542. *
  543. * @remarks
  544. * A fallback locale function implemented with a fallback chain algorithm. It's used in VueI18n as default.
  545. *
  546. * @param ctx - A {@link CoreContext | context}
  547. * @param fallback - A {@link FallbackLocale | fallback locale}
  548. * @param start - A starting {@link Locale | locale}
  549. *
  550. * @returns Fallback locales
  551. *
  552. * @VueI18nSee [Fallbacking](../guide/essentials/fallback)
  553. *
  554. * @VueI18nGeneral
  555. */
  556. function fallbackWithLocaleChain(ctx, fallback, start) {
  557. const startLocale = shared.isString(start) ? start : DEFAULT_LOCALE;
  558. const context = ctx;
  559. if (!context.__localeChainCache) {
  560. context.__localeChainCache = new Map();
  561. }
  562. let chain = context.__localeChainCache.get(startLocale);
  563. if (!chain) {
  564. chain = [];
  565. // first block defined by start
  566. let block = [start];
  567. // while any intervening block found
  568. while (shared.isArray(block)) {
  569. block = appendBlockToChain(chain, block, fallback);
  570. }
  571. // prettier-ignore
  572. // last block defined by default
  573. const defaults = shared.isArray(fallback) || !shared.isPlainObject(fallback)
  574. ? fallback
  575. : fallback['default']
  576. ? fallback['default']
  577. : null;
  578. // convert defaults to array
  579. block = shared.isString(defaults) ? [defaults] : defaults;
  580. if (shared.isArray(block)) {
  581. appendBlockToChain(chain, block, false);
  582. }
  583. context.__localeChainCache.set(startLocale, chain);
  584. }
  585. return chain;
  586. }
  587. function appendBlockToChain(chain, block, blocks) {
  588. let follow = true;
  589. for (let i = 0; i < block.length && shared.isBoolean(follow); i++) {
  590. const locale = block[i];
  591. if (shared.isString(locale)) {
  592. follow = appendLocaleToChain(chain, block[i], blocks);
  593. }
  594. }
  595. return follow;
  596. }
  597. function appendLocaleToChain(chain, locale, blocks) {
  598. let follow;
  599. const tokens = locale.split('-');
  600. do {
  601. const target = tokens.join('-');
  602. follow = appendItemToChain(chain, target, blocks);
  603. tokens.splice(-1, 1);
  604. } while (tokens.length && follow === true);
  605. return follow;
  606. }
  607. function appendItemToChain(chain, target, blocks) {
  608. let follow = false;
  609. if (!chain.includes(target)) {
  610. follow = true;
  611. if (target) {
  612. follow = target[target.length - 1] !== '!';
  613. const locale = target.replace(/!/g, '');
  614. chain.push(locale);
  615. if ((shared.isArray(blocks) || shared.isPlainObject(blocks)) &&
  616. blocks[locale] // eslint-disable-line @typescript-eslint/no-explicit-any
  617. ) {
  618. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  619. follow = blocks[locale];
  620. }
  621. }
  622. }
  623. return follow;
  624. }
  625. /* eslint-disable @typescript-eslint/no-explicit-any */
  626. /**
  627. * Intlify core-base version
  628. * @internal
  629. */
  630. const VERSION = '9.13.1';
  631. const NOT_REOSLVED = -1;
  632. const DEFAULT_LOCALE = 'en-US';
  633. const MISSING_RESOLVE_VALUE = '';
  634. const capitalize = (str) => `${str.charAt(0).toLocaleUpperCase()}${str.substr(1)}`;
  635. function getDefaultLinkedModifiers() {
  636. return {
  637. upper: (val, type) => {
  638. // prettier-ignore
  639. return type === 'text' && shared.isString(val)
  640. ? val.toUpperCase()
  641. : type === 'vnode' && shared.isObject(val) && '__v_isVNode' in val
  642. ? val.children.toUpperCase()
  643. : val;
  644. },
  645. lower: (val, type) => {
  646. // prettier-ignore
  647. return type === 'text' && shared.isString(val)
  648. ? val.toLowerCase()
  649. : type === 'vnode' && shared.isObject(val) && '__v_isVNode' in val
  650. ? val.children.toLowerCase()
  651. : val;
  652. },
  653. capitalize: (val, type) => {
  654. // prettier-ignore
  655. return (type === 'text' && shared.isString(val)
  656. ? capitalize(val)
  657. : type === 'vnode' && shared.isObject(val) && '__v_isVNode' in val
  658. ? capitalize(val.children)
  659. : val);
  660. }
  661. };
  662. }
  663. let _compiler;
  664. function registerMessageCompiler(compiler) {
  665. _compiler = compiler;
  666. }
  667. let _resolver;
  668. /**
  669. * Register the message resolver
  670. *
  671. * @param resolver - A {@link MessageResolver} function
  672. *
  673. * @VueI18nGeneral
  674. */
  675. function registerMessageResolver(resolver) {
  676. _resolver = resolver;
  677. }
  678. let _fallbacker;
  679. /**
  680. * Register the locale fallbacker
  681. *
  682. * @param fallbacker - A {@link LocaleFallbacker} function
  683. *
  684. * @VueI18nGeneral
  685. */
  686. function registerLocaleFallbacker(fallbacker) {
  687. _fallbacker = fallbacker;
  688. }
  689. // Additional Meta for Intlify DevTools
  690. let _additionalMeta = null;
  691. /* #__NO_SIDE_EFFECTS__ */
  692. const setAdditionalMeta = (meta) => {
  693. _additionalMeta = meta;
  694. };
  695. /* #__NO_SIDE_EFFECTS__ */
  696. const getAdditionalMeta = () => _additionalMeta;
  697. let _fallbackContext = null;
  698. const setFallbackContext = (context) => {
  699. _fallbackContext = context;
  700. };
  701. const getFallbackContext = () => _fallbackContext;
  702. // ID for CoreContext
  703. let _cid = 0;
  704. function createCoreContext(options = {}) {
  705. // setup options
  706. const onWarn = shared.isFunction(options.onWarn) ? options.onWarn : shared.warn;
  707. const version = shared.isString(options.version) ? options.version : VERSION;
  708. const locale = shared.isString(options.locale) || shared.isFunction(options.locale)
  709. ? options.locale
  710. : DEFAULT_LOCALE;
  711. const _locale = shared.isFunction(locale) ? DEFAULT_LOCALE : locale;
  712. const fallbackLocale = shared.isArray(options.fallbackLocale) ||
  713. shared.isPlainObject(options.fallbackLocale) ||
  714. shared.isString(options.fallbackLocale) ||
  715. options.fallbackLocale === false
  716. ? options.fallbackLocale
  717. : _locale;
  718. const messages = shared.isPlainObject(options.messages)
  719. ? options.messages
  720. : { [_locale]: {} };
  721. const datetimeFormats = shared.isPlainObject(options.datetimeFormats)
  722. ? options.datetimeFormats
  723. : { [_locale]: {} }
  724. ;
  725. const numberFormats = shared.isPlainObject(options.numberFormats)
  726. ? options.numberFormats
  727. : { [_locale]: {} }
  728. ;
  729. const modifiers = shared.assign({}, options.modifiers || {}, getDefaultLinkedModifiers());
  730. const pluralRules = options.pluralRules || {};
  731. const missing = shared.isFunction(options.missing) ? options.missing : null;
  732. const missingWarn = shared.isBoolean(options.missingWarn) || shared.isRegExp(options.missingWarn)
  733. ? options.missingWarn
  734. : true;
  735. const fallbackWarn = shared.isBoolean(options.fallbackWarn) || shared.isRegExp(options.fallbackWarn)
  736. ? options.fallbackWarn
  737. : true;
  738. const fallbackFormat = !!options.fallbackFormat;
  739. const unresolving = !!options.unresolving;
  740. const postTranslation = shared.isFunction(options.postTranslation)
  741. ? options.postTranslation
  742. : null;
  743. const processor = shared.isPlainObject(options.processor) ? options.processor : null;
  744. const warnHtmlMessage = shared.isBoolean(options.warnHtmlMessage)
  745. ? options.warnHtmlMessage
  746. : true;
  747. const escapeParameter = !!options.escapeParameter;
  748. const messageCompiler = shared.isFunction(options.messageCompiler)
  749. ? options.messageCompiler
  750. : _compiler;
  751. const messageResolver = shared.isFunction(options.messageResolver)
  752. ? options.messageResolver
  753. : _resolver || resolveWithKeyValue;
  754. const localeFallbacker = shared.isFunction(options.localeFallbacker)
  755. ? options.localeFallbacker
  756. : _fallbacker || fallbackWithSimple;
  757. const fallbackContext = shared.isObject(options.fallbackContext)
  758. ? options.fallbackContext
  759. : undefined;
  760. // setup internal options
  761. const internalOptions = options;
  762. const __datetimeFormatters = shared.isObject(internalOptions.__datetimeFormatters)
  763. ? internalOptions.__datetimeFormatters
  764. : new Map()
  765. ;
  766. const __numberFormatters = shared.isObject(internalOptions.__numberFormatters)
  767. ? internalOptions.__numberFormatters
  768. : new Map()
  769. ;
  770. const __meta = shared.isObject(internalOptions.__meta) ? internalOptions.__meta : {};
  771. _cid++;
  772. const context = {
  773. version,
  774. cid: _cid,
  775. locale,
  776. fallbackLocale,
  777. messages,
  778. modifiers,
  779. pluralRules,
  780. missing,
  781. missingWarn,
  782. fallbackWarn,
  783. fallbackFormat,
  784. unresolving,
  785. postTranslation,
  786. processor,
  787. warnHtmlMessage,
  788. escapeParameter,
  789. messageCompiler,
  790. messageResolver,
  791. localeFallbacker,
  792. fallbackContext,
  793. onWarn,
  794. __meta
  795. };
  796. {
  797. context.datetimeFormats = datetimeFormats;
  798. context.numberFormats = numberFormats;
  799. context.__datetimeFormatters = __datetimeFormatters;
  800. context.__numberFormatters = __numberFormatters;
  801. }
  802. return context;
  803. }
  804. /** @internal */
  805. function isTranslateFallbackWarn(fallback, key) {
  806. return fallback instanceof RegExp ? fallback.test(key) : fallback;
  807. }
  808. /** @internal */
  809. function isTranslateMissingWarn(missing, key) {
  810. return missing instanceof RegExp ? missing.test(key) : missing;
  811. }
  812. /** @internal */
  813. function handleMissing(context, key, locale, missingWarn, type) {
  814. const { missing, onWarn } = context;
  815. if (missing !== null) {
  816. const ret = missing(context, locale, key, type);
  817. return shared.isString(ret) ? ret : key;
  818. }
  819. else {
  820. return key;
  821. }
  822. }
  823. /** @internal */
  824. function updateFallbackLocale(ctx, locale, fallback) {
  825. const context = ctx;
  826. context.__localeChainCache = new Map();
  827. ctx.localeFallbacker(ctx, fallback, locale);
  828. }
  829. /** @internal */
  830. function isAlmostSameLocale(locale, compareLocale) {
  831. if (locale === compareLocale)
  832. return false;
  833. return locale.split('-')[0] === compareLocale.split('-')[0];
  834. }
  835. /** @internal */
  836. function isImplicitFallback(targetLocale, locales) {
  837. const index = locales.indexOf(targetLocale);
  838. if (index === -1) {
  839. return false;
  840. }
  841. for (let i = index + 1; i < locales.length; i++) {
  842. if (isAlmostSameLocale(targetLocale, locales[i])) {
  843. return true;
  844. }
  845. }
  846. return false;
  847. }
  848. /* eslint-enable @typescript-eslint/no-explicit-any */
  849. function format(ast) {
  850. const msg = (ctx) => formatParts(ctx, ast);
  851. return msg;
  852. }
  853. function formatParts(ctx, ast) {
  854. const body = ast.b || ast.body;
  855. if ((body.t || body.type) === 1 /* NodeTypes.Plural */) {
  856. const plural = body;
  857. const cases = plural.c || plural.cases;
  858. return ctx.plural(cases.reduce((messages, c) => [
  859. ...messages,
  860. formatMessageParts(ctx, c)
  861. ], []));
  862. }
  863. else {
  864. return formatMessageParts(ctx, body);
  865. }
  866. }
  867. function formatMessageParts(ctx, node) {
  868. const _static = node.s || node.static;
  869. if (_static) {
  870. return ctx.type === 'text'
  871. ? _static
  872. : ctx.normalize([_static]);
  873. }
  874. else {
  875. const messages = (node.i || node.items).reduce((acm, c) => [...acm, formatMessagePart(ctx, c)], []);
  876. return ctx.normalize(messages);
  877. }
  878. }
  879. function formatMessagePart(ctx, node) {
  880. const type = node.t || node.type;
  881. switch (type) {
  882. case 3 /* NodeTypes.Text */: {
  883. const text = node;
  884. return (text.v || text.value);
  885. }
  886. case 9 /* NodeTypes.Literal */: {
  887. const literal = node;
  888. return (literal.v || literal.value);
  889. }
  890. case 4 /* NodeTypes.Named */: {
  891. const named = node;
  892. return ctx.interpolate(ctx.named(named.k || named.key));
  893. }
  894. case 5 /* NodeTypes.List */: {
  895. const list = node;
  896. return ctx.interpolate(ctx.list(list.i != null ? list.i : list.index));
  897. }
  898. case 6 /* NodeTypes.Linked */: {
  899. const linked = node;
  900. const modifier = linked.m || linked.modifier;
  901. return ctx.linked(formatMessagePart(ctx, linked.k || linked.key), modifier ? formatMessagePart(ctx, modifier) : undefined, ctx.type);
  902. }
  903. case 7 /* NodeTypes.LinkedKey */: {
  904. const linkedKey = node;
  905. return (linkedKey.v || linkedKey.value);
  906. }
  907. case 8 /* NodeTypes.LinkedModifier */: {
  908. const linkedModifier = node;
  909. return (linkedModifier.v || linkedModifier.value);
  910. }
  911. default:
  912. throw new Error(`unhandled node type on format message part: ${type}`);
  913. }
  914. }
  915. const defaultOnCacheKey = (message) => message;
  916. let compileCache = Object.create(null);
  917. function clearCompileCache() {
  918. compileCache = Object.create(null);
  919. }
  920. const isMessageAST = (val) => shared.isObject(val) &&
  921. (val.t === 0 || val.type === 0) &&
  922. ('b' in val || 'body' in val);
  923. function baseCompile(message, options = {}) {
  924. // error detecting on compile
  925. let detectError = false;
  926. const onError = options.onError || messageCompiler.defaultOnError;
  927. options.onError = (err) => {
  928. detectError = true;
  929. onError(err);
  930. };
  931. // compile with mesasge-compiler
  932. return { ...messageCompiler.baseCompile(message, options), detectError };
  933. }
  934. /* #__NO_SIDE_EFFECTS__ */
  935. const compileToFunction = (message, context) => {
  936. if (!shared.isString(message)) {
  937. throw createCoreError(CoreErrorCodes.NOT_SUPPORT_NON_STRING_MESSAGE);
  938. }
  939. {
  940. // check HTML message
  941. shared.isBoolean(context.warnHtmlMessage)
  942. ? context.warnHtmlMessage
  943. : true;
  944. // check caches
  945. const onCacheKey = context.onCacheKey || defaultOnCacheKey;
  946. const cacheKey = onCacheKey(message);
  947. const cached = compileCache[cacheKey];
  948. if (cached) {
  949. return cached;
  950. }
  951. // compile
  952. const { code, detectError } = baseCompile(message, context);
  953. // evaluate function
  954. const msg = new Function(`return ${code}`)();
  955. // if occurred compile error, don't cache
  956. return !detectError
  957. ? (compileCache[cacheKey] = msg)
  958. : msg;
  959. }
  960. };
  961. function compile(message, context) {
  962. if (shared.isString(message)) {
  963. // check HTML message
  964. shared.isBoolean(context.warnHtmlMessage)
  965. ? context.warnHtmlMessage
  966. : true;
  967. // check caches
  968. const onCacheKey = context.onCacheKey || defaultOnCacheKey;
  969. const cacheKey = onCacheKey(message);
  970. const cached = compileCache[cacheKey];
  971. if (cached) {
  972. return cached;
  973. }
  974. // compile with JIT mode
  975. const { ast, detectError } = baseCompile(message, {
  976. ...context,
  977. location: false,
  978. jit: true
  979. });
  980. // compose message function from AST
  981. const msg = format(ast);
  982. // if occurred compile error, don't cache
  983. return !detectError
  984. ? (compileCache[cacheKey] = msg)
  985. : msg;
  986. }
  987. else {
  988. // AST case (passed from bundler)
  989. const cacheKey = message.cacheKey;
  990. if (cacheKey) {
  991. const cached = compileCache[cacheKey];
  992. if (cached) {
  993. return cached;
  994. }
  995. // compose message function from message (AST)
  996. return (compileCache[cacheKey] =
  997. format(message));
  998. }
  999. else {
  1000. return format(message);
  1001. }
  1002. }
  1003. }
  1004. const NOOP_MESSAGE_FUNCTION = () => '';
  1005. const isMessageFunction = (val) => shared.isFunction(val);
  1006. // implementation of `translate` function
  1007. function translate(context, ...args) {
  1008. const { fallbackFormat, postTranslation, unresolving, messageCompiler, fallbackLocale, messages } = context;
  1009. const [key, options] = parseTranslateArgs(...args);
  1010. const missingWarn = shared.isBoolean(options.missingWarn)
  1011. ? options.missingWarn
  1012. : context.missingWarn;
  1013. const fallbackWarn = shared.isBoolean(options.fallbackWarn)
  1014. ? options.fallbackWarn
  1015. : context.fallbackWarn;
  1016. const escapeParameter = shared.isBoolean(options.escapeParameter)
  1017. ? options.escapeParameter
  1018. : context.escapeParameter;
  1019. const resolvedMessage = !!options.resolvedMessage;
  1020. // prettier-ignore
  1021. const defaultMsgOrKey = shared.isString(options.default) || shared.isBoolean(options.default) // default by function option
  1022. ? !shared.isBoolean(options.default)
  1023. ? options.default
  1024. : (!messageCompiler ? () => key : key)
  1025. : fallbackFormat // default by `fallbackFormat` option
  1026. ? (!messageCompiler ? () => key : key)
  1027. : '';
  1028. const enableDefaultMsg = fallbackFormat || defaultMsgOrKey !== '';
  1029. const locale = getLocale(context, options);
  1030. // escape params
  1031. escapeParameter && escapeParams(options);
  1032. // resolve message format
  1033. // eslint-disable-next-line prefer-const
  1034. let [formatScope, targetLocale, message] = !resolvedMessage
  1035. ? resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn)
  1036. : [
  1037. key,
  1038. locale,
  1039. messages[locale] || {}
  1040. ];
  1041. // NOTE:
  1042. // Fix to work around `ssrTransfrom` bug in Vite.
  1043. // https://github.com/vitejs/vite/issues/4306
  1044. // To get around this, use temporary variables.
  1045. // https://github.com/nuxt/framework/issues/1461#issuecomment-954606243
  1046. let format = formatScope;
  1047. // if you use default message, set it as message format!
  1048. let cacheBaseKey = key;
  1049. if (!resolvedMessage &&
  1050. !(shared.isString(format) ||
  1051. isMessageAST(format) ||
  1052. isMessageFunction(format))) {
  1053. if (enableDefaultMsg) {
  1054. format = defaultMsgOrKey;
  1055. cacheBaseKey = format;
  1056. }
  1057. }
  1058. // checking message format and target locale
  1059. if (!resolvedMessage &&
  1060. (!(shared.isString(format) ||
  1061. isMessageAST(format) ||
  1062. isMessageFunction(format)) ||
  1063. !shared.isString(targetLocale))) {
  1064. return unresolving ? NOT_REOSLVED : key;
  1065. }
  1066. // setup compile error detecting
  1067. let occurred = false;
  1068. const onError = () => {
  1069. occurred = true;
  1070. };
  1071. // compile message format
  1072. const msg = !isMessageFunction(format)
  1073. ? compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, onError)
  1074. : format;
  1075. // if occurred compile error, return the message format
  1076. if (occurred) {
  1077. return format;
  1078. }
  1079. // evaluate message with context
  1080. const ctxOptions = getMessageContextOptions(context, targetLocale, message, options);
  1081. const msgContext = createMessageContext(ctxOptions);
  1082. const messaged = evaluateMessage(context, msg, msgContext);
  1083. // if use post translation option, proceed it with handler
  1084. const ret = postTranslation
  1085. ? postTranslation(messaged, key)
  1086. : messaged;
  1087. return ret;
  1088. }
  1089. function escapeParams(options) {
  1090. if (shared.isArray(options.list)) {
  1091. options.list = options.list.map(item => shared.isString(item) ? shared.escapeHtml(item) : item);
  1092. }
  1093. else if (shared.isObject(options.named)) {
  1094. Object.keys(options.named).forEach(key => {
  1095. if (shared.isString(options.named[key])) {
  1096. options.named[key] = shared.escapeHtml(options.named[key]);
  1097. }
  1098. });
  1099. }
  1100. }
  1101. function resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn) {
  1102. const { messages, onWarn, messageResolver: resolveValue, localeFallbacker } = context;
  1103. const locales = localeFallbacker(context, fallbackLocale, locale); // eslint-disable-line @typescript-eslint/no-explicit-any
  1104. let message = {};
  1105. let targetLocale;
  1106. let format = null;
  1107. const type = 'translate';
  1108. for (let i = 0; i < locales.length; i++) {
  1109. targetLocale = locales[i];
  1110. message =
  1111. messages[targetLocale] || {};
  1112. if ((format = resolveValue(message, key)) === null) {
  1113. // if null, resolve with object key path
  1114. format = message[key]; // eslint-disable-line @typescript-eslint/no-explicit-any
  1115. }
  1116. if (shared.isString(format) || isMessageAST(format) || isMessageFunction(format)) {
  1117. break;
  1118. }
  1119. if (!isImplicitFallback(targetLocale, locales)) {
  1120. const missingRet = handleMissing(context, // eslint-disable-line @typescript-eslint/no-explicit-any
  1121. key, targetLocale, missingWarn, type);
  1122. if (missingRet !== key) {
  1123. format = missingRet;
  1124. }
  1125. }
  1126. }
  1127. return [format, targetLocale, message];
  1128. }
  1129. function compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, onError) {
  1130. const { messageCompiler, warnHtmlMessage } = context;
  1131. if (isMessageFunction(format)) {
  1132. const msg = format;
  1133. msg.locale = msg.locale || targetLocale;
  1134. msg.key = msg.key || key;
  1135. return msg;
  1136. }
  1137. if (messageCompiler == null) {
  1138. const msg = (() => format);
  1139. msg.locale = targetLocale;
  1140. msg.key = key;
  1141. return msg;
  1142. }
  1143. const msg = messageCompiler(format, getCompileContext(context, targetLocale, cacheBaseKey, format, warnHtmlMessage, onError));
  1144. msg.locale = targetLocale;
  1145. msg.key = key;
  1146. msg.source = format;
  1147. return msg;
  1148. }
  1149. function evaluateMessage(context, msg, msgCtx) {
  1150. const messaged = msg(msgCtx);
  1151. return messaged;
  1152. }
  1153. /** @internal */
  1154. function parseTranslateArgs(...args) {
  1155. const [arg1, arg2, arg3] = args;
  1156. const options = {};
  1157. if (!shared.isString(arg1) &&
  1158. !shared.isNumber(arg1) &&
  1159. !isMessageFunction(arg1) &&
  1160. !isMessageAST(arg1)) {
  1161. throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);
  1162. }
  1163. // prettier-ignore
  1164. const key = shared.isNumber(arg1)
  1165. ? String(arg1)
  1166. : isMessageFunction(arg1)
  1167. ? arg1
  1168. : arg1;
  1169. if (shared.isNumber(arg2)) {
  1170. options.plural = arg2;
  1171. }
  1172. else if (shared.isString(arg2)) {
  1173. options.default = arg2;
  1174. }
  1175. else if (shared.isPlainObject(arg2) && !shared.isEmptyObject(arg2)) {
  1176. options.named = arg2;
  1177. }
  1178. else if (shared.isArray(arg2)) {
  1179. options.list = arg2;
  1180. }
  1181. if (shared.isNumber(arg3)) {
  1182. options.plural = arg3;
  1183. }
  1184. else if (shared.isString(arg3)) {
  1185. options.default = arg3;
  1186. }
  1187. else if (shared.isPlainObject(arg3)) {
  1188. shared.assign(options, arg3);
  1189. }
  1190. return [key, options];
  1191. }
  1192. function getCompileContext(context, locale, key, source, warnHtmlMessage, onError) {
  1193. return {
  1194. locale,
  1195. key,
  1196. warnHtmlMessage,
  1197. onError: (err) => {
  1198. onError && onError(err);
  1199. {
  1200. throw err;
  1201. }
  1202. },
  1203. onCacheKey: (source) => shared.generateFormatCacheKey(locale, key, source)
  1204. };
  1205. }
  1206. function getMessageContextOptions(context, locale, message, options) {
  1207. const { modifiers, pluralRules, messageResolver: resolveValue, fallbackLocale, fallbackWarn, missingWarn, fallbackContext } = context;
  1208. const resolveMessage = (key) => {
  1209. let val = resolveValue(message, key);
  1210. // fallback to root context
  1211. if (val == null && fallbackContext) {
  1212. const [, , message] = resolveMessageFormat(fallbackContext, key, locale, fallbackLocale, fallbackWarn, missingWarn);
  1213. val = resolveValue(message, key);
  1214. }
  1215. if (shared.isString(val) || isMessageAST(val)) {
  1216. let occurred = false;
  1217. const onError = () => {
  1218. occurred = true;
  1219. };
  1220. const msg = compileMessageFormat(context, key, locale, val, key, onError);
  1221. return !occurred
  1222. ? msg
  1223. : NOOP_MESSAGE_FUNCTION;
  1224. }
  1225. else if (isMessageFunction(val)) {
  1226. return val;
  1227. }
  1228. else {
  1229. // TODO: should be implemented warning message
  1230. return NOOP_MESSAGE_FUNCTION;
  1231. }
  1232. };
  1233. const ctxOptions = {
  1234. locale,
  1235. modifiers,
  1236. pluralRules,
  1237. messages: resolveMessage
  1238. };
  1239. if (context.processor) {
  1240. ctxOptions.processor = context.processor;
  1241. }
  1242. if (options.list) {
  1243. ctxOptions.list = options.list;
  1244. }
  1245. if (options.named) {
  1246. ctxOptions.named = options.named;
  1247. }
  1248. if (shared.isNumber(options.plural)) {
  1249. ctxOptions.pluralIndex = options.plural;
  1250. }
  1251. return ctxOptions;
  1252. }
  1253. // implementation of `datetime` function
  1254. function datetime(context, ...args) {
  1255. const { datetimeFormats, unresolving, fallbackLocale, onWarn, localeFallbacker } = context;
  1256. const { __datetimeFormatters } = context;
  1257. const [key, value, options, overrides] = parseDateTimeArgs(...args);
  1258. const missingWarn = shared.isBoolean(options.missingWarn)
  1259. ? options.missingWarn
  1260. : context.missingWarn;
  1261. shared.isBoolean(options.fallbackWarn)
  1262. ? options.fallbackWarn
  1263. : context.fallbackWarn;
  1264. const part = !!options.part;
  1265. const locale = getLocale(context, options);
  1266. const locales = localeFallbacker(context, // eslint-disable-line @typescript-eslint/no-explicit-any
  1267. fallbackLocale, locale);
  1268. if (!shared.isString(key) || key === '') {
  1269. return new Intl.DateTimeFormat(locale, overrides).format(value);
  1270. }
  1271. // resolve format
  1272. let datetimeFormat = {};
  1273. let targetLocale;
  1274. let format = null;
  1275. const type = 'datetime format';
  1276. for (let i = 0; i < locales.length; i++) {
  1277. targetLocale = locales[i];
  1278. datetimeFormat =
  1279. datetimeFormats[targetLocale] || {};
  1280. format = datetimeFormat[key];
  1281. if (shared.isPlainObject(format))
  1282. break;
  1283. handleMissing(context, key, targetLocale, missingWarn, type); // eslint-disable-line @typescript-eslint/no-explicit-any
  1284. }
  1285. // checking format and target locale
  1286. if (!shared.isPlainObject(format) || !shared.isString(targetLocale)) {
  1287. return unresolving ? NOT_REOSLVED : key;
  1288. }
  1289. let id = `${targetLocale}__${key}`;
  1290. if (!shared.isEmptyObject(overrides)) {
  1291. id = `${id}__${JSON.stringify(overrides)}`;
  1292. }
  1293. let formatter = __datetimeFormatters.get(id);
  1294. if (!formatter) {
  1295. formatter = new Intl.DateTimeFormat(targetLocale, shared.assign({}, format, overrides));
  1296. __datetimeFormatters.set(id, formatter);
  1297. }
  1298. return !part ? formatter.format(value) : formatter.formatToParts(value);
  1299. }
  1300. /** @internal */
  1301. const DATETIME_FORMAT_OPTIONS_KEYS = [
  1302. 'localeMatcher',
  1303. 'weekday',
  1304. 'era',
  1305. 'year',
  1306. 'month',
  1307. 'day',
  1308. 'hour',
  1309. 'minute',
  1310. 'second',
  1311. 'timeZoneName',
  1312. 'formatMatcher',
  1313. 'hour12',
  1314. 'timeZone',
  1315. 'dateStyle',
  1316. 'timeStyle',
  1317. 'calendar',
  1318. 'dayPeriod',
  1319. 'numberingSystem',
  1320. 'hourCycle',
  1321. 'fractionalSecondDigits'
  1322. ];
  1323. /** @internal */
  1324. function parseDateTimeArgs(...args) {
  1325. const [arg1, arg2, arg3, arg4] = args;
  1326. const options = {};
  1327. let overrides = {};
  1328. let value;
  1329. if (shared.isString(arg1)) {
  1330. // Only allow ISO strings - other date formats are often supported,
  1331. // but may cause different results in different browsers.
  1332. const matches = arg1.match(/(\d{4}-\d{2}-\d{2})(T|\s)?(.*)/);
  1333. if (!matches) {
  1334. throw createCoreError(CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT);
  1335. }
  1336. // Some browsers can not parse the iso datetime separated by space,
  1337. // this is a compromise solution by replace the 'T'/' ' with 'T'
  1338. const dateTime = matches[3]
  1339. ? matches[3].trim().startsWith('T')
  1340. ? `${matches[1].trim()}${matches[3].trim()}`
  1341. : `${matches[1].trim()}T${matches[3].trim()}`
  1342. : matches[1].trim();
  1343. value = new Date(dateTime);
  1344. try {
  1345. // This will fail if the date is not valid
  1346. value.toISOString();
  1347. }
  1348. catch (e) {
  1349. throw createCoreError(CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT);
  1350. }
  1351. }
  1352. else if (shared.isDate(arg1)) {
  1353. if (isNaN(arg1.getTime())) {
  1354. throw createCoreError(CoreErrorCodes.INVALID_DATE_ARGUMENT);
  1355. }
  1356. value = arg1;
  1357. }
  1358. else if (shared.isNumber(arg1)) {
  1359. value = arg1;
  1360. }
  1361. else {
  1362. throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);
  1363. }
  1364. if (shared.isString(arg2)) {
  1365. options.key = arg2;
  1366. }
  1367. else if (shared.isPlainObject(arg2)) {
  1368. Object.keys(arg2).forEach(key => {
  1369. if (DATETIME_FORMAT_OPTIONS_KEYS.includes(key)) {
  1370. overrides[key] = arg2[key];
  1371. }
  1372. else {
  1373. options[key] = arg2[key];
  1374. }
  1375. });
  1376. }
  1377. if (shared.isString(arg3)) {
  1378. options.locale = arg3;
  1379. }
  1380. else if (shared.isPlainObject(arg3)) {
  1381. overrides = arg3;
  1382. }
  1383. if (shared.isPlainObject(arg4)) {
  1384. overrides = arg4;
  1385. }
  1386. return [options.key || '', value, options, overrides];
  1387. }
  1388. /** @internal */
  1389. function clearDateTimeFormat(ctx, locale, format) {
  1390. const context = ctx;
  1391. for (const key in format) {
  1392. const id = `${locale}__${key}`;
  1393. if (!context.__datetimeFormatters.has(id)) {
  1394. continue;
  1395. }
  1396. context.__datetimeFormatters.delete(id);
  1397. }
  1398. }
  1399. // implementation of `number` function
  1400. function number(context, ...args) {
  1401. const { numberFormats, unresolving, fallbackLocale, onWarn, localeFallbacker } = context;
  1402. const { __numberFormatters } = context;
  1403. const [key, value, options, overrides] = parseNumberArgs(...args);
  1404. const missingWarn = shared.isBoolean(options.missingWarn)
  1405. ? options.missingWarn
  1406. : context.missingWarn;
  1407. shared.isBoolean(options.fallbackWarn)
  1408. ? options.fallbackWarn
  1409. : context.fallbackWarn;
  1410. const part = !!options.part;
  1411. const locale = getLocale(context, options);
  1412. const locales = localeFallbacker(context, // eslint-disable-line @typescript-eslint/no-explicit-any
  1413. fallbackLocale, locale);
  1414. if (!shared.isString(key) || key === '') {
  1415. return new Intl.NumberFormat(locale, overrides).format(value);
  1416. }
  1417. // resolve format
  1418. let numberFormat = {};
  1419. let targetLocale;
  1420. let format = null;
  1421. const type = 'number format';
  1422. for (let i = 0; i < locales.length; i++) {
  1423. targetLocale = locales[i];
  1424. numberFormat =
  1425. numberFormats[targetLocale] || {};
  1426. format = numberFormat[key];
  1427. if (shared.isPlainObject(format))
  1428. break;
  1429. handleMissing(context, key, targetLocale, missingWarn, type); // eslint-disable-line @typescript-eslint/no-explicit-any
  1430. }
  1431. // checking format and target locale
  1432. if (!shared.isPlainObject(format) || !shared.isString(targetLocale)) {
  1433. return unresolving ? NOT_REOSLVED : key;
  1434. }
  1435. let id = `${targetLocale}__${key}`;
  1436. if (!shared.isEmptyObject(overrides)) {
  1437. id = `${id}__${JSON.stringify(overrides)}`;
  1438. }
  1439. let formatter = __numberFormatters.get(id);
  1440. if (!formatter) {
  1441. formatter = new Intl.NumberFormat(targetLocale, shared.assign({}, format, overrides));
  1442. __numberFormatters.set(id, formatter);
  1443. }
  1444. return !part ? formatter.format(value) : formatter.formatToParts(value);
  1445. }
  1446. /** @internal */
  1447. const NUMBER_FORMAT_OPTIONS_KEYS = [
  1448. 'localeMatcher',
  1449. 'style',
  1450. 'currency',
  1451. 'currencyDisplay',
  1452. 'currencySign',
  1453. 'useGrouping',
  1454. 'minimumIntegerDigits',
  1455. 'minimumFractionDigits',
  1456. 'maximumFractionDigits',
  1457. 'minimumSignificantDigits',
  1458. 'maximumSignificantDigits',
  1459. 'compactDisplay',
  1460. 'notation',
  1461. 'signDisplay',
  1462. 'unit',
  1463. 'unitDisplay',
  1464. 'roundingMode',
  1465. 'roundingPriority',
  1466. 'roundingIncrement',
  1467. 'trailingZeroDisplay'
  1468. ];
  1469. /** @internal */
  1470. function parseNumberArgs(...args) {
  1471. const [arg1, arg2, arg3, arg4] = args;
  1472. const options = {};
  1473. let overrides = {};
  1474. if (!shared.isNumber(arg1)) {
  1475. throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);
  1476. }
  1477. const value = arg1;
  1478. if (shared.isString(arg2)) {
  1479. options.key = arg2;
  1480. }
  1481. else if (shared.isPlainObject(arg2)) {
  1482. Object.keys(arg2).forEach(key => {
  1483. if (NUMBER_FORMAT_OPTIONS_KEYS.includes(key)) {
  1484. overrides[key] = arg2[key];
  1485. }
  1486. else {
  1487. options[key] = arg2[key];
  1488. }
  1489. });
  1490. }
  1491. if (shared.isString(arg3)) {
  1492. options.locale = arg3;
  1493. }
  1494. else if (shared.isPlainObject(arg3)) {
  1495. overrides = arg3;
  1496. }
  1497. if (shared.isPlainObject(arg4)) {
  1498. overrides = arg4;
  1499. }
  1500. return [options.key || '', value, options, overrides];
  1501. }
  1502. /** @internal */
  1503. function clearNumberFormat(ctx, locale, format) {
  1504. const context = ctx;
  1505. for (const key in format) {
  1506. const id = `${locale}__${key}`;
  1507. if (!context.__numberFormatters.has(id)) {
  1508. continue;
  1509. }
  1510. context.__numberFormatters.delete(id);
  1511. }
  1512. }
  1513. exports.CompileErrorCodes = messageCompiler.CompileErrorCodes;
  1514. exports.createCompileError = messageCompiler.createCompileError;
  1515. exports.CoreErrorCodes = CoreErrorCodes;
  1516. exports.CoreWarnCodes = CoreWarnCodes;
  1517. exports.DATETIME_FORMAT_OPTIONS_KEYS = DATETIME_FORMAT_OPTIONS_KEYS;
  1518. exports.DEFAULT_LOCALE = DEFAULT_LOCALE;
  1519. exports.DEFAULT_MESSAGE_DATA_TYPE = DEFAULT_MESSAGE_DATA_TYPE;
  1520. exports.MISSING_RESOLVE_VALUE = MISSING_RESOLVE_VALUE;
  1521. exports.NOT_REOSLVED = NOT_REOSLVED;
  1522. exports.NUMBER_FORMAT_OPTIONS_KEYS = NUMBER_FORMAT_OPTIONS_KEYS;
  1523. exports.VERSION = VERSION;
  1524. exports.clearCompileCache = clearCompileCache;
  1525. exports.clearDateTimeFormat = clearDateTimeFormat;
  1526. exports.clearNumberFormat = clearNumberFormat;
  1527. exports.compile = compile;
  1528. exports.compileToFunction = compileToFunction;
  1529. exports.createCoreContext = createCoreContext;
  1530. exports.createCoreError = createCoreError;
  1531. exports.createMessageContext = createMessageContext;
  1532. exports.datetime = datetime;
  1533. exports.fallbackWithLocaleChain = fallbackWithLocaleChain;
  1534. exports.fallbackWithSimple = fallbackWithSimple;
  1535. exports.getAdditionalMeta = getAdditionalMeta;
  1536. exports.getDevToolsHook = getDevToolsHook;
  1537. exports.getFallbackContext = getFallbackContext;
  1538. exports.getLocale = getLocale;
  1539. exports.getWarnMessage = getWarnMessage;
  1540. exports.handleMissing = handleMissing;
  1541. exports.initI18nDevTools = initI18nDevTools;
  1542. exports.isAlmostSameLocale = isAlmostSameLocale;
  1543. exports.isImplicitFallback = isImplicitFallback;
  1544. exports.isMessageAST = isMessageAST;
  1545. exports.isMessageFunction = isMessageFunction;
  1546. exports.isTranslateFallbackWarn = isTranslateFallbackWarn;
  1547. exports.isTranslateMissingWarn = isTranslateMissingWarn;
  1548. exports.number = number;
  1549. exports.parse = parse;
  1550. exports.parseDateTimeArgs = parseDateTimeArgs;
  1551. exports.parseNumberArgs = parseNumberArgs;
  1552. exports.parseTranslateArgs = parseTranslateArgs;
  1553. exports.registerLocaleFallbacker = registerLocaleFallbacker;
  1554. exports.registerMessageCompiler = registerMessageCompiler;
  1555. exports.registerMessageResolver = registerMessageResolver;
  1556. exports.resolveLocale = resolveLocale;
  1557. exports.resolveValue = resolveValue;
  1558. exports.resolveWithKeyValue = resolveWithKeyValue;
  1559. exports.setAdditionalMeta = setAdditionalMeta;
  1560. exports.setDevToolsHook = setDevToolsHook;
  1561. exports.setFallbackContext = setFallbackContext;
  1562. exports.translate = translate;
  1563. exports.translateDevTools = translateDevTools;
  1564. exports.updateFallbackLocale = updateFallbackLocale;