core-base.cjs 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  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, { messages: errorMessages } );
  465. }
  466. /** @internal */
  467. const errorMessages = {
  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. if (shared.isFunction(options.messageCompiler)) {
  752. shared.warnOnce(getWarnMessage(CoreWarnCodes.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER));
  753. }
  754. const messageResolver = shared.isFunction(options.messageResolver)
  755. ? options.messageResolver
  756. : _resolver || resolveWithKeyValue;
  757. const localeFallbacker = shared.isFunction(options.localeFallbacker)
  758. ? options.localeFallbacker
  759. : _fallbacker || fallbackWithSimple;
  760. const fallbackContext = shared.isObject(options.fallbackContext)
  761. ? options.fallbackContext
  762. : undefined;
  763. // setup internal options
  764. const internalOptions = options;
  765. const __datetimeFormatters = shared.isObject(internalOptions.__datetimeFormatters)
  766. ? internalOptions.__datetimeFormatters
  767. : new Map()
  768. ;
  769. const __numberFormatters = shared.isObject(internalOptions.__numberFormatters)
  770. ? internalOptions.__numberFormatters
  771. : new Map()
  772. ;
  773. const __meta = shared.isObject(internalOptions.__meta) ? internalOptions.__meta : {};
  774. _cid++;
  775. const context = {
  776. version,
  777. cid: _cid,
  778. locale,
  779. fallbackLocale,
  780. messages,
  781. modifiers,
  782. pluralRules,
  783. missing,
  784. missingWarn,
  785. fallbackWarn,
  786. fallbackFormat,
  787. unresolving,
  788. postTranslation,
  789. processor,
  790. warnHtmlMessage,
  791. escapeParameter,
  792. messageCompiler,
  793. messageResolver,
  794. localeFallbacker,
  795. fallbackContext,
  796. onWarn,
  797. __meta
  798. };
  799. {
  800. context.datetimeFormats = datetimeFormats;
  801. context.numberFormats = numberFormats;
  802. context.__datetimeFormatters = __datetimeFormatters;
  803. context.__numberFormatters = __numberFormatters;
  804. }
  805. // for vue-devtools timeline event
  806. {
  807. context.__v_emitter =
  808. internalOptions.__v_emitter != null
  809. ? internalOptions.__v_emitter
  810. : undefined;
  811. }
  812. // NOTE: experimental !!
  813. {
  814. initI18nDevTools(context, version, __meta);
  815. }
  816. return context;
  817. }
  818. /** @internal */
  819. function isTranslateFallbackWarn(fallback, key) {
  820. return fallback instanceof RegExp ? fallback.test(key) : fallback;
  821. }
  822. /** @internal */
  823. function isTranslateMissingWarn(missing, key) {
  824. return missing instanceof RegExp ? missing.test(key) : missing;
  825. }
  826. /** @internal */
  827. function handleMissing(context, key, locale, missingWarn, type) {
  828. const { missing, onWarn } = context;
  829. // for vue-devtools timeline event
  830. {
  831. const emitter = context.__v_emitter;
  832. if (emitter) {
  833. emitter.emit("missing" /* VueDevToolsTimelineEvents.MISSING */, {
  834. locale,
  835. key,
  836. type,
  837. groupId: `${type}:${key}`
  838. });
  839. }
  840. }
  841. if (missing !== null) {
  842. const ret = missing(context, locale, key, type);
  843. return shared.isString(ret) ? ret : key;
  844. }
  845. else {
  846. if (isTranslateMissingWarn(missingWarn, key)) {
  847. onWarn(getWarnMessage(CoreWarnCodes.NOT_FOUND_KEY, { key, locale }));
  848. }
  849. return key;
  850. }
  851. }
  852. /** @internal */
  853. function updateFallbackLocale(ctx, locale, fallback) {
  854. const context = ctx;
  855. context.__localeChainCache = new Map();
  856. ctx.localeFallbacker(ctx, fallback, locale);
  857. }
  858. /** @internal */
  859. function isAlmostSameLocale(locale, compareLocale) {
  860. if (locale === compareLocale)
  861. return false;
  862. return locale.split('-')[0] === compareLocale.split('-')[0];
  863. }
  864. /** @internal */
  865. function isImplicitFallback(targetLocale, locales) {
  866. const index = locales.indexOf(targetLocale);
  867. if (index === -1) {
  868. return false;
  869. }
  870. for (let i = index + 1; i < locales.length; i++) {
  871. if (isAlmostSameLocale(targetLocale, locales[i])) {
  872. return true;
  873. }
  874. }
  875. return false;
  876. }
  877. /* eslint-enable @typescript-eslint/no-explicit-any */
  878. function format(ast) {
  879. const msg = (ctx) => formatParts(ctx, ast);
  880. return msg;
  881. }
  882. function formatParts(ctx, ast) {
  883. const body = ast.b || ast.body;
  884. if ((body.t || body.type) === 1 /* NodeTypes.Plural */) {
  885. const plural = body;
  886. const cases = plural.c || plural.cases;
  887. return ctx.plural(cases.reduce((messages, c) => [
  888. ...messages,
  889. formatMessageParts(ctx, c)
  890. ], []));
  891. }
  892. else {
  893. return formatMessageParts(ctx, body);
  894. }
  895. }
  896. function formatMessageParts(ctx, node) {
  897. const _static = node.s || node.static;
  898. if (_static) {
  899. return ctx.type === 'text'
  900. ? _static
  901. : ctx.normalize([_static]);
  902. }
  903. else {
  904. const messages = (node.i || node.items).reduce((acm, c) => [...acm, formatMessagePart(ctx, c)], []);
  905. return ctx.normalize(messages);
  906. }
  907. }
  908. function formatMessagePart(ctx, node) {
  909. const type = node.t || node.type;
  910. switch (type) {
  911. case 3 /* NodeTypes.Text */: {
  912. const text = node;
  913. return (text.v || text.value);
  914. }
  915. case 9 /* NodeTypes.Literal */: {
  916. const literal = node;
  917. return (literal.v || literal.value);
  918. }
  919. case 4 /* NodeTypes.Named */: {
  920. const named = node;
  921. return ctx.interpolate(ctx.named(named.k || named.key));
  922. }
  923. case 5 /* NodeTypes.List */: {
  924. const list = node;
  925. return ctx.interpolate(ctx.list(list.i != null ? list.i : list.index));
  926. }
  927. case 6 /* NodeTypes.Linked */: {
  928. const linked = node;
  929. const modifier = linked.m || linked.modifier;
  930. return ctx.linked(formatMessagePart(ctx, linked.k || linked.key), modifier ? formatMessagePart(ctx, modifier) : undefined, ctx.type);
  931. }
  932. case 7 /* NodeTypes.LinkedKey */: {
  933. const linkedKey = node;
  934. return (linkedKey.v || linkedKey.value);
  935. }
  936. case 8 /* NodeTypes.LinkedModifier */: {
  937. const linkedModifier = node;
  938. return (linkedModifier.v || linkedModifier.value);
  939. }
  940. default:
  941. throw new Error(`unhandled node type on format message part: ${type}`);
  942. }
  943. }
  944. const WARN_MESSAGE = `Detected HTML in '{source}' message. Recommend not using HTML messages to avoid XSS.`;
  945. function checkHtmlMessage(source, warnHtmlMessage) {
  946. if (warnHtmlMessage && messageCompiler.detectHtmlTag(source)) {
  947. shared.warn(shared.format(WARN_MESSAGE, { source }));
  948. }
  949. }
  950. const defaultOnCacheKey = (message) => message;
  951. let compileCache = Object.create(null);
  952. function onCompileWarn(_warn) {
  953. if (_warn.code === messageCompiler.CompileWarnCodes.USE_MODULO_SYNTAX) {
  954. shared.warn(`The use of named interpolation with modulo syntax is deprecated. ` +
  955. `It will be removed in v10.\n` +
  956. `reference: https://vue-i18n.intlify.dev/guide/essentials/syntax#rails-i18n-format \n` +
  957. `(message compiler warning message: ${_warn.message})`);
  958. }
  959. }
  960. function clearCompileCache() {
  961. compileCache = Object.create(null);
  962. }
  963. const isMessageAST = (val) => shared.isObject(val) &&
  964. (val.t === 0 || val.type === 0) &&
  965. ('b' in val || 'body' in val);
  966. function baseCompile(message, options = {}) {
  967. // error detecting on compile
  968. let detectError = false;
  969. const onError = options.onError || messageCompiler.defaultOnError;
  970. options.onError = (err) => {
  971. detectError = true;
  972. onError(err);
  973. };
  974. // compile with mesasge-compiler
  975. return { ...messageCompiler.baseCompile(message, options), detectError };
  976. }
  977. /* #__NO_SIDE_EFFECTS__ */
  978. const compileToFunction = (message, context) => {
  979. if (!shared.isString(message)) {
  980. throw createCoreError(CoreErrorCodes.NOT_SUPPORT_NON_STRING_MESSAGE);
  981. }
  982. // set onWarn
  983. {
  984. context.onWarn = onCompileWarn;
  985. }
  986. {
  987. // check HTML message
  988. const warnHtmlMessage = shared.isBoolean(context.warnHtmlMessage)
  989. ? context.warnHtmlMessage
  990. : true;
  991. checkHtmlMessage(message, warnHtmlMessage);
  992. // check caches
  993. const onCacheKey = context.onCacheKey || defaultOnCacheKey;
  994. const cacheKey = onCacheKey(message);
  995. const cached = compileCache[cacheKey];
  996. if (cached) {
  997. return cached;
  998. }
  999. // compile
  1000. const { code, detectError } = baseCompile(message, context);
  1001. // evaluate function
  1002. const msg = new Function(`return ${code}`)();
  1003. // if occurred compile error, don't cache
  1004. return !detectError
  1005. ? (compileCache[cacheKey] = msg)
  1006. : msg;
  1007. }
  1008. };
  1009. function compile(message, context) {
  1010. // set onWarn
  1011. {
  1012. context.onWarn = onCompileWarn;
  1013. }
  1014. if (shared.isString(message)) {
  1015. // check HTML message
  1016. const warnHtmlMessage = shared.isBoolean(context.warnHtmlMessage)
  1017. ? context.warnHtmlMessage
  1018. : true;
  1019. checkHtmlMessage(message, warnHtmlMessage);
  1020. // check caches
  1021. const onCacheKey = context.onCacheKey || defaultOnCacheKey;
  1022. const cacheKey = onCacheKey(message);
  1023. const cached = compileCache[cacheKey];
  1024. if (cached) {
  1025. return cached;
  1026. }
  1027. // compile with JIT mode
  1028. const { ast, detectError } = baseCompile(message, {
  1029. ...context,
  1030. location: true,
  1031. jit: true
  1032. });
  1033. // compose message function from AST
  1034. const msg = format(ast);
  1035. // if occurred compile error, don't cache
  1036. return !detectError
  1037. ? (compileCache[cacheKey] = msg)
  1038. : msg;
  1039. }
  1040. else {
  1041. if (!isMessageAST(message)) {
  1042. shared.warn(`the message that is resolve with key '${context.key}' is not supported for jit compilation`);
  1043. return (() => message);
  1044. }
  1045. // AST case (passed from bundler)
  1046. const cacheKey = message.cacheKey;
  1047. if (cacheKey) {
  1048. const cached = compileCache[cacheKey];
  1049. if (cached) {
  1050. return cached;
  1051. }
  1052. // compose message function from message (AST)
  1053. return (compileCache[cacheKey] =
  1054. format(message));
  1055. }
  1056. else {
  1057. return format(message);
  1058. }
  1059. }
  1060. }
  1061. const NOOP_MESSAGE_FUNCTION = () => '';
  1062. const isMessageFunction = (val) => shared.isFunction(val);
  1063. // implementation of `translate` function
  1064. function translate(context, ...args) {
  1065. const { fallbackFormat, postTranslation, unresolving, messageCompiler, fallbackLocale, messages } = context;
  1066. const [key, options] = parseTranslateArgs(...args);
  1067. const missingWarn = shared.isBoolean(options.missingWarn)
  1068. ? options.missingWarn
  1069. : context.missingWarn;
  1070. const fallbackWarn = shared.isBoolean(options.fallbackWarn)
  1071. ? options.fallbackWarn
  1072. : context.fallbackWarn;
  1073. const escapeParameter = shared.isBoolean(options.escapeParameter)
  1074. ? options.escapeParameter
  1075. : context.escapeParameter;
  1076. const resolvedMessage = !!options.resolvedMessage;
  1077. // prettier-ignore
  1078. const defaultMsgOrKey = shared.isString(options.default) || shared.isBoolean(options.default) // default by function option
  1079. ? !shared.isBoolean(options.default)
  1080. ? options.default
  1081. : (!messageCompiler ? () => key : key)
  1082. : fallbackFormat // default by `fallbackFormat` option
  1083. ? (!messageCompiler ? () => key : key)
  1084. : '';
  1085. const enableDefaultMsg = fallbackFormat || defaultMsgOrKey !== '';
  1086. const locale = getLocale(context, options);
  1087. // escape params
  1088. escapeParameter && escapeParams(options);
  1089. // resolve message format
  1090. // eslint-disable-next-line prefer-const
  1091. let [formatScope, targetLocale, message] = !resolvedMessage
  1092. ? resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn)
  1093. : [
  1094. key,
  1095. locale,
  1096. messages[locale] || {}
  1097. ];
  1098. // NOTE:
  1099. // Fix to work around `ssrTransfrom` bug in Vite.
  1100. // https://github.com/vitejs/vite/issues/4306
  1101. // To get around this, use temporary variables.
  1102. // https://github.com/nuxt/framework/issues/1461#issuecomment-954606243
  1103. let format = formatScope;
  1104. // if you use default message, set it as message format!
  1105. let cacheBaseKey = key;
  1106. if (!resolvedMessage &&
  1107. !(shared.isString(format) ||
  1108. isMessageAST(format) ||
  1109. isMessageFunction(format))) {
  1110. if (enableDefaultMsg) {
  1111. format = defaultMsgOrKey;
  1112. cacheBaseKey = format;
  1113. }
  1114. }
  1115. // checking message format and target locale
  1116. if (!resolvedMessage &&
  1117. (!(shared.isString(format) ||
  1118. isMessageAST(format) ||
  1119. isMessageFunction(format)) ||
  1120. !shared.isString(targetLocale))) {
  1121. return unresolving ? NOT_REOSLVED : key;
  1122. }
  1123. // TODO: refactor
  1124. if (shared.isString(format) && context.messageCompiler == null) {
  1125. shared.warn(`The message format compilation is not supported in this build. ` +
  1126. `Because message compiler isn't included. ` +
  1127. `You need to pre-compilation all message format. ` +
  1128. `So translate function return '${key}'.`);
  1129. return key;
  1130. }
  1131. // setup compile error detecting
  1132. let occurred = false;
  1133. const onError = () => {
  1134. occurred = true;
  1135. };
  1136. // compile message format
  1137. const msg = !isMessageFunction(format)
  1138. ? compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, onError)
  1139. : format;
  1140. // if occurred compile error, return the message format
  1141. if (occurred) {
  1142. return format;
  1143. }
  1144. // evaluate message with context
  1145. const ctxOptions = getMessageContextOptions(context, targetLocale, message, options);
  1146. const msgContext = createMessageContext(ctxOptions);
  1147. const messaged = evaluateMessage(context, msg, msgContext);
  1148. // if use post translation option, proceed it with handler
  1149. const ret = postTranslation
  1150. ? postTranslation(messaged, key)
  1151. : messaged;
  1152. // NOTE: experimental !!
  1153. {
  1154. // prettier-ignore
  1155. const payloads = {
  1156. timestamp: Date.now(),
  1157. key: shared.isString(key)
  1158. ? key
  1159. : isMessageFunction(format)
  1160. ? format.key
  1161. : '',
  1162. locale: targetLocale || (isMessageFunction(format)
  1163. ? format.locale
  1164. : ''),
  1165. format: shared.isString(format)
  1166. ? format
  1167. : isMessageFunction(format)
  1168. ? format.source
  1169. : '',
  1170. message: ret
  1171. };
  1172. payloads.meta = shared.assign({}, context.__meta, getAdditionalMeta() || {});
  1173. translateDevTools(payloads);
  1174. }
  1175. return ret;
  1176. }
  1177. function escapeParams(options) {
  1178. if (shared.isArray(options.list)) {
  1179. options.list = options.list.map(item => shared.isString(item) ? shared.escapeHtml(item) : item);
  1180. }
  1181. else if (shared.isObject(options.named)) {
  1182. Object.keys(options.named).forEach(key => {
  1183. if (shared.isString(options.named[key])) {
  1184. options.named[key] = shared.escapeHtml(options.named[key]);
  1185. }
  1186. });
  1187. }
  1188. }
  1189. function resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn) {
  1190. const { messages, onWarn, messageResolver: resolveValue, localeFallbacker } = context;
  1191. const locales = localeFallbacker(context, fallbackLocale, locale); // eslint-disable-line @typescript-eslint/no-explicit-any
  1192. let message = {};
  1193. let targetLocale;
  1194. let format = null;
  1195. let from = locale;
  1196. let to = null;
  1197. const type = 'translate';
  1198. for (let i = 0; i < locales.length; i++) {
  1199. targetLocale = to = locales[i];
  1200. if (locale !== targetLocale &&
  1201. !isAlmostSameLocale(locale, targetLocale) &&
  1202. isTranslateFallbackWarn(fallbackWarn, key)) {
  1203. onWarn(getWarnMessage(CoreWarnCodes.FALLBACK_TO_TRANSLATE, {
  1204. key,
  1205. target: targetLocale
  1206. }));
  1207. }
  1208. // for vue-devtools timeline event
  1209. if (locale !== targetLocale) {
  1210. const emitter = context.__v_emitter;
  1211. if (emitter) {
  1212. emitter.emit("fallback" /* VueDevToolsTimelineEvents.FALBACK */, {
  1213. type,
  1214. key,
  1215. from,
  1216. to,
  1217. groupId: `${type}:${key}`
  1218. });
  1219. }
  1220. }
  1221. message =
  1222. messages[targetLocale] || {};
  1223. // for vue-devtools timeline event
  1224. let start = null;
  1225. let startTag;
  1226. let endTag;
  1227. if (shared.inBrowser) {
  1228. start = window.performance.now();
  1229. startTag = 'intlify-message-resolve-start';
  1230. endTag = 'intlify-message-resolve-end';
  1231. shared.mark && shared.mark(startTag);
  1232. }
  1233. if ((format = resolveValue(message, key)) === null) {
  1234. // if null, resolve with object key path
  1235. format = message[key]; // eslint-disable-line @typescript-eslint/no-explicit-any
  1236. }
  1237. // for vue-devtools timeline event
  1238. if (shared.inBrowser) {
  1239. const end = window.performance.now();
  1240. const emitter = context.__v_emitter;
  1241. if (emitter && start && format) {
  1242. emitter.emit("message-resolve" /* VueDevToolsTimelineEvents.MESSAGE_RESOLVE */, {
  1243. type: "message-resolve" /* VueDevToolsTimelineEvents.MESSAGE_RESOLVE */,
  1244. key,
  1245. message: format,
  1246. time: end - start,
  1247. groupId: `${type}:${key}`
  1248. });
  1249. }
  1250. if (startTag && endTag && shared.mark && shared.measure) {
  1251. shared.mark(endTag);
  1252. shared.measure('intlify message resolve', startTag, endTag);
  1253. }
  1254. }
  1255. if (shared.isString(format) || isMessageAST(format) || isMessageFunction(format)) {
  1256. break;
  1257. }
  1258. if (!isImplicitFallback(targetLocale, locales)) {
  1259. const missingRet = handleMissing(context, // eslint-disable-line @typescript-eslint/no-explicit-any
  1260. key, targetLocale, missingWarn, type);
  1261. if (missingRet !== key) {
  1262. format = missingRet;
  1263. }
  1264. }
  1265. from = to;
  1266. }
  1267. return [format, targetLocale, message];
  1268. }
  1269. function compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, onError) {
  1270. const { messageCompiler, warnHtmlMessage } = context;
  1271. if (isMessageFunction(format)) {
  1272. const msg = format;
  1273. msg.locale = msg.locale || targetLocale;
  1274. msg.key = msg.key || key;
  1275. return msg;
  1276. }
  1277. if (messageCompiler == null) {
  1278. const msg = (() => format);
  1279. msg.locale = targetLocale;
  1280. msg.key = key;
  1281. return msg;
  1282. }
  1283. // for vue-devtools timeline event
  1284. let start = null;
  1285. let startTag;
  1286. let endTag;
  1287. if (shared.inBrowser) {
  1288. start = window.performance.now();
  1289. startTag = 'intlify-message-compilation-start';
  1290. endTag = 'intlify-message-compilation-end';
  1291. shared.mark && shared.mark(startTag);
  1292. }
  1293. const msg = messageCompiler(format, getCompileContext(context, targetLocale, cacheBaseKey, format, warnHtmlMessage, onError));
  1294. // for vue-devtools timeline event
  1295. if (shared.inBrowser) {
  1296. const end = window.performance.now();
  1297. const emitter = context.__v_emitter;
  1298. if (emitter && start) {
  1299. emitter.emit("message-compilation" /* VueDevToolsTimelineEvents.MESSAGE_COMPILATION */, {
  1300. type: "message-compilation" /* VueDevToolsTimelineEvents.MESSAGE_COMPILATION */,
  1301. message: format,
  1302. time: end - start,
  1303. groupId: `${'translate'}:${key}`
  1304. });
  1305. }
  1306. if (startTag && endTag && shared.mark && shared.measure) {
  1307. shared.mark(endTag);
  1308. shared.measure('intlify message compilation', startTag, endTag);
  1309. }
  1310. }
  1311. msg.locale = targetLocale;
  1312. msg.key = key;
  1313. msg.source = format;
  1314. return msg;
  1315. }
  1316. function evaluateMessage(context, msg, msgCtx) {
  1317. // for vue-devtools timeline event
  1318. let start = null;
  1319. let startTag;
  1320. let endTag;
  1321. if (shared.inBrowser) {
  1322. start = window.performance.now();
  1323. startTag = 'intlify-message-evaluation-start';
  1324. endTag = 'intlify-message-evaluation-end';
  1325. shared.mark && shared.mark(startTag);
  1326. }
  1327. const messaged = msg(msgCtx);
  1328. // for vue-devtools timeline event
  1329. if (shared.inBrowser) {
  1330. const end = window.performance.now();
  1331. const emitter = context.__v_emitter;
  1332. if (emitter && start) {
  1333. emitter.emit("message-evaluation" /* VueDevToolsTimelineEvents.MESSAGE_EVALUATION */, {
  1334. type: "message-evaluation" /* VueDevToolsTimelineEvents.MESSAGE_EVALUATION */,
  1335. value: messaged,
  1336. time: end - start,
  1337. groupId: `${'translate'}:${msg.key}`
  1338. });
  1339. }
  1340. if (startTag && endTag && shared.mark && shared.measure) {
  1341. shared.mark(endTag);
  1342. shared.measure('intlify message evaluation', startTag, endTag);
  1343. }
  1344. }
  1345. return messaged;
  1346. }
  1347. /** @internal */
  1348. function parseTranslateArgs(...args) {
  1349. const [arg1, arg2, arg3] = args;
  1350. const options = {};
  1351. if (!shared.isString(arg1) &&
  1352. !shared.isNumber(arg1) &&
  1353. !isMessageFunction(arg1) &&
  1354. !isMessageAST(arg1)) {
  1355. throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);
  1356. }
  1357. // prettier-ignore
  1358. const key = shared.isNumber(arg1)
  1359. ? String(arg1)
  1360. : isMessageFunction(arg1)
  1361. ? arg1
  1362. : arg1;
  1363. if (shared.isNumber(arg2)) {
  1364. options.plural = arg2;
  1365. }
  1366. else if (shared.isString(arg2)) {
  1367. options.default = arg2;
  1368. }
  1369. else if (shared.isPlainObject(arg2) && !shared.isEmptyObject(arg2)) {
  1370. options.named = arg2;
  1371. }
  1372. else if (shared.isArray(arg2)) {
  1373. options.list = arg2;
  1374. }
  1375. if (shared.isNumber(arg3)) {
  1376. options.plural = arg3;
  1377. }
  1378. else if (shared.isString(arg3)) {
  1379. options.default = arg3;
  1380. }
  1381. else if (shared.isPlainObject(arg3)) {
  1382. shared.assign(options, arg3);
  1383. }
  1384. return [key, options];
  1385. }
  1386. function getCompileContext(context, locale, key, source, warnHtmlMessage, onError) {
  1387. return {
  1388. locale,
  1389. key,
  1390. warnHtmlMessage,
  1391. onError: (err) => {
  1392. onError && onError(err);
  1393. {
  1394. const _source = getSourceForCodeFrame(source);
  1395. const message = `Message compilation error: ${err.message}`;
  1396. const codeFrame = err.location &&
  1397. _source &&
  1398. shared.generateCodeFrame(_source, err.location.start.offset, err.location.end.offset);
  1399. const emitter = context.__v_emitter;
  1400. if (emitter && _source) {
  1401. emitter.emit("compile-error" /* VueDevToolsTimelineEvents.COMPILE_ERROR */, {
  1402. message: _source,
  1403. error: err.message,
  1404. start: err.location && err.location.start.offset,
  1405. end: err.location && err.location.end.offset,
  1406. groupId: `${'translate'}:${key}`
  1407. });
  1408. }
  1409. console.error(codeFrame ? `${message}\n${codeFrame}` : message);
  1410. }
  1411. },
  1412. onCacheKey: (source) => shared.generateFormatCacheKey(locale, key, source)
  1413. };
  1414. }
  1415. function getSourceForCodeFrame(source) {
  1416. if (shared.isString(source)) {
  1417. return source;
  1418. }
  1419. else {
  1420. if (source.loc && source.loc.source) {
  1421. return source.loc.source;
  1422. }
  1423. }
  1424. }
  1425. function getMessageContextOptions(context, locale, message, options) {
  1426. const { modifiers, pluralRules, messageResolver: resolveValue, fallbackLocale, fallbackWarn, missingWarn, fallbackContext } = context;
  1427. const resolveMessage = (key) => {
  1428. let val = resolveValue(message, key);
  1429. // fallback to root context
  1430. if (val == null && fallbackContext) {
  1431. const [, , message] = resolveMessageFormat(fallbackContext, key, locale, fallbackLocale, fallbackWarn, missingWarn);
  1432. val = resolveValue(message, key);
  1433. }
  1434. if (shared.isString(val) || isMessageAST(val)) {
  1435. let occurred = false;
  1436. const onError = () => {
  1437. occurred = true;
  1438. };
  1439. const msg = compileMessageFormat(context, key, locale, val, key, onError);
  1440. return !occurred
  1441. ? msg
  1442. : NOOP_MESSAGE_FUNCTION;
  1443. }
  1444. else if (isMessageFunction(val)) {
  1445. return val;
  1446. }
  1447. else {
  1448. // TODO: should be implemented warning message
  1449. return NOOP_MESSAGE_FUNCTION;
  1450. }
  1451. };
  1452. const ctxOptions = {
  1453. locale,
  1454. modifiers,
  1455. pluralRules,
  1456. messages: resolveMessage
  1457. };
  1458. if (context.processor) {
  1459. ctxOptions.processor = context.processor;
  1460. }
  1461. if (options.list) {
  1462. ctxOptions.list = options.list;
  1463. }
  1464. if (options.named) {
  1465. ctxOptions.named = options.named;
  1466. }
  1467. if (shared.isNumber(options.plural)) {
  1468. ctxOptions.pluralIndex = options.plural;
  1469. }
  1470. return ctxOptions;
  1471. }
  1472. const intlDefined = typeof Intl !== 'undefined';
  1473. const Availabilities = {
  1474. dateTimeFormat: intlDefined && typeof Intl.DateTimeFormat !== 'undefined',
  1475. numberFormat: intlDefined && typeof Intl.NumberFormat !== 'undefined'
  1476. };
  1477. // implementation of `datetime` function
  1478. function datetime(context, ...args) {
  1479. const { datetimeFormats, unresolving, fallbackLocale, onWarn, localeFallbacker } = context;
  1480. const { __datetimeFormatters } = context;
  1481. if (!Availabilities.dateTimeFormat) {
  1482. onWarn(getWarnMessage(CoreWarnCodes.CANNOT_FORMAT_DATE));
  1483. return MISSING_RESOLVE_VALUE;
  1484. }
  1485. const [key, value, options, overrides] = parseDateTimeArgs(...args);
  1486. const missingWarn = shared.isBoolean(options.missingWarn)
  1487. ? options.missingWarn
  1488. : context.missingWarn;
  1489. const fallbackWarn = shared.isBoolean(options.fallbackWarn)
  1490. ? options.fallbackWarn
  1491. : context.fallbackWarn;
  1492. const part = !!options.part;
  1493. const locale = getLocale(context, options);
  1494. const locales = localeFallbacker(context, // eslint-disable-line @typescript-eslint/no-explicit-any
  1495. fallbackLocale, locale);
  1496. if (!shared.isString(key) || key === '') {
  1497. return new Intl.DateTimeFormat(locale, overrides).format(value);
  1498. }
  1499. // resolve format
  1500. let datetimeFormat = {};
  1501. let targetLocale;
  1502. let format = null;
  1503. let from = locale;
  1504. let to = null;
  1505. const type = 'datetime format';
  1506. for (let i = 0; i < locales.length; i++) {
  1507. targetLocale = to = locales[i];
  1508. if (locale !== targetLocale &&
  1509. isTranslateFallbackWarn(fallbackWarn, key)) {
  1510. onWarn(getWarnMessage(CoreWarnCodes.FALLBACK_TO_DATE_FORMAT, {
  1511. key,
  1512. target: targetLocale
  1513. }));
  1514. }
  1515. // for vue-devtools timeline event
  1516. if (locale !== targetLocale) {
  1517. const emitter = context.__v_emitter;
  1518. if (emitter) {
  1519. emitter.emit("fallback" /* VueDevToolsTimelineEvents.FALBACK */, {
  1520. type,
  1521. key,
  1522. from,
  1523. to,
  1524. groupId: `${type}:${key}`
  1525. });
  1526. }
  1527. }
  1528. datetimeFormat =
  1529. datetimeFormats[targetLocale] || {};
  1530. format = datetimeFormat[key];
  1531. if (shared.isPlainObject(format))
  1532. break;
  1533. handleMissing(context, key, targetLocale, missingWarn, type); // eslint-disable-line @typescript-eslint/no-explicit-any
  1534. from = to;
  1535. }
  1536. // checking format and target locale
  1537. if (!shared.isPlainObject(format) || !shared.isString(targetLocale)) {
  1538. return unresolving ? NOT_REOSLVED : key;
  1539. }
  1540. let id = `${targetLocale}__${key}`;
  1541. if (!shared.isEmptyObject(overrides)) {
  1542. id = `${id}__${JSON.stringify(overrides)}`;
  1543. }
  1544. let formatter = __datetimeFormatters.get(id);
  1545. if (!formatter) {
  1546. formatter = new Intl.DateTimeFormat(targetLocale, shared.assign({}, format, overrides));
  1547. __datetimeFormatters.set(id, formatter);
  1548. }
  1549. return !part ? formatter.format(value) : formatter.formatToParts(value);
  1550. }
  1551. /** @internal */
  1552. const DATETIME_FORMAT_OPTIONS_KEYS = [
  1553. 'localeMatcher',
  1554. 'weekday',
  1555. 'era',
  1556. 'year',
  1557. 'month',
  1558. 'day',
  1559. 'hour',
  1560. 'minute',
  1561. 'second',
  1562. 'timeZoneName',
  1563. 'formatMatcher',
  1564. 'hour12',
  1565. 'timeZone',
  1566. 'dateStyle',
  1567. 'timeStyle',
  1568. 'calendar',
  1569. 'dayPeriod',
  1570. 'numberingSystem',
  1571. 'hourCycle',
  1572. 'fractionalSecondDigits'
  1573. ];
  1574. /** @internal */
  1575. function parseDateTimeArgs(...args) {
  1576. const [arg1, arg2, arg3, arg4] = args;
  1577. const options = {};
  1578. let overrides = {};
  1579. let value;
  1580. if (shared.isString(arg1)) {
  1581. // Only allow ISO strings - other date formats are often supported,
  1582. // but may cause different results in different browsers.
  1583. const matches = arg1.match(/(\d{4}-\d{2}-\d{2})(T|\s)?(.*)/);
  1584. if (!matches) {
  1585. throw createCoreError(CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT);
  1586. }
  1587. // Some browsers can not parse the iso datetime separated by space,
  1588. // this is a compromise solution by replace the 'T'/' ' with 'T'
  1589. const dateTime = matches[3]
  1590. ? matches[3].trim().startsWith('T')
  1591. ? `${matches[1].trim()}${matches[3].trim()}`
  1592. : `${matches[1].trim()}T${matches[3].trim()}`
  1593. : matches[1].trim();
  1594. value = new Date(dateTime);
  1595. try {
  1596. // This will fail if the date is not valid
  1597. value.toISOString();
  1598. }
  1599. catch (e) {
  1600. throw createCoreError(CoreErrorCodes.INVALID_ISO_DATE_ARGUMENT);
  1601. }
  1602. }
  1603. else if (shared.isDate(arg1)) {
  1604. if (isNaN(arg1.getTime())) {
  1605. throw createCoreError(CoreErrorCodes.INVALID_DATE_ARGUMENT);
  1606. }
  1607. value = arg1;
  1608. }
  1609. else if (shared.isNumber(arg1)) {
  1610. value = arg1;
  1611. }
  1612. else {
  1613. throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);
  1614. }
  1615. if (shared.isString(arg2)) {
  1616. options.key = arg2;
  1617. }
  1618. else if (shared.isPlainObject(arg2)) {
  1619. Object.keys(arg2).forEach(key => {
  1620. if (DATETIME_FORMAT_OPTIONS_KEYS.includes(key)) {
  1621. overrides[key] = arg2[key];
  1622. }
  1623. else {
  1624. options[key] = arg2[key];
  1625. }
  1626. });
  1627. }
  1628. if (shared.isString(arg3)) {
  1629. options.locale = arg3;
  1630. }
  1631. else if (shared.isPlainObject(arg3)) {
  1632. overrides = arg3;
  1633. }
  1634. if (shared.isPlainObject(arg4)) {
  1635. overrides = arg4;
  1636. }
  1637. return [options.key || '', value, options, overrides];
  1638. }
  1639. /** @internal */
  1640. function clearDateTimeFormat(ctx, locale, format) {
  1641. const context = ctx;
  1642. for (const key in format) {
  1643. const id = `${locale}__${key}`;
  1644. if (!context.__datetimeFormatters.has(id)) {
  1645. continue;
  1646. }
  1647. context.__datetimeFormatters.delete(id);
  1648. }
  1649. }
  1650. // implementation of `number` function
  1651. function number(context, ...args) {
  1652. const { numberFormats, unresolving, fallbackLocale, onWarn, localeFallbacker } = context;
  1653. const { __numberFormatters } = context;
  1654. if (!Availabilities.numberFormat) {
  1655. onWarn(getWarnMessage(CoreWarnCodes.CANNOT_FORMAT_NUMBER));
  1656. return MISSING_RESOLVE_VALUE;
  1657. }
  1658. const [key, value, options, overrides] = parseNumberArgs(...args);
  1659. const missingWarn = shared.isBoolean(options.missingWarn)
  1660. ? options.missingWarn
  1661. : context.missingWarn;
  1662. const fallbackWarn = shared.isBoolean(options.fallbackWarn)
  1663. ? options.fallbackWarn
  1664. : context.fallbackWarn;
  1665. const part = !!options.part;
  1666. const locale = getLocale(context, options);
  1667. const locales = localeFallbacker(context, // eslint-disable-line @typescript-eslint/no-explicit-any
  1668. fallbackLocale, locale);
  1669. if (!shared.isString(key) || key === '') {
  1670. return new Intl.NumberFormat(locale, overrides).format(value);
  1671. }
  1672. // resolve format
  1673. let numberFormat = {};
  1674. let targetLocale;
  1675. let format = null;
  1676. let from = locale;
  1677. let to = null;
  1678. const type = 'number format';
  1679. for (let i = 0; i < locales.length; i++) {
  1680. targetLocale = to = locales[i];
  1681. if (locale !== targetLocale &&
  1682. isTranslateFallbackWarn(fallbackWarn, key)) {
  1683. onWarn(getWarnMessage(CoreWarnCodes.FALLBACK_TO_NUMBER_FORMAT, {
  1684. key,
  1685. target: targetLocale
  1686. }));
  1687. }
  1688. // for vue-devtools timeline event
  1689. if (locale !== targetLocale) {
  1690. const emitter = context.__v_emitter;
  1691. if (emitter) {
  1692. emitter.emit("fallback" /* VueDevToolsTimelineEvents.FALBACK */, {
  1693. type,
  1694. key,
  1695. from,
  1696. to,
  1697. groupId: `${type}:${key}`
  1698. });
  1699. }
  1700. }
  1701. numberFormat =
  1702. numberFormats[targetLocale] || {};
  1703. format = numberFormat[key];
  1704. if (shared.isPlainObject(format))
  1705. break;
  1706. handleMissing(context, key, targetLocale, missingWarn, type); // eslint-disable-line @typescript-eslint/no-explicit-any
  1707. from = to;
  1708. }
  1709. // checking format and target locale
  1710. if (!shared.isPlainObject(format) || !shared.isString(targetLocale)) {
  1711. return unresolving ? NOT_REOSLVED : key;
  1712. }
  1713. let id = `${targetLocale}__${key}`;
  1714. if (!shared.isEmptyObject(overrides)) {
  1715. id = `${id}__${JSON.stringify(overrides)}`;
  1716. }
  1717. let formatter = __numberFormatters.get(id);
  1718. if (!formatter) {
  1719. formatter = new Intl.NumberFormat(targetLocale, shared.assign({}, format, overrides));
  1720. __numberFormatters.set(id, formatter);
  1721. }
  1722. return !part ? formatter.format(value) : formatter.formatToParts(value);
  1723. }
  1724. /** @internal */
  1725. const NUMBER_FORMAT_OPTIONS_KEYS = [
  1726. 'localeMatcher',
  1727. 'style',
  1728. 'currency',
  1729. 'currencyDisplay',
  1730. 'currencySign',
  1731. 'useGrouping',
  1732. 'minimumIntegerDigits',
  1733. 'minimumFractionDigits',
  1734. 'maximumFractionDigits',
  1735. 'minimumSignificantDigits',
  1736. 'maximumSignificantDigits',
  1737. 'compactDisplay',
  1738. 'notation',
  1739. 'signDisplay',
  1740. 'unit',
  1741. 'unitDisplay',
  1742. 'roundingMode',
  1743. 'roundingPriority',
  1744. 'roundingIncrement',
  1745. 'trailingZeroDisplay'
  1746. ];
  1747. /** @internal */
  1748. function parseNumberArgs(...args) {
  1749. const [arg1, arg2, arg3, arg4] = args;
  1750. const options = {};
  1751. let overrides = {};
  1752. if (!shared.isNumber(arg1)) {
  1753. throw createCoreError(CoreErrorCodes.INVALID_ARGUMENT);
  1754. }
  1755. const value = arg1;
  1756. if (shared.isString(arg2)) {
  1757. options.key = arg2;
  1758. }
  1759. else if (shared.isPlainObject(arg2)) {
  1760. Object.keys(arg2).forEach(key => {
  1761. if (NUMBER_FORMAT_OPTIONS_KEYS.includes(key)) {
  1762. overrides[key] = arg2[key];
  1763. }
  1764. else {
  1765. options[key] = arg2[key];
  1766. }
  1767. });
  1768. }
  1769. if (shared.isString(arg3)) {
  1770. options.locale = arg3;
  1771. }
  1772. else if (shared.isPlainObject(arg3)) {
  1773. overrides = arg3;
  1774. }
  1775. if (shared.isPlainObject(arg4)) {
  1776. overrides = arg4;
  1777. }
  1778. return [options.key || '', value, options, overrides];
  1779. }
  1780. /** @internal */
  1781. function clearNumberFormat(ctx, locale, format) {
  1782. const context = ctx;
  1783. for (const key in format) {
  1784. const id = `${locale}__${key}`;
  1785. if (!context.__numberFormatters.has(id)) {
  1786. continue;
  1787. }
  1788. context.__numberFormatters.delete(id);
  1789. }
  1790. }
  1791. exports.CompileErrorCodes = messageCompiler.CompileErrorCodes;
  1792. exports.createCompileError = messageCompiler.createCompileError;
  1793. exports.CoreErrorCodes = CoreErrorCodes;
  1794. exports.CoreWarnCodes = CoreWarnCodes;
  1795. exports.DATETIME_FORMAT_OPTIONS_KEYS = DATETIME_FORMAT_OPTIONS_KEYS;
  1796. exports.DEFAULT_LOCALE = DEFAULT_LOCALE;
  1797. exports.DEFAULT_MESSAGE_DATA_TYPE = DEFAULT_MESSAGE_DATA_TYPE;
  1798. exports.MISSING_RESOLVE_VALUE = MISSING_RESOLVE_VALUE;
  1799. exports.NOT_REOSLVED = NOT_REOSLVED;
  1800. exports.NUMBER_FORMAT_OPTIONS_KEYS = NUMBER_FORMAT_OPTIONS_KEYS;
  1801. exports.VERSION = VERSION;
  1802. exports.clearCompileCache = clearCompileCache;
  1803. exports.clearDateTimeFormat = clearDateTimeFormat;
  1804. exports.clearNumberFormat = clearNumberFormat;
  1805. exports.compile = compile;
  1806. exports.compileToFunction = compileToFunction;
  1807. exports.createCoreContext = createCoreContext;
  1808. exports.createCoreError = createCoreError;
  1809. exports.createMessageContext = createMessageContext;
  1810. exports.datetime = datetime;
  1811. exports.fallbackWithLocaleChain = fallbackWithLocaleChain;
  1812. exports.fallbackWithSimple = fallbackWithSimple;
  1813. exports.getAdditionalMeta = getAdditionalMeta;
  1814. exports.getDevToolsHook = getDevToolsHook;
  1815. exports.getFallbackContext = getFallbackContext;
  1816. exports.getLocale = getLocale;
  1817. exports.getWarnMessage = getWarnMessage;
  1818. exports.handleMissing = handleMissing;
  1819. exports.initI18nDevTools = initI18nDevTools;
  1820. exports.isAlmostSameLocale = isAlmostSameLocale;
  1821. exports.isImplicitFallback = isImplicitFallback;
  1822. exports.isMessageAST = isMessageAST;
  1823. exports.isMessageFunction = isMessageFunction;
  1824. exports.isTranslateFallbackWarn = isTranslateFallbackWarn;
  1825. exports.isTranslateMissingWarn = isTranslateMissingWarn;
  1826. exports.number = number;
  1827. exports.parse = parse;
  1828. exports.parseDateTimeArgs = parseDateTimeArgs;
  1829. exports.parseNumberArgs = parseNumberArgs;
  1830. exports.parseTranslateArgs = parseTranslateArgs;
  1831. exports.registerLocaleFallbacker = registerLocaleFallbacker;
  1832. exports.registerMessageCompiler = registerMessageCompiler;
  1833. exports.registerMessageResolver = registerMessageResolver;
  1834. exports.resolveLocale = resolveLocale;
  1835. exports.resolveValue = resolveValue;
  1836. exports.resolveWithKeyValue = resolveWithKeyValue;
  1837. exports.setAdditionalMeta = setAdditionalMeta;
  1838. exports.setDevToolsHook = setDevToolsHook;
  1839. exports.setFallbackContext = setFallbackContext;
  1840. exports.translate = translate;
  1841. exports.translateDevTools = translateDevTools;
  1842. exports.updateFallbackLocale = updateFallbackLocale;