| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750 |
- /*!
- * vue-i18n v9.1.9
- * (c) 2021 kazuya kawaguchi
- * Released under the MIT License.
- */
- var VueI18n = (function (exports, vue) {
- 'use strict';
- /**
- * Original Utilities
- * written by kazuya kawaguchi
- */
- const inBrowser = typeof window !== 'undefined';
- let mark;
- let measure;
- {
- const perf = inBrowser && window.performance;
- if (perf &&
- perf.mark &&
- perf.measure &&
- perf.clearMarks &&
- perf.clearMeasures) {
- mark = (tag) => perf.mark(tag);
- measure = (name, startTag, endTag) => {
- perf.measure(name, startTag, endTag);
- perf.clearMarks(startTag);
- perf.clearMarks(endTag);
- };
- }
- }
- const RE_ARGS = /\{([0-9a-zA-Z]+)\}/g;
- /* eslint-disable */
- function format(message, ...args) {
- if (args.length === 1 && isObject(args[0])) {
- args = args[0];
- }
- if (!args || !args.hasOwnProperty) {
- args = {};
- }
- return message.replace(RE_ARGS, (match, identifier) => {
- return args.hasOwnProperty(identifier) ? args[identifier] : '';
- });
- }
- const hasSymbol = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
- const makeSymbol = (name) => hasSymbol ? Symbol(name) : name;
- const generateFormatCacheKey = (locale, key, source) => friendlyJSONstringify({ l: locale, k: key, s: source });
- const friendlyJSONstringify = (json) => JSON.stringify(json)
- .replace(/\u2028/g, '\\u2028')
- .replace(/\u2029/g, '\\u2029')
- .replace(/\u0027/g, '\\u0027');
- const isNumber = (val) => typeof val === 'number' && isFinite(val);
- const isDate = (val) => toTypeString(val) === '[object Date]';
- const isRegExp = (val) => toTypeString(val) === '[object RegExp]';
- const isEmptyObject = (val) => isPlainObject(val) && Object.keys(val).length === 0;
- function warn(msg, err) {
- if (typeof console !== 'undefined') {
- console.warn(`[intlify] ` + msg);
- /* istanbul ignore if */
- if (err) {
- console.warn(err.stack);
- }
- }
- }
- const assign = Object.assign;
- let _globalThis;
- const getGlobalThis = () => {
- // prettier-ignore
- return (_globalThis ||
- (_globalThis =
- typeof globalThis !== 'undefined'
- ? globalThis
- : typeof self !== 'undefined'
- ? self
- : typeof window !== 'undefined'
- ? window
- : typeof global !== 'undefined'
- ? global
- : {}));
- };
- function escapeHtml(rawText) {
- return rawText
- .replace(/</g, '<')
- .replace(/>/g, '>')
- .replace(/"/g, '"')
- .replace(/'/g, ''');
- }
- const hasOwnProperty = Object.prototype.hasOwnProperty;
- function hasOwn(obj, key) {
- return hasOwnProperty.call(obj, key);
- }
- /* eslint-enable */
- /**
- * Useful Utilities By Evan you
- * Modified by kazuya kawaguchi
- * MIT License
- * https://github.com/vuejs/vue-next/blob/master/packages/shared/src/index.ts
- * https://github.com/vuejs/vue-next/blob/master/packages/shared/src/codeframe.ts
- */
- const isArray = Array.isArray;
- const isFunction = (val) => typeof val === 'function';
- const isString = (val) => typeof val === 'string';
- const isBoolean = (val) => typeof val === 'boolean';
- const isObject = (val) => // eslint-disable-line
- val !== null && typeof val === 'object';
- const objectToString = Object.prototype.toString;
- const toTypeString = (value) => objectToString.call(value);
- const isPlainObject = (val) => toTypeString(val) === '[object Object]';
- // for converting list and named values to displayed strings.
- const toDisplayString = (val) => {
- return val == null
- ? ''
- : isArray(val) || (isPlainObject(val) && val.toString === objectToString)
- ? JSON.stringify(val, null, 2)
- : String(val);
- };
- const RANGE = 2;
- function generateCodeFrame(source, start = 0, end = source.length) {
- const lines = source.split(/\r?\n/);
- let count = 0;
- const res = [];
- for (let i = 0; i < lines.length; i++) {
- count += lines[i].length + 1;
- if (count >= start) {
- for (let j = i - RANGE; j <= i + RANGE || end > count; j++) {
- if (j < 0 || j >= lines.length)
- continue;
- const line = j + 1;
- res.push(`${line}${' '.repeat(3 - String(line).length)}| ${lines[j]}`);
- const lineLength = lines[j].length;
- if (j === i) {
- // push underline
- const pad = start - (count - lineLength) + 1;
- const length = Math.max(1, end > count ? lineLength - pad : end - start);
- res.push(` | ` + ' '.repeat(pad) + '^'.repeat(length));
- }
- else if (j > i) {
- if (end > count) {
- const length = Math.max(Math.min(end - count, lineLength), 1);
- res.push(` | ` + '^'.repeat(length));
- }
- count += lineLength + 1;
- }
- }
- break;
- }
- }
- return res.join('\n');
- }
- /**
- * Event emitter, forked from the below:
- * - original repository url: https://github.com/developit/mitt
- * - code url: https://github.com/developit/mitt/blob/master/src/index.ts
- * - author: Jason Miller (https://github.com/developit)
- * - license: MIT
- */
- /**
- * Create a event emitter
- *
- * @returns An event emitter
- */
- function createEmitter() {
- const events = new Map();
- const emitter = {
- events,
- on(event, handler) {
- const handlers = events.get(event);
- const added = handlers && handlers.push(handler);
- if (!added) {
- events.set(event, [handler]);
- }
- },
- off(event, handler) {
- const handlers = events.get(event);
- if (handlers) {
- handlers.splice(handlers.indexOf(handler) >>> 0, 1);
- }
- },
- emit(event, payload) {
- (events.get(event) || [])
- .slice()
- .map(handler => handler(payload));
- (events.get('*') || [])
- .slice()
- .map(handler => handler(event, payload));
- }
- };
- return emitter;
- }
- const pathStateMachine = [];
- pathStateMachine[0 /* BEFORE_PATH */] = {
- ["w" /* WORKSPACE */]: [0 /* BEFORE_PATH */],
- ["i" /* IDENT */]: [3 /* IN_IDENT */, 0 /* APPEND */],
- ["[" /* LEFT_BRACKET */]: [4 /* IN_SUB_PATH */],
- ["o" /* END_OF_FAIL */]: [7 /* AFTER_PATH */]
- };
- pathStateMachine[1 /* IN_PATH */] = {
- ["w" /* WORKSPACE */]: [1 /* IN_PATH */],
- ["." /* DOT */]: [2 /* BEFORE_IDENT */],
- ["[" /* LEFT_BRACKET */]: [4 /* IN_SUB_PATH */],
- ["o" /* END_OF_FAIL */]: [7 /* AFTER_PATH */]
- };
- pathStateMachine[2 /* BEFORE_IDENT */] = {
- ["w" /* WORKSPACE */]: [2 /* BEFORE_IDENT */],
- ["i" /* IDENT */]: [3 /* IN_IDENT */, 0 /* APPEND */],
- ["0" /* ZERO */]: [3 /* IN_IDENT */, 0 /* APPEND */]
- };
- pathStateMachine[3 /* IN_IDENT */] = {
- ["i" /* IDENT */]: [3 /* IN_IDENT */, 0 /* APPEND */],
- ["0" /* ZERO */]: [3 /* IN_IDENT */, 0 /* APPEND */],
- ["w" /* WORKSPACE */]: [1 /* IN_PATH */, 1 /* PUSH */],
- ["." /* DOT */]: [2 /* BEFORE_IDENT */, 1 /* PUSH */],
- ["[" /* LEFT_BRACKET */]: [4 /* IN_SUB_PATH */, 1 /* PUSH */],
- ["o" /* END_OF_FAIL */]: [7 /* AFTER_PATH */, 1 /* PUSH */]
- };
- pathStateMachine[4 /* IN_SUB_PATH */] = {
- ["'" /* SINGLE_QUOTE */]: [5 /* IN_SINGLE_QUOTE */, 0 /* APPEND */],
- ["\"" /* DOUBLE_QUOTE */]: [6 /* IN_DOUBLE_QUOTE */, 0 /* APPEND */],
- ["[" /* LEFT_BRACKET */]: [
- 4 /* IN_SUB_PATH */,
- 2 /* INC_SUB_PATH_DEPTH */
- ],
- ["]" /* RIGHT_BRACKET */]: [1 /* IN_PATH */, 3 /* PUSH_SUB_PATH */],
- ["o" /* END_OF_FAIL */]: 8 /* ERROR */,
- ["l" /* ELSE */]: [4 /* IN_SUB_PATH */, 0 /* APPEND */]
- };
- pathStateMachine[5 /* IN_SINGLE_QUOTE */] = {
- ["'" /* SINGLE_QUOTE */]: [4 /* IN_SUB_PATH */, 0 /* APPEND */],
- ["o" /* END_OF_FAIL */]: 8 /* ERROR */,
- ["l" /* ELSE */]: [5 /* IN_SINGLE_QUOTE */, 0 /* APPEND */]
- };
- pathStateMachine[6 /* IN_DOUBLE_QUOTE */] = {
- ["\"" /* DOUBLE_QUOTE */]: [4 /* IN_SUB_PATH */, 0 /* APPEND */],
- ["o" /* END_OF_FAIL */]: 8 /* ERROR */,
- ["l" /* ELSE */]: [6 /* IN_DOUBLE_QUOTE */, 0 /* APPEND */]
- };
- /**
- * Check if an expression is a literal value.
- */
- const literalValueRE = /^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;
- function isLiteral(exp) {
- return literalValueRE.test(exp);
- }
- /**
- * Strip quotes from a string
- */
- function stripQuotes(str) {
- const a = str.charCodeAt(0);
- const b = str.charCodeAt(str.length - 1);
- return a === b && (a === 0x22 || a === 0x27) ? str.slice(1, -1) : str;
- }
- /**
- * Determine the type of a character in a keypath.
- */
- function getPathCharType(ch) {
- if (ch === undefined || ch === null) {
- return "o" /* END_OF_FAIL */;
- }
- const code = ch.charCodeAt(0);
- switch (code) {
- case 0x5b: // [
- case 0x5d: // ]
- case 0x2e: // .
- case 0x22: // "
- case 0x27: // '
- return ch;
- case 0x5f: // _
- case 0x24: // $
- case 0x2d: // -
- return "i" /* IDENT */;
- case 0x09: // Tab (HT)
- case 0x0a: // Newline (LF)
- case 0x0d: // Return (CR)
- case 0xa0: // No-break space (NBSP)
- case 0xfeff: // Byte Order Mark (BOM)
- case 0x2028: // Line Separator (LS)
- case 0x2029: // Paragraph Separator (PS)
- return "w" /* WORKSPACE */;
- }
- return "i" /* IDENT */;
- }
- /**
- * Format a subPath, return its plain form if it is
- * a literal string or number. Otherwise prepend the
- * dynamic indicator (*).
- */
- function formatSubPath(path) {
- const trimmed = path.trim();
- // invalid leading 0
- if (path.charAt(0) === '0' && isNaN(parseInt(path))) {
- return false;
- }
- return isLiteral(trimmed)
- ? stripQuotes(trimmed)
- : "*" /* ASTARISK */ + trimmed;
- }
- /**
- * Parse a string path into an array of segments
- */
- function parse(path) {
- const keys = [];
- let index = -1;
- let mode = 0 /* BEFORE_PATH */;
- let subPathDepth = 0;
- let c;
- let key; // eslint-disable-line
- let newChar;
- let type;
- let transition;
- let action;
- let typeMap;
- const actions = [];
- actions[0 /* APPEND */] = () => {
- if (key === undefined) {
- key = newChar;
- }
- else {
- key += newChar;
- }
- };
- actions[1 /* PUSH */] = () => {
- if (key !== undefined) {
- keys.push(key);
- key = undefined;
- }
- };
- actions[2 /* INC_SUB_PATH_DEPTH */] = () => {
- actions[0 /* APPEND */]();
- subPathDepth++;
- };
- actions[3 /* PUSH_SUB_PATH */] = () => {
- if (subPathDepth > 0) {
- subPathDepth--;
- mode = 4 /* IN_SUB_PATH */;
- actions[0 /* APPEND */]();
- }
- else {
- subPathDepth = 0;
- if (key === undefined) {
- return false;
- }
- key = formatSubPath(key);
- if (key === false) {
- return false;
- }
- else {
- actions[1 /* PUSH */]();
- }
- }
- };
- function maybeUnescapeQuote() {
- const nextChar = path[index + 1];
- if ((mode === 5 /* IN_SINGLE_QUOTE */ &&
- nextChar === "'" /* SINGLE_QUOTE */) ||
- (mode === 6 /* IN_DOUBLE_QUOTE */ &&
- nextChar === "\"" /* DOUBLE_QUOTE */)) {
- index++;
- newChar = '\\' + nextChar;
- actions[0 /* APPEND */]();
- return true;
- }
- }
- while (mode !== null) {
- index++;
- c = path[index];
- if (c === '\\' && maybeUnescapeQuote()) {
- continue;
- }
- type = getPathCharType(c);
- typeMap = pathStateMachine[mode];
- transition = typeMap[type] || typeMap["l" /* ELSE */] || 8 /* ERROR */;
- // check parse error
- if (transition === 8 /* ERROR */) {
- return;
- }
- mode = transition[0];
- if (transition[1] !== undefined) {
- action = actions[transition[1]];
- if (action) {
- newChar = c;
- if (action() === false) {
- return;
- }
- }
- }
- // check parse finish
- if (mode === 7 /* AFTER_PATH */) {
- return keys;
- }
- }
- }
- // path token cache
- const cache = new Map();
- function resolveValue(obj, path) {
- // check object
- if (!isObject(obj)) {
- return null;
- }
- // parse path
- let hit = cache.get(path);
- if (!hit) {
- hit = parse(path);
- if (hit) {
- cache.set(path, hit);
- }
- }
- // check hit
- if (!hit) {
- return null;
- }
- // resolve path value
- const len = hit.length;
- let last = obj;
- let i = 0;
- while (i < len) {
- const val = last[hit[i]];
- if (val === undefined) {
- return null;
- }
- last = val;
- i++;
- }
- return last;
- }
- /**
- * Transform flat json in obj to normal json in obj
- */
- function handleFlatJson(obj) {
- // check obj
- if (!isObject(obj)) {
- return obj;
- }
- for (const key in obj) {
- // check key
- if (!hasOwn(obj, key)) {
- continue;
- }
- // handle for normal json
- if (!key.includes("." /* DOT */)) {
- // recursive process value if value is also a object
- if (isObject(obj[key])) {
- handleFlatJson(obj[key]);
- }
- }
- // handle for flat json, transform to normal json
- else {
- // go to the last object
- const subKeys = key.split("." /* DOT */);
- const lastIndex = subKeys.length - 1;
- let currentObj = obj;
- for (let i = 0; i < lastIndex; i++) {
- if (!(subKeys[i] in currentObj)) {
- currentObj[subKeys[i]] = {};
- }
- currentObj = currentObj[subKeys[i]];
- }
- // update last object value, delete old property
- currentObj[subKeys[lastIndex]] = obj[key];
- delete obj[key];
- // recursive process value if value is also a object
- if (isObject(currentObj[subKeys[lastIndex]])) {
- handleFlatJson(currentObj[subKeys[lastIndex]]);
- }
- }
- }
- return obj;
- }
- const DEFAULT_MODIFIER = (str) => str;
- const DEFAULT_MESSAGE = (ctx) => ''; // eslint-disable-line
- const DEFAULT_MESSAGE_DATA_TYPE = 'text';
- const DEFAULT_NORMALIZE = (values) => values.length === 0 ? '' : values.join('');
- const DEFAULT_INTERPOLATE = toDisplayString;
- function pluralDefault(choice, choicesLength) {
- choice = Math.abs(choice);
- if (choicesLength === 2) {
- // prettier-ignore
- return choice
- ? choice > 1
- ? 1
- : 0
- : 1;
- }
- return choice ? Math.min(choice, 2) : 0;
- }
- function getPluralIndex(options) {
- // prettier-ignore
- const index = isNumber(options.pluralIndex)
- ? options.pluralIndex
- : -1;
- // prettier-ignore
- return options.named && (isNumber(options.named.count) || isNumber(options.named.n))
- ? isNumber(options.named.count)
- ? options.named.count
- : isNumber(options.named.n)
- ? options.named.n
- : index
- : index;
- }
- function normalizeNamed(pluralIndex, props) {
- if (!props.count) {
- props.count = pluralIndex;
- }
- if (!props.n) {
- props.n = pluralIndex;
- }
- }
- function createMessageContext(options = {}) {
- const locale = options.locale;
- const pluralIndex = getPluralIndex(options);
- const pluralRule = isObject(options.pluralRules) &&
- isString(locale) &&
- isFunction(options.pluralRules[locale])
- ? options.pluralRules[locale]
- : pluralDefault;
- const orgPluralRule = isObject(options.pluralRules) &&
- isString(locale) &&
- isFunction(options.pluralRules[locale])
- ? pluralDefault
- : undefined;
- const plural = (messages) => messages[pluralRule(pluralIndex, messages.length, orgPluralRule)];
- const _list = options.list || [];
- const list = (index) => _list[index];
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- const _named = options.named || {};
- isNumber(options.pluralIndex) && normalizeNamed(pluralIndex, _named);
- const named = (key) => _named[key];
- // TODO: need to design resolve message function?
- function message(key) {
- // prettier-ignore
- const msg = isFunction(options.messages)
- ? options.messages(key)
- : isObject(options.messages)
- ? options.messages[key]
- : false;
- return !msg
- ? options.parent
- ? options.parent.message(key) // resolve from parent messages
- : DEFAULT_MESSAGE
- : msg;
- }
- const _modifier = (name) => options.modifiers
- ? options.modifiers[name]
- : DEFAULT_MODIFIER;
- const normalize = isPlainObject(options.processor) && isFunction(options.processor.normalize)
- ? options.processor.normalize
- : DEFAULT_NORMALIZE;
- const interpolate = isPlainObject(options.processor) &&
- isFunction(options.processor.interpolate)
- ? options.processor.interpolate
- : DEFAULT_INTERPOLATE;
- const type = isPlainObject(options.processor) && isString(options.processor.type)
- ? options.processor.type
- : DEFAULT_MESSAGE_DATA_TYPE;
- const ctx = {
- ["list" /* LIST */]: list,
- ["named" /* NAMED */]: named,
- ["plural" /* PLURAL */]: plural,
- ["linked" /* LINKED */]: (key, modifier) => {
- // TODO: should check `key`
- const msg = message(key)(ctx);
- return isString(modifier) ? _modifier(modifier)(msg) : msg;
- },
- ["message" /* MESSAGE */]: message,
- ["type" /* TYPE */]: type,
- ["interpolate" /* INTERPOLATE */]: interpolate,
- ["normalize" /* NORMALIZE */]: normalize
- };
- return ctx;
- }
- /** @internal */
- const errorMessages$2 = {
- // tokenizer error messages
- [0 /* EXPECTED_TOKEN */]: `Expected token: '{0}'`,
- [1 /* INVALID_TOKEN_IN_PLACEHOLDER */]: `Invalid token in placeholder: '{0}'`,
- [2 /* UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER */]: `Unterminated single quote in placeholder`,
- [3 /* UNKNOWN_ESCAPE_SEQUENCE */]: `Unknown escape sequence: \\{0}`,
- [4 /* INVALID_UNICODE_ESCAPE_SEQUENCE */]: `Invalid unicode escape sequence: {0}`,
- [5 /* UNBALANCED_CLOSING_BRACE */]: `Unbalanced closing brace`,
- [6 /* UNTERMINATED_CLOSING_BRACE */]: `Unterminated closing brace`,
- [7 /* EMPTY_PLACEHOLDER */]: `Empty placeholder`,
- [8 /* NOT_ALLOW_NEST_PLACEHOLDER */]: `Not allowed nest placeholder`,
- [9 /* INVALID_LINKED_FORMAT */]: `Invalid linked format`,
- // parser error messages
- [10 /* MUST_HAVE_MESSAGES_IN_PLURAL */]: `Plural must have messages`,
- [11 /* UNEXPECTED_EMPTY_LINKED_MODIFIER */]: `Unexpected empty linked modifier`,
- [12 /* UNEXPECTED_EMPTY_LINKED_KEY */]: `Unexpected empty linked key`,
- [13 /* UNEXPECTED_LEXICAL_ANALYSIS */]: `Unexpected lexical analysis in token: '{0}'`
- };
- function createCompileError(code, loc, options = {}) {
- const { domain, messages, args } = options;
- const msg = format((messages || errorMessages$2)[code] || '', ...(args || []))
- ;
- const error = new SyntaxError(String(msg));
- error.code = code;
- if (loc) {
- error.location = loc;
- }
- error.domain = domain;
- return error;
- }
- const IntlifyDevToolsHooks = {
- I18nInit: 'i18n:init',
- FunctionTranslate: 'function:translate'
- };
- let devtools = null;
- function setDevToolsHook(hook) {
- devtools = hook;
- }
- function initI18nDevTools(i18n, version, meta) {
- // TODO: queue if devtools is undefined
- devtools &&
- devtools.emit(IntlifyDevToolsHooks.I18nInit, {
- timestamp: Date.now(),
- i18n,
- version,
- meta
- });
- }
- const translateDevTools = /* #__PURE__*/ createDevToolsHook(IntlifyDevToolsHooks.FunctionTranslate);
- function createDevToolsHook(hook) {
- return (payloads) => devtools && devtools.emit(hook, payloads);
- }
- /** @internal */
- const warnMessages$1 = {
- [0 /* NOT_FOUND_KEY */]: `Not found '{key}' key in '{locale}' locale messages.`,
- [1 /* FALLBACK_TO_TRANSLATE */]: `Fall back to translate '{key}' key with '{target}' locale.`,
- [2 /* CANNOT_FORMAT_NUMBER */]: `Cannot format a number value due to not supported Intl.NumberFormat.`,
- [3 /* FALLBACK_TO_NUMBER_FORMAT */]: `Fall back to number format '{key}' key with '{target}' locale.`,
- [4 /* CANNOT_FORMAT_DATE */]: `Cannot format a date value due to not supported Intl.DateTimeFormat.`,
- [5 /* FALLBACK_TO_DATE_FORMAT */]: `Fall back to datetime format '{key}' key with '{target}' locale.`
- };
- function getWarnMessage$1(code, ...args) {
- return format(warnMessages$1[code], ...args);
- }
- /**
- * Intlify core-base version
- * @internal
- */
- const VERSION$1 = '9.1.9';
- const NOT_REOSLVED = -1;
- const MISSING_RESOLVE_VALUE = '';
- function getDefaultLinkedModifiers() {
- return {
- upper: (val) => (isString(val) ? val.toUpperCase() : val),
- lower: (val) => (isString(val) ? val.toLowerCase() : val),
- // prettier-ignore
- capitalize: (val) => (isString(val)
- ? `${val.charAt(0).toLocaleUpperCase()}${val.substr(1)}`
- : val)
- };
- }
- let _compiler;
- // Additional Meta for Intlify DevTools
- let _additionalMeta = null;
- const setAdditionalMeta = /* #__PURE__*/ (meta) => {
- _additionalMeta = meta;
- };
- const getAdditionalMeta = /* #__PURE__*/ () => _additionalMeta;
- // ID for CoreContext
- let _cid = 0;
- function createCoreContext(options = {}) {
- // setup options
- const version = isString(options.version) ? options.version : VERSION$1;
- const locale = isString(options.locale) ? options.locale : 'en-US';
- const fallbackLocale = isArray(options.fallbackLocale) ||
- isPlainObject(options.fallbackLocale) ||
- isString(options.fallbackLocale) ||
- options.fallbackLocale === false
- ? options.fallbackLocale
- : locale;
- const messages = isPlainObject(options.messages)
- ? options.messages
- : { [locale]: {} };
- const datetimeFormats = isPlainObject(options.datetimeFormats)
- ? options.datetimeFormats
- : { [locale]: {} };
- const numberFormats = isPlainObject(options.numberFormats)
- ? options.numberFormats
- : { [locale]: {} };
- const modifiers = assign({}, options.modifiers || {}, getDefaultLinkedModifiers());
- const pluralRules = options.pluralRules || {};
- const missing = isFunction(options.missing) ? options.missing : null;
- const missingWarn = isBoolean(options.missingWarn) || isRegExp(options.missingWarn)
- ? options.missingWarn
- : true;
- const fallbackWarn = isBoolean(options.fallbackWarn) || isRegExp(options.fallbackWarn)
- ? options.fallbackWarn
- : true;
- const fallbackFormat = !!options.fallbackFormat;
- const unresolving = !!options.unresolving;
- const postTranslation = isFunction(options.postTranslation)
- ? options.postTranslation
- : null;
- const processor = isPlainObject(options.processor) ? options.processor : null;
- const warnHtmlMessage = isBoolean(options.warnHtmlMessage)
- ? options.warnHtmlMessage
- : true;
- const escapeParameter = !!options.escapeParameter;
- const messageCompiler = isFunction(options.messageCompiler)
- ? options.messageCompiler
- : _compiler;
- const onWarn = isFunction(options.onWarn) ? options.onWarn : warn;
- // setup internal options
- const internalOptions = options;
- const __datetimeFormatters = isObject(internalOptions.__datetimeFormatters)
- ? internalOptions.__datetimeFormatters
- : new Map();
- const __numberFormatters = isObject(internalOptions.__numberFormatters)
- ? internalOptions.__numberFormatters
- : new Map();
- const __meta = isObject(internalOptions.__meta) ? internalOptions.__meta : {};
- _cid++;
- const context = {
- version,
- cid: _cid,
- locale,
- fallbackLocale,
- messages,
- datetimeFormats,
- numberFormats,
- modifiers,
- pluralRules,
- missing,
- missingWarn,
- fallbackWarn,
- fallbackFormat,
- unresolving,
- postTranslation,
- processor,
- warnHtmlMessage,
- escapeParameter,
- messageCompiler,
- onWarn,
- __datetimeFormatters,
- __numberFormatters,
- __meta
- };
- // for vue-devtools timeline event
- {
- context.__v_emitter =
- internalOptions.__v_emitter != null
- ? internalOptions.__v_emitter
- : undefined;
- }
- // NOTE: experimental !!
- {
- initI18nDevTools(context, version, __meta);
- }
- return context;
- }
- /** @internal */
- function isTranslateFallbackWarn(fallback, key) {
- return fallback instanceof RegExp ? fallback.test(key) : fallback;
- }
- /** @internal */
- function isTranslateMissingWarn(missing, key) {
- return missing instanceof RegExp ? missing.test(key) : missing;
- }
- /** @internal */
- function handleMissing(context, key, locale, missingWarn, type) {
- const { missing, onWarn } = context;
- // for vue-devtools timeline event
- {
- const emitter = context.__v_emitter;
- if (emitter) {
- emitter.emit("missing" /* MISSING */, {
- locale,
- key,
- type,
- groupId: `${type}:${key}`
- });
- }
- }
- if (missing !== null) {
- const ret = missing(context, locale, key, type);
- return isString(ret) ? ret : key;
- }
- else {
- if (isTranslateMissingWarn(missingWarn, key)) {
- onWarn(getWarnMessage$1(0 /* NOT_FOUND_KEY */, { key, locale }));
- }
- return key;
- }
- }
- /** @internal */
- function getLocaleChain(ctx, fallback, start) {
- const context = ctx;
- if (!context.__localeChainCache) {
- context.__localeChainCache = new Map();
- }
- let chain = context.__localeChainCache.get(start);
- if (!chain) {
- chain = [];
- // first block defined by start
- let block = [start];
- // while any intervening block found
- while (isArray(block)) {
- block = appendBlockToChain(chain, block, fallback);
- }
- // prettier-ignore
- // last block defined by default
- const defaults = isArray(fallback)
- ? fallback
- : isPlainObject(fallback)
- ? fallback['default']
- ? fallback['default']
- : null
- : fallback;
- // convert defaults to array
- block = isString(defaults) ? [defaults] : defaults;
- if (isArray(block)) {
- appendBlockToChain(chain, block, false);
- }
- context.__localeChainCache.set(start, chain);
- }
- return chain;
- }
- function appendBlockToChain(chain, block, blocks) {
- let follow = true;
- for (let i = 0; i < block.length && isBoolean(follow); i++) {
- const locale = block[i];
- if (isString(locale)) {
- follow = appendLocaleToChain(chain, block[i], blocks);
- }
- }
- return follow;
- }
- function appendLocaleToChain(chain, locale, blocks) {
- let follow;
- const tokens = locale.split('-');
- do {
- const target = tokens.join('-');
- follow = appendItemToChain(chain, target, blocks);
- tokens.splice(-1, 1);
- } while (tokens.length && follow === true);
- return follow;
- }
- function appendItemToChain(chain, target, blocks) {
- let follow = false;
- if (!chain.includes(target)) {
- follow = true;
- if (target) {
- follow = target[target.length - 1] !== '!';
- const locale = target.replace(/!/g, '');
- chain.push(locale);
- if ((isArray(blocks) || isPlainObject(blocks)) &&
- blocks[locale] // eslint-disable-line @typescript-eslint/no-explicit-any
- ) {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- follow = blocks[locale];
- }
- }
- }
- return follow;
- }
- /** @internal */
- function updateFallbackLocale(ctx, locale, fallback) {
- const context = ctx;
- context.__localeChainCache = new Map();
- getLocaleChain(ctx, fallback, locale);
- }
- function createCoreError(code) {
- return createCompileError(code, null, { messages: errorMessages$1 } );
- }
- /** @internal */
- const errorMessages$1 = {
- [14 /* INVALID_ARGUMENT */]: 'Invalid arguments',
- [15 /* INVALID_DATE_ARGUMENT */]: 'The date provided is an invalid Date object.' +
- 'Make sure your Date represents a valid date.',
- [16 /* INVALID_ISO_DATE_ARGUMENT */]: 'The argument provided is not a valid ISO date string'
- };
- const NOOP_MESSAGE_FUNCTION = () => '';
- const isMessageFunction = (val) => isFunction(val);
- // implementation of `translate` function
- function translate(context, ...args) {
- const { fallbackFormat, postTranslation, unresolving, fallbackLocale, messages } = context;
- const [key, options] = parseTranslateArgs(...args);
- const missingWarn = isBoolean(options.missingWarn)
- ? options.missingWarn
- : context.missingWarn;
- const fallbackWarn = isBoolean(options.fallbackWarn)
- ? options.fallbackWarn
- : context.fallbackWarn;
- const escapeParameter = isBoolean(options.escapeParameter)
- ? options.escapeParameter
- : context.escapeParameter;
- const resolvedMessage = !!options.resolvedMessage;
- // prettier-ignore
- const defaultMsgOrKey = isString(options.default) || isBoolean(options.default) // default by function option
- ? !isBoolean(options.default)
- ? options.default
- : key
- : fallbackFormat // default by `fallbackFormat` option
- ? key
- : '';
- const enableDefaultMsg = fallbackFormat || defaultMsgOrKey !== '';
- const locale = isString(options.locale) ? options.locale : context.locale;
- // escape params
- escapeParameter && escapeParams(options);
- // resolve message format
- // eslint-disable-next-line prefer-const
- let [format, targetLocale, message] = !resolvedMessage
- ? resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn)
- : [
- key,
- locale,
- messages[locale] || {}
- ];
- // if you use default message, set it as message format!
- let cacheBaseKey = key;
- if (!resolvedMessage &&
- !(isString(format) || isMessageFunction(format))) {
- if (enableDefaultMsg) {
- format = defaultMsgOrKey;
- cacheBaseKey = format;
- }
- }
- // checking message format and target locale
- if (!resolvedMessage &&
- (!(isString(format) || isMessageFunction(format)) ||
- !isString(targetLocale))) {
- return unresolving ? NOT_REOSLVED : key;
- }
- if (isString(format) && context.messageCompiler == null) {
- warn(`The message format compilation is not supported in this build. ` +
- `Because message compiler isn't included. ` +
- `You need to pre-compilation all message format. ` +
- `So translate function return '${key}'.`);
- return key;
- }
- // setup compile error detecting
- let occurred = false;
- const errorDetector = () => {
- occurred = true;
- };
- // compile message format
- const msg = !isMessageFunction(format)
- ? compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, errorDetector)
- : format;
- // if occurred compile error, return the message format
- if (occurred) {
- return format;
- }
- // evaluate message with context
- const ctxOptions = getMessageContextOptions(context, targetLocale, message, options);
- const msgContext = createMessageContext(ctxOptions);
- const messaged = evaluateMessage(context, msg, msgContext);
- // if use post translation option, proceed it with handler
- const ret = postTranslation ? postTranslation(messaged) : messaged;
- // NOTE: experimental !!
- {
- // prettier-ignore
- const payloads = {
- timestamp: Date.now(),
- key: isString(key)
- ? key
- : isMessageFunction(format)
- ? format.key
- : '',
- locale: targetLocale || (isMessageFunction(format)
- ? format.locale
- : ''),
- format: isString(format)
- ? format
- : isMessageFunction(format)
- ? format.source
- : '',
- message: ret
- };
- payloads.meta = assign({}, context.__meta, getAdditionalMeta() || {});
- translateDevTools(payloads);
- }
- return ret;
- }
- function escapeParams(options) {
- if (isArray(options.list)) {
- options.list = options.list.map(item => isString(item) ? escapeHtml(item) : item);
- }
- else if (isObject(options.named)) {
- Object.keys(options.named).forEach(key => {
- if (isString(options.named[key])) {
- options.named[key] = escapeHtml(options.named[key]);
- }
- });
- }
- }
- function resolveMessageFormat(context, key, locale, fallbackLocale, fallbackWarn, missingWarn) {
- const { messages, onWarn } = context;
- const locales = getLocaleChain(context, fallbackLocale, locale);
- let message = {};
- let targetLocale;
- let format = null;
- let from = locale;
- let to = null;
- const type = 'translate';
- for (let i = 0; i < locales.length; i++) {
- targetLocale = to = locales[i];
- if (locale !== targetLocale &&
- isTranslateFallbackWarn(fallbackWarn, key)) {
- onWarn(getWarnMessage$1(1 /* FALLBACK_TO_TRANSLATE */, {
- key,
- target: targetLocale
- }));
- }
- // for vue-devtools timeline event
- if (locale !== targetLocale) {
- const emitter = context.__v_emitter;
- if (emitter) {
- emitter.emit("fallback" /* FALBACK */, {
- type,
- key,
- from,
- to,
- groupId: `${type}:${key}`
- });
- }
- }
- message =
- messages[targetLocale] || {};
- // for vue-devtools timeline event
- let start = null;
- let startTag;
- let endTag;
- if (inBrowser) {
- start = window.performance.now();
- startTag = 'intlify-message-resolve-start';
- endTag = 'intlify-message-resolve-end';
- mark && mark(startTag);
- }
- if ((format = resolveValue(message, key)) === null) {
- // if null, resolve with object key path
- format = message[key]; // eslint-disable-line @typescript-eslint/no-explicit-any
- }
- // for vue-devtools timeline event
- if (inBrowser) {
- const end = window.performance.now();
- const emitter = context.__v_emitter;
- if (emitter && start && format) {
- emitter.emit("message-resolve" /* MESSAGE_RESOLVE */, {
- type: "message-resolve" /* MESSAGE_RESOLVE */,
- key,
- message: format,
- time: end - start,
- groupId: `${type}:${key}`
- });
- }
- if (startTag && endTag && mark && measure) {
- mark(endTag);
- measure('intlify message resolve', startTag, endTag);
- }
- }
- if (isString(format) || isFunction(format))
- break;
- const missingRet = handleMissing(context, key, targetLocale, missingWarn, type);
- if (missingRet !== key) {
- format = missingRet;
- }
- from = to;
- }
- return [format, targetLocale, message];
- }
- function compileMessageFormat(context, key, targetLocale, format, cacheBaseKey, errorDetector) {
- const { messageCompiler, warnHtmlMessage } = context;
- if (isMessageFunction(format)) {
- const msg = format;
- msg.locale = msg.locale || targetLocale;
- msg.key = msg.key || key;
- return msg;
- }
- // for vue-devtools timeline event
- let start = null;
- let startTag;
- let endTag;
- if (inBrowser) {
- start = window.performance.now();
- startTag = 'intlify-message-compilation-start';
- endTag = 'intlify-message-compilation-end';
- mark && mark(startTag);
- }
- const msg = messageCompiler(format, getCompileOptions(context, targetLocale, cacheBaseKey, format, warnHtmlMessage, errorDetector));
- // for vue-devtools timeline event
- if (inBrowser) {
- const end = window.performance.now();
- const emitter = context.__v_emitter;
- if (emitter && start) {
- emitter.emit("message-compilation" /* MESSAGE_COMPILATION */, {
- type: "message-compilation" /* MESSAGE_COMPILATION */,
- message: format,
- time: end - start,
- groupId: `${'translate'}:${key}`
- });
- }
- if (startTag && endTag && mark && measure) {
- mark(endTag);
- measure('intlify message compilation', startTag, endTag);
- }
- }
- msg.locale = targetLocale;
- msg.key = key;
- msg.source = format;
- return msg;
- }
- function evaluateMessage(context, msg, msgCtx) {
- // for vue-devtools timeline event
- let start = null;
- let startTag;
- let endTag;
- if (inBrowser) {
- start = window.performance.now();
- startTag = 'intlify-message-evaluation-start';
- endTag = 'intlify-message-evaluation-end';
- mark && mark(startTag);
- }
- const messaged = msg(msgCtx);
- // for vue-devtools timeline event
- if (inBrowser) {
- const end = window.performance.now();
- const emitter = context.__v_emitter;
- if (emitter && start) {
- emitter.emit("message-evaluation" /* MESSAGE_EVALUATION */, {
- type: "message-evaluation" /* MESSAGE_EVALUATION */,
- value: messaged,
- time: end - start,
- groupId: `${'translate'}:${msg.key}`
- });
- }
- if (startTag && endTag && mark && measure) {
- mark(endTag);
- measure('intlify message evaluation', startTag, endTag);
- }
- }
- return messaged;
- }
- /** @internal */
- function parseTranslateArgs(...args) {
- const [arg1, arg2, arg3] = args;
- const options = {};
- if (!isString(arg1) && !isNumber(arg1) && !isMessageFunction(arg1)) {
- throw createCoreError(14 /* INVALID_ARGUMENT */);
- }
- // prettier-ignore
- const key = isNumber(arg1)
- ? String(arg1)
- : isMessageFunction(arg1)
- ? arg1
- : arg1;
- if (isNumber(arg2)) {
- options.plural = arg2;
- }
- else if (isString(arg2)) {
- options.default = arg2;
- }
- else if (isPlainObject(arg2) && !isEmptyObject(arg2)) {
- options.named = arg2;
- }
- else if (isArray(arg2)) {
- options.list = arg2;
- }
- if (isNumber(arg3)) {
- options.plural = arg3;
- }
- else if (isString(arg3)) {
- options.default = arg3;
- }
- else if (isPlainObject(arg3)) {
- assign(options, arg3);
- }
- return [key, options];
- }
- function getCompileOptions(context, locale, key, source, warnHtmlMessage, errorDetector) {
- return {
- warnHtmlMessage,
- onError: (err) => {
- errorDetector && errorDetector(err);
- {
- const message = `Message compilation error: ${err.message}`;
- const codeFrame = err.location &&
- generateCodeFrame(source, err.location.start.offset, err.location.end.offset);
- const emitter = context
- .__v_emitter;
- if (emitter) {
- emitter.emit("compile-error" /* COMPILE_ERROR */, {
- message: source,
- error: err.message,
- start: err.location && err.location.start.offset,
- end: err.location && err.location.end.offset,
- groupId: `${'translate'}:${key}`
- });
- }
- console.error(codeFrame ? `${message}\n${codeFrame}` : message);
- }
- },
- onCacheKey: (source) => generateFormatCacheKey(locale, key, source)
- };
- }
- function getMessageContextOptions(context, locale, message, options) {
- const { modifiers, pluralRules } = context;
- const resolveMessage = (key) => {
- const val = resolveValue(message, key);
- if (isString(val)) {
- let occurred = false;
- const errorDetector = () => {
- occurred = true;
- };
- const msg = compileMessageFormat(context, key, locale, val, key, errorDetector);
- return !occurred
- ? msg
- : NOOP_MESSAGE_FUNCTION;
- }
- else if (isMessageFunction(val)) {
- return val;
- }
- else {
- // TODO: should be implemented warning message
- return NOOP_MESSAGE_FUNCTION;
- }
- };
- const ctxOptions = {
- locale,
- modifiers,
- pluralRules,
- messages: resolveMessage
- };
- if (context.processor) {
- ctxOptions.processor = context.processor;
- }
- if (options.list) {
- ctxOptions.list = options.list;
- }
- if (options.named) {
- ctxOptions.named = options.named;
- }
- if (isNumber(options.plural)) {
- ctxOptions.pluralIndex = options.plural;
- }
- return ctxOptions;
- }
- const intlDefined = typeof Intl !== 'undefined';
- const Availabilities = {
- dateTimeFormat: intlDefined && typeof Intl.DateTimeFormat !== 'undefined',
- numberFormat: intlDefined && typeof Intl.NumberFormat !== 'undefined'
- };
- // implementation of `datetime` function
- function datetime(context, ...args) {
- const { datetimeFormats, unresolving, fallbackLocale, onWarn } = context;
- const { __datetimeFormatters } = context;
- if (!Availabilities.dateTimeFormat) {
- onWarn(getWarnMessage$1(4 /* CANNOT_FORMAT_DATE */));
- return MISSING_RESOLVE_VALUE;
- }
- const [key, value, options, overrides] = parseDateTimeArgs(...args);
- const missingWarn = isBoolean(options.missingWarn)
- ? options.missingWarn
- : context.missingWarn;
- const fallbackWarn = isBoolean(options.fallbackWarn)
- ? options.fallbackWarn
- : context.fallbackWarn;
- const part = !!options.part;
- const locale = isString(options.locale) ? options.locale : context.locale;
- const locales = getLocaleChain(context, fallbackLocale, locale);
- if (!isString(key) || key === '') {
- return new Intl.DateTimeFormat(locale).format(value);
- }
- // resolve format
- let datetimeFormat = {};
- let targetLocale;
- let format = null;
- let from = locale;
- let to = null;
- const type = 'datetime format';
- for (let i = 0; i < locales.length; i++) {
- targetLocale = to = locales[i];
- if (locale !== targetLocale &&
- isTranslateFallbackWarn(fallbackWarn, key)) {
- onWarn(getWarnMessage$1(5 /* FALLBACK_TO_DATE_FORMAT */, {
- key,
- target: targetLocale
- }));
- }
- // for vue-devtools timeline event
- if (locale !== targetLocale) {
- const emitter = context.__v_emitter;
- if (emitter) {
- emitter.emit("fallback" /* FALBACK */, {
- type,
- key,
- from,
- to,
- groupId: `${type}:${key}`
- });
- }
- }
- datetimeFormat =
- datetimeFormats[targetLocale] || {};
- format = datetimeFormat[key];
- if (isPlainObject(format))
- break;
- handleMissing(context, key, targetLocale, missingWarn, type);
- from = to;
- }
- // checking format and target locale
- if (!isPlainObject(format) || !isString(targetLocale)) {
- return unresolving ? NOT_REOSLVED : key;
- }
- let id = `${targetLocale}__${key}`;
- if (!isEmptyObject(overrides)) {
- id = `${id}__${JSON.stringify(overrides)}`;
- }
- let formatter = __datetimeFormatters.get(id);
- if (!formatter) {
- formatter = new Intl.DateTimeFormat(targetLocale, assign({}, format, overrides));
- __datetimeFormatters.set(id, formatter);
- }
- return !part ? formatter.format(value) : formatter.formatToParts(value);
- }
- /** @internal */
- function parseDateTimeArgs(...args) {
- const [arg1, arg2, arg3, arg4] = args;
- let options = {};
- let overrides = {};
- let value;
- if (isString(arg1)) {
- // Only allow ISO strings - other date formats are often supported,
- // but may cause different results in different browsers.
- if (!/\d{4}-\d{2}-\d{2}(T.*)?/.test(arg1)) {
- throw createCoreError(16 /* INVALID_ISO_DATE_ARGUMENT */);
- }
- value = new Date(arg1);
- try {
- // This will fail if the date is not valid
- value.toISOString();
- }
- catch (e) {
- throw createCoreError(16 /* INVALID_ISO_DATE_ARGUMENT */);
- }
- }
- else if (isDate(arg1)) {
- if (isNaN(arg1.getTime())) {
- throw createCoreError(15 /* INVALID_DATE_ARGUMENT */);
- }
- value = arg1;
- }
- else if (isNumber(arg1)) {
- value = arg1;
- }
- else {
- throw createCoreError(14 /* INVALID_ARGUMENT */);
- }
- if (isString(arg2)) {
- options.key = arg2;
- }
- else if (isPlainObject(arg2)) {
- options = arg2;
- }
- if (isString(arg3)) {
- options.locale = arg3;
- }
- else if (isPlainObject(arg3)) {
- overrides = arg3;
- }
- if (isPlainObject(arg4)) {
- overrides = arg4;
- }
- return [options.key || '', value, options, overrides];
- }
- /** @internal */
- function clearDateTimeFormat(ctx, locale, format) {
- const context = ctx;
- for (const key in format) {
- const id = `${locale}__${key}`;
- if (!context.__datetimeFormatters.has(id)) {
- continue;
- }
- context.__datetimeFormatters.delete(id);
- }
- }
- // implementation of `number` function
- function number(context, ...args) {
- const { numberFormats, unresolving, fallbackLocale, onWarn } = context;
- const { __numberFormatters } = context;
- if (!Availabilities.numberFormat) {
- onWarn(getWarnMessage$1(2 /* CANNOT_FORMAT_NUMBER */));
- return MISSING_RESOLVE_VALUE;
- }
- const [key, value, options, overrides] = parseNumberArgs(...args);
- const missingWarn = isBoolean(options.missingWarn)
- ? options.missingWarn
- : context.missingWarn;
- const fallbackWarn = isBoolean(options.fallbackWarn)
- ? options.fallbackWarn
- : context.fallbackWarn;
- const part = !!options.part;
- const locale = isString(options.locale) ? options.locale : context.locale;
- const locales = getLocaleChain(context, fallbackLocale, locale);
- if (!isString(key) || key === '') {
- return new Intl.NumberFormat(locale).format(value);
- }
- // resolve format
- let numberFormat = {};
- let targetLocale;
- let format = null;
- let from = locale;
- let to = null;
- const type = 'number format';
- for (let i = 0; i < locales.length; i++) {
- targetLocale = to = locales[i];
- if (locale !== targetLocale &&
- isTranslateFallbackWarn(fallbackWarn, key)) {
- onWarn(getWarnMessage$1(3 /* FALLBACK_TO_NUMBER_FORMAT */, {
- key,
- target: targetLocale
- }));
- }
- // for vue-devtools timeline event
- if (locale !== targetLocale) {
- const emitter = context.__v_emitter;
- if (emitter) {
- emitter.emit("fallback" /* FALBACK */, {
- type,
- key,
- from,
- to,
- groupId: `${type}:${key}`
- });
- }
- }
- numberFormat =
- numberFormats[targetLocale] || {};
- format = numberFormat[key];
- if (isPlainObject(format))
- break;
- handleMissing(context, key, targetLocale, missingWarn, type);
- from = to;
- }
- // checking format and target locale
- if (!isPlainObject(format) || !isString(targetLocale)) {
- return unresolving ? NOT_REOSLVED : key;
- }
- let id = `${targetLocale}__${key}`;
- if (!isEmptyObject(overrides)) {
- id = `${id}__${JSON.stringify(overrides)}`;
- }
- let formatter = __numberFormatters.get(id);
- if (!formatter) {
- formatter = new Intl.NumberFormat(targetLocale, assign({}, format, overrides));
- __numberFormatters.set(id, formatter);
- }
- return !part ? formatter.format(value) : formatter.formatToParts(value);
- }
- /** @internal */
- function parseNumberArgs(...args) {
- const [arg1, arg2, arg3, arg4] = args;
- let options = {};
- let overrides = {};
- if (!isNumber(arg1)) {
- throw createCoreError(14 /* INVALID_ARGUMENT */);
- }
- const value = arg1;
- if (isString(arg2)) {
- options.key = arg2;
- }
- else if (isPlainObject(arg2)) {
- options = arg2;
- }
- if (isString(arg3)) {
- options.locale = arg3;
- }
- else if (isPlainObject(arg3)) {
- overrides = arg3;
- }
- if (isPlainObject(arg4)) {
- overrides = arg4;
- }
- return [options.key || '', value, options, overrides];
- }
- /** @internal */
- function clearNumberFormat(ctx, locale, format) {
- const context = ctx;
- for (const key in format) {
- const id = `${locale}__${key}`;
- if (!context.__numberFormatters.has(id)) {
- continue;
- }
- context.__numberFormatters.delete(id);
- }
- }
- /**
- * Vue I18n Version
- *
- * @remarks
- * Semver format. Same format as the package.json `version` field.
- *
- * @VueI18nGeneral
- */
- const VERSION = '9.1.9';
- /**
- * This is only called development env
- * istanbul-ignore-next
- */
- function initDev() {
- {
- {
- console.info(`You are running a development build of vue-i18n.\n` +
- `Make sure to use the production build (*.prod.js) when deploying for production.`);
- }
- }
- }
- const warnMessages = {
- [6 /* FALLBACK_TO_ROOT */]: `Fall back to {type} '{key}' with root locale.`,
- [7 /* NOT_SUPPORTED_PRESERVE */]: `Not supported 'preserve'.`,
- [8 /* NOT_SUPPORTED_FORMATTER */]: `Not supported 'formatter'.`,
- [9 /* NOT_SUPPORTED_PRESERVE_DIRECTIVE */]: `Not supported 'preserveDirectiveContent'.`,
- [10 /* NOT_SUPPORTED_GET_CHOICE_INDEX */]: `Not supported 'getChoiceIndex'.`,
- [11 /* COMPONENT_NAME_LEGACY_COMPATIBLE */]: `Component name legacy compatible: '{name}' -> 'i18n'`,
- [12 /* NOT_FOUND_PARENT_SCOPE */]: `Not found parent scope. use the global scope.`
- };
- function getWarnMessage(code, ...args) {
- return format(warnMessages[code], ...args);
- }
- function createI18nError(code, ...args) {
- return createCompileError(code, null, { messages: errorMessages, args } );
- }
- const errorMessages = {
- [14 /* UNEXPECTED_RETURN_TYPE */]: 'Unexpected return type in composer',
- [15 /* INVALID_ARGUMENT */]: 'Invalid argument',
- [16 /* MUST_BE_CALL_SETUP_TOP */]: 'Must be called at the top of a `setup` function',
- [17 /* NOT_INSLALLED */]: 'Need to install with `app.use` function',
- [22 /* UNEXPECTED_ERROR */]: 'Unexpected error',
- [18 /* NOT_AVAILABLE_IN_LEGACY_MODE */]: 'Not available in legacy mode',
- [19 /* REQUIRED_VALUE */]: `Required in value: {0}`,
- [20 /* INVALID_VALUE */]: `Invalid value`,
- [21 /* CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN */]: `Cannot setup vue-devtools plugin`
- };
- const DEVTOOLS_META = '__INTLIFY_META__';
- const TransrateVNodeSymbol = makeSymbol('__transrateVNode');
- const DatetimePartsSymbol = makeSymbol('__datetimeParts');
- const NumberPartsSymbol = makeSymbol('__numberParts');
- const EnableEmitter = makeSymbol('__enableEmitter');
- const DisableEmitter = makeSymbol('__disableEmitter');
- const SetPluralRulesSymbol = makeSymbol('__setPluralRules');
- const InejctWithOption = makeSymbol('__injectWithOption');
- let composerID = 0;
- function defineCoreMissingHandler(missing) {
- return ((ctx, locale, key, type) => {
- return missing(locale, key, vue.getCurrentInstance() || undefined, type);
- });
- }
- function getLocaleMessages(locale, options) {
- const { messages, __i18n } = options;
- // prettier-ignore
- const ret = isPlainObject(messages)
- ? messages
- : isArray(__i18n)
- ? {}
- : { [locale]: {} };
- // merge locale messages of i18n custom block
- if (isArray(__i18n)) {
- __i18n.forEach(({ locale, resource }) => {
- if (locale) {
- ret[locale] = ret[locale] || {};
- deepCopy(resource, ret[locale]);
- }
- else {
- deepCopy(resource, ret);
- }
- });
- }
- // handle messages for flat json
- if (options.flatJson) {
- for (const key in ret) {
- if (hasOwn(ret, key)) {
- handleFlatJson(ret[key]);
- }
- }
- }
- return ret;
- }
- const isNotObjectOrIsArray = (val) => !isObject(val) || isArray(val);
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- function deepCopy(src, des) {
- // src and des should both be objects, and non of then can be a array
- if (isNotObjectOrIsArray(src) || isNotObjectOrIsArray(des)) {
- throw createI18nError(20 /* INVALID_VALUE */);
- }
- for (const key in src) {
- if (hasOwn(src, key)) {
- if (isNotObjectOrIsArray(src[key]) || isNotObjectOrIsArray(des[key])) {
- // replace with src[key] when:
- // src[key] or des[key] is not a object, or
- // src[key] or des[key] is a array
- des[key] = src[key];
- }
- else {
- // src[key] and des[key] are both object, merge them
- deepCopy(src[key], des[key]);
- }
- }
- }
- }
- // for Intlify DevTools
- const getMetaInfo = /* #__PURE__*/ () => {
- const instance = vue.getCurrentInstance();
- return instance && instance.type[DEVTOOLS_META] // eslint-disable-line @typescript-eslint/no-explicit-any
- ? { [DEVTOOLS_META]: instance.type[DEVTOOLS_META] } // eslint-disable-line @typescript-eslint/no-explicit-any
- : null;
- };
- /**
- * Create composer interface factory
- *
- * @internal
- */
- function createComposer(options = {}) {
- const { __root } = options;
- const _isGlobal = __root === undefined;
- let _inheritLocale = isBoolean(options.inheritLocale)
- ? options.inheritLocale
- : true;
- const _locale = vue.ref(
- // prettier-ignore
- __root && _inheritLocale
- ? __root.locale.value
- : isString(options.locale)
- ? options.locale
- : 'en-US');
- const _fallbackLocale = vue.ref(
- // prettier-ignore
- __root && _inheritLocale
- ? __root.fallbackLocale.value
- : isString(options.fallbackLocale) ||
- isArray(options.fallbackLocale) ||
- isPlainObject(options.fallbackLocale) ||
- options.fallbackLocale === false
- ? options.fallbackLocale
- : _locale.value);
- const _messages = vue.ref(getLocaleMessages(_locale.value, options));
- const _datetimeFormats = vue.ref(isPlainObject(options.datetimeFormats)
- ? options.datetimeFormats
- : { [_locale.value]: {} });
- const _numberFormats = vue.ref(isPlainObject(options.numberFormats)
- ? options.numberFormats
- : { [_locale.value]: {} });
- // warning suppress options
- // prettier-ignore
- let _missingWarn = __root
- ? __root.missingWarn
- : isBoolean(options.missingWarn) || isRegExp(options.missingWarn)
- ? options.missingWarn
- : true;
- // prettier-ignore
- let _fallbackWarn = __root
- ? __root.fallbackWarn
- : isBoolean(options.fallbackWarn) || isRegExp(options.fallbackWarn)
- ? options.fallbackWarn
- : true;
- // prettier-ignore
- let _fallbackRoot = __root
- ? __root.fallbackRoot
- : isBoolean(options.fallbackRoot)
- ? options.fallbackRoot
- : true;
- // configure fall back to root
- let _fallbackFormat = !!options.fallbackFormat;
- // runtime missing
- let _missing = isFunction(options.missing) ? options.missing : null;
- let _runtimeMissing = isFunction(options.missing)
- ? defineCoreMissingHandler(options.missing)
- : null;
- // postTranslation handler
- let _postTranslation = isFunction(options.postTranslation)
- ? options.postTranslation
- : null;
- let _warnHtmlMessage = isBoolean(options.warnHtmlMessage)
- ? options.warnHtmlMessage
- : true;
- let _escapeParameter = !!options.escapeParameter;
- // custom linked modifiers
- // prettier-ignore
- const _modifiers = __root
- ? __root.modifiers
- : isPlainObject(options.modifiers)
- ? options.modifiers
- : {};
- // pluralRules
- let _pluralRules = options.pluralRules || (__root && __root.pluralRules);
- // runtime context
- // eslint-disable-next-line prefer-const
- let _context;
- function getCoreContext() {
- return createCoreContext({
- version: VERSION,
- locale: _locale.value,
- fallbackLocale: _fallbackLocale.value,
- messages: _messages.value,
- datetimeFormats: _datetimeFormats.value,
- numberFormats: _numberFormats.value,
- modifiers: _modifiers,
- pluralRules: _pluralRules,
- missing: _runtimeMissing === null ? undefined : _runtimeMissing,
- missingWarn: _missingWarn,
- fallbackWarn: _fallbackWarn,
- fallbackFormat: _fallbackFormat,
- unresolving: true,
- postTranslation: _postTranslation === null ? undefined : _postTranslation,
- warnHtmlMessage: _warnHtmlMessage,
- escapeParameter: _escapeParameter,
- __datetimeFormatters: isPlainObject(_context)
- ? _context.__datetimeFormatters
- : undefined,
- __numberFormatters: isPlainObject(_context)
- ? _context.__numberFormatters
- : undefined,
- __v_emitter: isPlainObject(_context)
- ? _context.__v_emitter
- : undefined,
- __meta: { framework: 'vue' }
- });
- }
- _context = getCoreContext();
- updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);
- // track reactivity
- function trackReactivityValues() {
- return [
- _locale.value,
- _fallbackLocale.value,
- _messages.value,
- _datetimeFormats.value,
- _numberFormats.value
- ];
- }
- // locale
- const locale = vue.computed({
- get: () => _locale.value,
- set: val => {
- _locale.value = val;
- _context.locale = _locale.value;
- }
- });
- // fallbackLocale
- const fallbackLocale = vue.computed({
- get: () => _fallbackLocale.value,
- set: val => {
- _fallbackLocale.value = val;
- _context.fallbackLocale = _fallbackLocale.value;
- updateFallbackLocale(_context, _locale.value, val);
- }
- });
- // messages
- const messages = vue.computed(() => _messages.value);
- // datetimeFormats
- const datetimeFormats = vue.computed(() => _datetimeFormats.value);
- // numberFormats
- const numberFormats = vue.computed(() => _numberFormats.value);
- // getPostTranslationHandler
- function getPostTranslationHandler() {
- return isFunction(_postTranslation) ? _postTranslation : null;
- }
- // setPostTranslationHandler
- function setPostTranslationHandler(handler) {
- _postTranslation = handler;
- _context.postTranslation = handler;
- }
- // getMissingHandler
- function getMissingHandler() {
- return _missing;
- }
- // setMissingHandler
- function setMissingHandler(handler) {
- if (handler !== null) {
- _runtimeMissing = defineCoreMissingHandler(handler);
- }
- _missing = handler;
- _context.missing = _runtimeMissing;
- }
- function isResolvedTranslateMessage(type, arg // eslint-disable-line @typescript-eslint/no-explicit-any
- ) {
- return type !== 'translate' || !!arg.resolvedMessage === false;
- }
- function wrapWithDeps(fn, argumentParser, warnType, fallbackSuccess, fallbackFail, successCondition) {
- trackReactivityValues(); // track reactive dependency
- // NOTE: experimental !!
- let ret;
- {
- try {
- setAdditionalMeta(getMetaInfo());
- ret = fn(_context);
- }
- finally {
- setAdditionalMeta(null);
- }
- }
- if (isNumber(ret) && ret === NOT_REOSLVED) {
- const [key, arg2] = argumentParser();
- if (__root &&
- isString(key) &&
- isResolvedTranslateMessage(warnType, arg2)) {
- if (_fallbackRoot &&
- (isTranslateFallbackWarn(_fallbackWarn, key) ||
- isTranslateMissingWarn(_missingWarn, key))) {
- warn(getWarnMessage(6 /* FALLBACK_TO_ROOT */, {
- key,
- type: warnType
- }));
- }
- // for vue-devtools timeline event
- {
- const { __v_emitter: emitter } = _context;
- if (emitter && _fallbackRoot) {
- emitter.emit("fallback" /* FALBACK */, {
- type: warnType,
- key,
- to: 'global',
- groupId: `${warnType}:${key}`
- });
- }
- }
- }
- return __root && _fallbackRoot
- ? fallbackSuccess(__root)
- : fallbackFail(key);
- }
- else if (successCondition(ret)) {
- return ret;
- }
- else {
- /* istanbul ignore next */
- throw createI18nError(14 /* UNEXPECTED_RETURN_TYPE */);
- }
- }
- // t
- function t(...args) {
- return wrapWithDeps(context => translate(context, ...args), () => parseTranslateArgs(...args), 'translate', root => root.t(...args), key => key, val => isString(val));
- }
- // rt
- function rt(...args) {
- const [arg1, arg2, arg3] = args;
- if (arg3 && !isObject(arg3)) {
- throw createI18nError(15 /* INVALID_ARGUMENT */);
- }
- return t(...[arg1, arg2, assign({ resolvedMessage: true }, arg3 || {})]);
- }
- // d
- function d(...args) {
- return wrapWithDeps(context => datetime(context, ...args), () => parseDateTimeArgs(...args), 'datetime format', root => root.d(...args), () => MISSING_RESOLVE_VALUE, val => isString(val));
- }
- // n
- function n(...args) {
- return wrapWithDeps(context => number(context, ...args), () => parseNumberArgs(...args), 'number format', root => root.n(...args), () => MISSING_RESOLVE_VALUE, val => isString(val));
- }
- // for custom processor
- function normalize(values) {
- return values.map(val => isString(val) ? vue.createVNode(vue.Text, null, val, 0) : val);
- }
- const interpolate = (val) => val;
- const processor = {
- normalize,
- interpolate,
- type: 'vnode'
- };
- // transrateVNode, using for `i18n-t` component
- function transrateVNode(...args) {
- return wrapWithDeps(context => {
- let ret;
- const _context = context;
- try {
- _context.processor = processor;
- ret = translate(_context, ...args);
- }
- finally {
- _context.processor = null;
- }
- return ret;
- }, () => parseTranslateArgs(...args), 'translate',
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- root => root[TransrateVNodeSymbol](...args), key => [vue.createVNode(vue.Text, null, key, 0)], val => isArray(val));
- }
- // numberParts, using for `i18n-n` component
- function numberParts(...args) {
- return wrapWithDeps(context => number(context, ...args), () => parseNumberArgs(...args), 'number format',
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- root => root[NumberPartsSymbol](...args), () => [], val => isString(val) || isArray(val));
- }
- // datetimeParts, using for `i18n-d` component
- function datetimeParts(...args) {
- return wrapWithDeps(context => datetime(context, ...args), () => parseDateTimeArgs(...args), 'datetime format',
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- root => root[DatetimePartsSymbol](...args), () => [], val => isString(val) || isArray(val));
- }
- function setPluralRules(rules) {
- _pluralRules = rules;
- _context.pluralRules = _pluralRules;
- }
- // te
- function te(key, locale) {
- const targetLocale = isString(locale) ? locale : _locale.value;
- const message = getLocaleMessage(targetLocale);
- return resolveValue(message, key) !== null;
- }
- function resolveMessages(key) {
- let messages = null;
- const locales = getLocaleChain(_context, _fallbackLocale.value, _locale.value);
- for (let i = 0; i < locales.length; i++) {
- const targetLocaleMessages = _messages.value[locales[i]] || {};
- const messageValue = resolveValue(targetLocaleMessages, key);
- if (messageValue != null) {
- messages = messageValue;
- break;
- }
- }
- return messages;
- }
- // tm
- function tm(key) {
- const messages = resolveMessages(key);
- // prettier-ignore
- return messages != null
- ? messages
- : __root
- ? __root.tm(key) || {}
- : {};
- }
- // getLocaleMessage
- function getLocaleMessage(locale) {
- return (_messages.value[locale] || {});
- }
- // setLocaleMessage
- function setLocaleMessage(locale, message) {
- _messages.value[locale] = message;
- _context.messages = _messages.value;
- }
- // mergeLocaleMessage
- function mergeLocaleMessage(locale, message) {
- _messages.value[locale] = _messages.value[locale] || {};
- deepCopy(message, _messages.value[locale]);
- _context.messages = _messages.value;
- }
- // getDateTimeFormat
- function getDateTimeFormat(locale) {
- return _datetimeFormats.value[locale] || {};
- }
- // setDateTimeFormat
- function setDateTimeFormat(locale, format) {
- _datetimeFormats.value[locale] = format;
- _context.datetimeFormats = _datetimeFormats.value;
- clearDateTimeFormat(_context, locale, format);
- }
- // mergeDateTimeFormat
- function mergeDateTimeFormat(locale, format) {
- _datetimeFormats.value[locale] = assign(_datetimeFormats.value[locale] || {}, format);
- _context.datetimeFormats = _datetimeFormats.value;
- clearDateTimeFormat(_context, locale, format);
- }
- // getNumberFormat
- function getNumberFormat(locale) {
- return _numberFormats.value[locale] || {};
- }
- // setNumberFormat
- function setNumberFormat(locale, format) {
- _numberFormats.value[locale] = format;
- _context.numberFormats = _numberFormats.value;
- clearNumberFormat(_context, locale, format);
- }
- // mergeNumberFormat
- function mergeNumberFormat(locale, format) {
- _numberFormats.value[locale] = assign(_numberFormats.value[locale] || {}, format);
- _context.numberFormats = _numberFormats.value;
- clearNumberFormat(_context, locale, format);
- }
- // for debug
- composerID++;
- // watch root locale & fallbackLocale
- if (__root) {
- vue.watch(__root.locale, (val) => {
- if (_inheritLocale) {
- _locale.value = val;
- _context.locale = val;
- updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);
- }
- });
- vue.watch(__root.fallbackLocale, (val) => {
- if (_inheritLocale) {
- _fallbackLocale.value = val;
- _context.fallbackLocale = val;
- updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);
- }
- });
- }
- // define composition API!
- const composer = {
- id: composerID,
- locale,
- fallbackLocale,
- get inheritLocale() {
- return _inheritLocale;
- },
- set inheritLocale(val) {
- _inheritLocale = val;
- if (val && __root) {
- _locale.value = __root.locale.value;
- _fallbackLocale.value = __root.fallbackLocale.value;
- updateFallbackLocale(_context, _locale.value, _fallbackLocale.value);
- }
- },
- get availableLocales() {
- return Object.keys(_messages.value).sort();
- },
- messages,
- datetimeFormats,
- numberFormats,
- get modifiers() {
- return _modifiers;
- },
- get pluralRules() {
- return _pluralRules || {};
- },
- get isGlobal() {
- return _isGlobal;
- },
- get missingWarn() {
- return _missingWarn;
- },
- set missingWarn(val) {
- _missingWarn = val;
- _context.missingWarn = _missingWarn;
- },
- get fallbackWarn() {
- return _fallbackWarn;
- },
- set fallbackWarn(val) {
- _fallbackWarn = val;
- _context.fallbackWarn = _fallbackWarn;
- },
- get fallbackRoot() {
- return _fallbackRoot;
- },
- set fallbackRoot(val) {
- _fallbackRoot = val;
- },
- get fallbackFormat() {
- return _fallbackFormat;
- },
- set fallbackFormat(val) {
- _fallbackFormat = val;
- _context.fallbackFormat = _fallbackFormat;
- },
- get warnHtmlMessage() {
- return _warnHtmlMessage;
- },
- set warnHtmlMessage(val) {
- _warnHtmlMessage = val;
- _context.warnHtmlMessage = val;
- },
- get escapeParameter() {
- return _escapeParameter;
- },
- set escapeParameter(val) {
- _escapeParameter = val;
- _context.escapeParameter = val;
- },
- t,
- rt,
- d,
- n,
- te,
- tm,
- getLocaleMessage,
- setLocaleMessage,
- mergeLocaleMessage,
- getDateTimeFormat,
- setDateTimeFormat,
- mergeDateTimeFormat,
- getNumberFormat,
- setNumberFormat,
- mergeNumberFormat,
- getPostTranslationHandler,
- setPostTranslationHandler,
- getMissingHandler,
- setMissingHandler,
- [TransrateVNodeSymbol]: transrateVNode,
- [NumberPartsSymbol]: numberParts,
- [DatetimePartsSymbol]: datetimeParts,
- [SetPluralRulesSymbol]: setPluralRules,
- [InejctWithOption]: options.__injectWithOption // eslint-disable-line @typescript-eslint/no-explicit-any
- };
- // for vue-devtools timeline event
- {
- composer[EnableEmitter] = (emitter) => {
- _context.__v_emitter = emitter;
- };
- composer[DisableEmitter] = () => {
- _context.__v_emitter = undefined;
- };
- }
- return composer;
- }
- /**
- * Convert to I18n Composer Options from VueI18n Options
- *
- * @internal
- */
- function convertComposerOptions(options) {
- const locale = isString(options.locale) ? options.locale : 'en-US';
- const fallbackLocale = isString(options.fallbackLocale) ||
- isArray(options.fallbackLocale) ||
- isPlainObject(options.fallbackLocale) ||
- options.fallbackLocale === false
- ? options.fallbackLocale
- : locale;
- const missing = isFunction(options.missing) ? options.missing : undefined;
- const missingWarn = isBoolean(options.silentTranslationWarn) ||
- isRegExp(options.silentTranslationWarn)
- ? !options.silentTranslationWarn
- : true;
- const fallbackWarn = isBoolean(options.silentFallbackWarn) ||
- isRegExp(options.silentFallbackWarn)
- ? !options.silentFallbackWarn
- : true;
- const fallbackRoot = isBoolean(options.fallbackRoot)
- ? options.fallbackRoot
- : true;
- const fallbackFormat = !!options.formatFallbackMessages;
- const modifiers = isPlainObject(options.modifiers) ? options.modifiers : {};
- const pluralizationRules = options.pluralizationRules;
- const postTranslation = isFunction(options.postTranslation)
- ? options.postTranslation
- : undefined;
- const warnHtmlMessage = isString(options.warnHtmlInMessage)
- ? options.warnHtmlInMessage !== 'off'
- : true;
- const escapeParameter = !!options.escapeParameterHtml;
- const inheritLocale = isBoolean(options.sync) ? options.sync : true;
- if (options.formatter) {
- warn(getWarnMessage(8 /* NOT_SUPPORTED_FORMATTER */));
- }
- if (options.preserveDirectiveContent) {
- warn(getWarnMessage(9 /* NOT_SUPPORTED_PRESERVE_DIRECTIVE */));
- }
- let messages = options.messages;
- if (isPlainObject(options.sharedMessages)) {
- const sharedMessages = options.sharedMessages;
- const locales = Object.keys(sharedMessages);
- messages = locales.reduce((messages, locale) => {
- const message = messages[locale] || (messages[locale] = {});
- assign(message, sharedMessages[locale]);
- return messages;
- }, (messages || {}));
- }
- const { __i18n, __root, __injectWithOption } = options;
- const datetimeFormats = options.datetimeFormats;
- const numberFormats = options.numberFormats;
- const flatJson = options.flatJson;
- return {
- locale,
- fallbackLocale,
- messages,
- flatJson,
- datetimeFormats,
- numberFormats,
- missing,
- missingWarn,
- fallbackWarn,
- fallbackRoot,
- fallbackFormat,
- modifiers,
- pluralRules: pluralizationRules,
- postTranslation,
- warnHtmlMessage,
- escapeParameter,
- inheritLocale,
- __i18n,
- __root,
- __injectWithOption
- };
- }
- /**
- * create VueI18n interface factory
- *
- * @internal
- */
- function createVueI18n(options = {}) {
- const composer = createComposer(convertComposerOptions(options));
- // defines VueI18n
- const vueI18n = {
- // id
- id: composer.id,
- // locale
- get locale() {
- return composer.locale.value;
- },
- set locale(val) {
- composer.locale.value = val;
- },
- // fallbackLocale
- get fallbackLocale() {
- return composer.fallbackLocale.value;
- },
- set fallbackLocale(val) {
- composer.fallbackLocale.value = val;
- },
- // messages
- get messages() {
- return composer.messages.value;
- },
- // datetimeFormats
- get datetimeFormats() {
- return composer.datetimeFormats.value;
- },
- // numberFormats
- get numberFormats() {
- return composer.numberFormats.value;
- },
- // availableLocales
- get availableLocales() {
- return composer.availableLocales;
- },
- // formatter
- get formatter() {
- warn(getWarnMessage(8 /* NOT_SUPPORTED_FORMATTER */));
- // dummy
- return {
- interpolate() {
- return [];
- }
- };
- },
- set formatter(val) {
- warn(getWarnMessage(8 /* NOT_SUPPORTED_FORMATTER */));
- },
- // missing
- get missing() {
- return composer.getMissingHandler();
- },
- set missing(handler) {
- composer.setMissingHandler(handler);
- },
- // silentTranslationWarn
- get silentTranslationWarn() {
- return isBoolean(composer.missingWarn)
- ? !composer.missingWarn
- : composer.missingWarn;
- },
- set silentTranslationWarn(val) {
- composer.missingWarn = isBoolean(val) ? !val : val;
- },
- // silentFallbackWarn
- get silentFallbackWarn() {
- return isBoolean(composer.fallbackWarn)
- ? !composer.fallbackWarn
- : composer.fallbackWarn;
- },
- set silentFallbackWarn(val) {
- composer.fallbackWarn = isBoolean(val) ? !val : val;
- },
- // modifiers
- get modifiers() {
- return composer.modifiers;
- },
- // formatFallbackMessages
- get formatFallbackMessages() {
- return composer.fallbackFormat;
- },
- set formatFallbackMessages(val) {
- composer.fallbackFormat = val;
- },
- // postTranslation
- get postTranslation() {
- return composer.getPostTranslationHandler();
- },
- set postTranslation(handler) {
- composer.setPostTranslationHandler(handler);
- },
- // sync
- get sync() {
- return composer.inheritLocale;
- },
- set sync(val) {
- composer.inheritLocale = val;
- },
- // warnInHtmlMessage
- get warnHtmlInMessage() {
- return composer.warnHtmlMessage ? 'warn' : 'off';
- },
- set warnHtmlInMessage(val) {
- composer.warnHtmlMessage = val !== 'off';
- },
- // escapeParameterHtml
- get escapeParameterHtml() {
- return composer.escapeParameter;
- },
- set escapeParameterHtml(val) {
- composer.escapeParameter = val;
- },
- // preserveDirectiveContent
- get preserveDirectiveContent() {
- warn(getWarnMessage(9 /* NOT_SUPPORTED_PRESERVE_DIRECTIVE */));
- return true;
- },
- set preserveDirectiveContent(val) {
- warn(getWarnMessage(9 /* NOT_SUPPORTED_PRESERVE_DIRECTIVE */));
- },
- // pluralizationRules
- get pluralizationRules() {
- return composer.pluralRules || {};
- },
- // for internal
- __composer: composer,
- // t
- t(...args) {
- const [arg1, arg2, arg3] = args;
- const options = {};
- let list = null;
- let named = null;
- if (!isString(arg1)) {
- throw createI18nError(15 /* INVALID_ARGUMENT */);
- }
- const key = arg1;
- if (isString(arg2)) {
- options.locale = arg2;
- }
- else if (isArray(arg2)) {
- list = arg2;
- }
- else if (isPlainObject(arg2)) {
- named = arg2;
- }
- if (isArray(arg3)) {
- list = arg3;
- }
- else if (isPlainObject(arg3)) {
- named = arg3;
- }
- return composer.t(key, list || named || {}, options);
- },
- rt(...args) {
- return composer.rt(...args);
- },
- // tc
- tc(...args) {
- const [arg1, arg2, arg3] = args;
- const options = { plural: 1 };
- let list = null;
- let named = null;
- if (!isString(arg1)) {
- throw createI18nError(15 /* INVALID_ARGUMENT */);
- }
- const key = arg1;
- if (isString(arg2)) {
- options.locale = arg2;
- }
- else if (isNumber(arg2)) {
- options.plural = arg2;
- }
- else if (isArray(arg2)) {
- list = arg2;
- }
- else if (isPlainObject(arg2)) {
- named = arg2;
- }
- if (isString(arg3)) {
- options.locale = arg3;
- }
- else if (isArray(arg3)) {
- list = arg3;
- }
- else if (isPlainObject(arg3)) {
- named = arg3;
- }
- return composer.t(key, list || named || {}, options);
- },
- // te
- te(key, locale) {
- return composer.te(key, locale);
- },
- // tm
- tm(key) {
- return composer.tm(key);
- },
- // getLocaleMessage
- getLocaleMessage(locale) {
- return composer.getLocaleMessage(locale);
- },
- // setLocaleMessage
- setLocaleMessage(locale, message) {
- composer.setLocaleMessage(locale, message);
- },
- // mergeLocaleMessage
- mergeLocaleMessage(locale, message) {
- composer.mergeLocaleMessage(locale, message);
- },
- // d
- d(...args) {
- return composer.d(...args);
- },
- // getDateTimeFormat
- getDateTimeFormat(locale) {
- return composer.getDateTimeFormat(locale);
- },
- // setDateTimeFormat
- setDateTimeFormat(locale, format) {
- composer.setDateTimeFormat(locale, format);
- },
- // mergeDateTimeFormat
- mergeDateTimeFormat(locale, format) {
- composer.mergeDateTimeFormat(locale, format);
- },
- // n
- n(...args) {
- return composer.n(...args);
- },
- // getNumberFormat
- getNumberFormat(locale) {
- return composer.getNumberFormat(locale);
- },
- // setNumberFormat
- setNumberFormat(locale, format) {
- composer.setNumberFormat(locale, format);
- },
- // mergeNumberFormat
- mergeNumberFormat(locale, format) {
- composer.mergeNumberFormat(locale, format);
- },
- // getChoiceIndex
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- getChoiceIndex(choice, choicesLength) {
- warn(getWarnMessage(10 /* NOT_SUPPORTED_GET_CHOICE_INDEX */));
- return -1;
- },
- // for internal
- __onComponentInstanceCreated(target) {
- const { componentInstanceCreatedListener } = options;
- if (componentInstanceCreatedListener) {
- componentInstanceCreatedListener(target, vueI18n);
- }
- }
- };
- // for vue-devtools timeline event
- {
- vueI18n.__enableEmitter = (emitter) => {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- const __composer = composer;
- __composer[EnableEmitter] && __composer[EnableEmitter](emitter);
- };
- vueI18n.__disableEmitter = () => {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- const __composer = composer;
- __composer[DisableEmitter] && __composer[DisableEmitter]();
- };
- }
- return vueI18n;
- }
- const baseFormatProps = {
- tag: {
- type: [String, Object]
- },
- locale: {
- type: String
- },
- scope: {
- type: String,
- validator: (val) => val === 'parent' || val === 'global',
- default: 'parent'
- },
- i18n: {
- type: Object
- }
- };
- /**
- * Translation Component
- *
- * @remarks
- * See the following items for property about details
- *
- * @VueI18nSee [TranslationProps](component#translationprops)
- * @VueI18nSee [BaseFormatProps](component#baseformatprops)
- * @VueI18nSee [Component Interpolation](../guide/advanced/component)
- *
- * @example
- * ```html
- * <div id="app">
- * <!-- ... -->
- * <i18n path="term" tag="label" for="tos">
- * <a :href="url" target="_blank">{{ $t('tos') }}</a>
- * </i18n>
- * <!-- ... -->
- * </div>
- * ```
- * ```js
- * import { createApp } from 'vue'
- * import { createI18n } from 'vue-i18n'
- *
- * const messages = {
- * en: {
- * tos: 'Term of Service',
- * term: 'I accept xxx {0}.'
- * },
- * ja: {
- * tos: '利用規約',
- * term: '私は xxx の{0}に同意します。'
- * }
- * }
- *
- * const i18n = createI18n({
- * locale: 'en',
- * messages
- * })
- *
- * const app = createApp({
- * data: {
- * url: '/term'
- * }
- * }).use(i18n).mount('#app')
- * ```
- *
- * @VueI18nComponent
- */
- const Translation = {
- /* eslint-disable */
- name: 'i18n-t',
- props: assign({
- keypath: {
- type: String,
- required: true
- },
- plural: {
- type: [Number, String],
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- validator: (val) => isNumber(val) || !isNaN(val)
- }
- }, baseFormatProps),
- /* eslint-enable */
- setup(props, context) {
- const { slots, attrs } = context;
- const i18n = props.i18n ||
- useI18n({
- useScope: props.scope,
- __useComponent: true
- });
- const keys = Object.keys(slots).filter(key => key !== '_');
- return () => {
- const options = {};
- if (props.locale) {
- options.locale = props.locale;
- }
- if (props.plural !== undefined) {
- options.plural = isString(props.plural) ? +props.plural : props.plural;
- }
- const arg = getInterpolateArg(context, keys);
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- const children = i18n[TransrateVNodeSymbol](props.keypath, arg, options);
- const assignedAttrs = assign({}, attrs);
- // prettier-ignore
- return isString(props.tag)
- ? vue.h(props.tag, assignedAttrs, children)
- : isObject(props.tag)
- ? vue.h(props.tag, assignedAttrs, children)
- : vue.h(vue.Fragment, assignedAttrs, children);
- };
- }
- };
- function getInterpolateArg({ slots }, keys) {
- if (keys.length === 1 && keys[0] === 'default') {
- // default slot only
- return slots.default ? slots.default() : [];
- }
- else {
- // named slots
- return keys.reduce((arg, key) => {
- const slot = slots[key];
- if (slot) {
- arg[key] = slot();
- }
- return arg;
- }, {});
- }
- }
- function renderFormatter(props, context, slotKeys, partFormatter) {
- const { slots, attrs } = context;
- return () => {
- const options = { part: true };
- let overrides = {};
- if (props.locale) {
- options.locale = props.locale;
- }
- if (isString(props.format)) {
- options.key = props.format;
- }
- else if (isObject(props.format)) {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- if (isString(props.format.key)) {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- options.key = props.format.key;
- }
- // Filter out number format options only
- overrides = Object.keys(props.format).reduce((options, prop) => {
- return slotKeys.includes(prop)
- ? assign({}, options, { [prop]: props.format[prop] }) // eslint-disable-line @typescript-eslint/no-explicit-any
- : options;
- }, {});
- }
- const parts = partFormatter(...[props.value, options, overrides]);
- let children = [options.key];
- if (isArray(parts)) {
- children = parts.map((part, index) => {
- const slot = slots[part.type];
- return slot
- ? slot({ [part.type]: part.value, index, parts })
- : [part.value];
- });
- }
- else if (isString(parts)) {
- children = [parts];
- }
- const assignedAttrs = assign({}, attrs);
- // prettier-ignore
- return isString(props.tag)
- ? vue.h(props.tag, assignedAttrs, children)
- : isObject(props.tag)
- ? vue.h(props.tag, assignedAttrs, children)
- : vue.h(vue.Fragment, assignedAttrs, children);
- };
- }
- const NUMBER_FORMAT_KEYS = [
- 'localeMatcher',
- 'style',
- 'unit',
- 'unitDisplay',
- 'currency',
- 'currencyDisplay',
- 'useGrouping',
- 'numberingSystem',
- 'minimumIntegerDigits',
- 'minimumFractionDigits',
- 'maximumFractionDigits',
- 'minimumSignificantDigits',
- 'maximumSignificantDigits',
- 'notation',
- 'formatMatcher'
- ];
- /**
- * Number Format Component
- *
- * @remarks
- * See the following items for property about details
- *
- * @VueI18nSee [FormattableProps](component#formattableprops)
- * @VueI18nSee [BaseFormatProps](component#baseformatprops)
- * @VueI18nSee [Custom Formatting](../guide/essentials/number#custom-formatting)
- *
- * @VueI18nDanger
- * Not supported IE, due to no support `Intl.NumberFormat#formatToParts` in [IE](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/formatToParts)
- *
- * If you want to use it, you need to use [polyfill](https://github.com/formatjs/formatjs/tree/main/packages/intl-numberformat)
- *
- * @VueI18nComponent
- */
- const NumberFormat = {
- /* eslint-disable */
- name: 'i18n-n',
- props: assign({
- value: {
- type: Number,
- required: true
- },
- format: {
- type: [String, Object]
- }
- }, baseFormatProps),
- /* eslint-enable */
- setup(props, context) {
- const i18n = props.i18n ||
- useI18n({ useScope: 'parent', __useComponent: true });
- return renderFormatter(props, context, NUMBER_FORMAT_KEYS, (...args) =>
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- i18n[NumberPartsSymbol](...args));
- }
- };
- const DATETIME_FORMAT_KEYS = [
- 'dateStyle',
- 'timeStyle',
- 'fractionalSecondDigits',
- 'calendar',
- 'dayPeriod',
- 'numberingSystem',
- 'localeMatcher',
- 'timeZone',
- 'hour12',
- 'hourCycle',
- 'formatMatcher',
- 'weekday',
- 'era',
- 'year',
- 'month',
- 'day',
- 'hour',
- 'minute',
- 'second',
- 'timeZoneName'
- ];
- /**
- * Datetime Format Component
- *
- * @remarks
- * See the following items for property about details
- *
- * @VueI18nSee [FormattableProps](component#formattableprops)
- * @VueI18nSee [BaseFormatProps](component#baseformatprops)
- * @VueI18nSee [Custom Formatting](../guide/essentials/datetime#custom-formatting)
- *
- * @VueI18nDanger
- * Not supported IE, due to no support `Intl.DateTimeFormat#formatToParts` in [IE](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatToParts)
- *
- * If you want to use it, you need to use [polyfill](https://github.com/formatjs/formatjs/tree/main/packages/intl-datetimeformat)
- *
- * @VueI18nComponent
- */
- const DatetimeFormat = {
- /* eslint-disable */
- name: 'i18n-d',
- props: assign({
- value: {
- type: [Number, Date],
- required: true
- },
- format: {
- type: [String, Object]
- }
- }, baseFormatProps),
- /* eslint-enable */
- setup(props, context) {
- const i18n = props.i18n ||
- useI18n({ useScope: 'parent', __useComponent: true });
- return renderFormatter(props, context, DATETIME_FORMAT_KEYS, (...args) =>
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- i18n[DatetimePartsSymbol](...args));
- }
- };
- function getComposer$2(i18n, instance) {
- const i18nInternal = i18n;
- if (i18n.mode === 'composition') {
- return (i18nInternal.__getInstance(instance) || i18n.global);
- }
- else {
- const vueI18n = i18nInternal.__getInstance(instance);
- return vueI18n != null
- ? vueI18n.__composer
- : i18n.global.__composer;
- }
- }
- function vTDirective(i18n) {
- const bind = (el, { instance, value, modifiers }) => {
- /* istanbul ignore if */
- if (!instance || !instance.$) {
- throw createI18nError(22 /* UNEXPECTED_ERROR */);
- }
- const composer = getComposer$2(i18n, instance.$);
- if (modifiers.preserve) {
- warn(getWarnMessage(7 /* NOT_SUPPORTED_PRESERVE */));
- }
- const parsedValue = parseValue(value);
- el.textContent = composer.t(...makeParams(parsedValue));
- };
- return {
- beforeMount: bind,
- beforeUpdate: bind
- };
- }
- function parseValue(value) {
- if (isString(value)) {
- return { path: value };
- }
- else if (isPlainObject(value)) {
- if (!('path' in value)) {
- throw createI18nError(19 /* REQUIRED_VALUE */, 'path');
- }
- return value;
- }
- else {
- throw createI18nError(20 /* INVALID_VALUE */);
- }
- }
- function makeParams(value) {
- const { path, locale, args, choice, plural } = value;
- const options = {};
- const named = args || {};
- if (isString(locale)) {
- options.locale = locale;
- }
- if (isNumber(choice)) {
- options.plural = choice;
- }
- if (isNumber(plural)) {
- options.plural = plural;
- }
- return [path, named, options];
- }
- function apply(app, i18n, ...options) {
- const pluginOptions = isPlainObject(options[0])
- ? options[0]
- : {};
- const useI18nComponentName = !!pluginOptions.useI18nComponentName;
- const globalInstall = isBoolean(pluginOptions.globalInstall)
- ? pluginOptions.globalInstall
- : true;
- if (globalInstall && useI18nComponentName) {
- warn(getWarnMessage(11 /* COMPONENT_NAME_LEGACY_COMPATIBLE */, {
- name: Translation.name
- }));
- }
- if (globalInstall) {
- // install components
- app.component(!useI18nComponentName ? Translation.name : 'i18n', Translation);
- app.component(NumberFormat.name, NumberFormat);
- app.component(DatetimeFormat.name, DatetimeFormat);
- }
- // install directive
- app.directive('t', vTDirective(i18n));
- }
- var global$1 = (typeof global !== "undefined" ? global :
- typeof self !== "undefined" ? self :
- typeof window !== "undefined" ? window : {});
- function getDevtoolsGlobalHook() {
- return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;
- }
- function getTarget() {
- // @ts-ignore
- return typeof navigator !== 'undefined'
- ? window
- : typeof global$1 !== 'undefined'
- ? global$1
- : {};
- }
- const HOOK_SETUP = 'devtools-plugin:setup';
- function setupDevtoolsPlugin(pluginDescriptor, setupFn) {
- const hook = getDevtoolsGlobalHook();
- if (hook) {
- hook.emit(HOOK_SETUP, pluginDescriptor, setupFn);
- }
- else {
- const target = getTarget();
- const list = target.__VUE_DEVTOOLS_PLUGINS__ = target.__VUE_DEVTOOLS_PLUGINS__ || [];
- list.push({
- pluginDescriptor,
- setupFn
- });
- }
- }
- const VueDevToolsLabels = {
- ["vue-devtools-plugin-vue-i18n" /* PLUGIN */]: 'Vue I18n devtools',
- ["vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */]: 'I18n Resources',
- ["vue-i18n-timeline" /* TIMELINE */]: 'Vue I18n'
- };
- const VueDevToolsPlaceholders = {
- ["vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */]: 'Search for scopes ...'
- };
- const VueDevToolsTimelineColors = {
- ["vue-i18n-timeline" /* TIMELINE */]: 0xffcd19
- };
- const VUE_I18N_COMPONENT_TYPES = 'vue-i18n: composer properties';
- let devtoolsApi;
- async function enableDevTools(app, i18n) {
- return new Promise((resolve, reject) => {
- try {
- setupDevtoolsPlugin({
- id: "vue-devtools-plugin-vue-i18n" /* PLUGIN */,
- label: VueDevToolsLabels["vue-devtools-plugin-vue-i18n" /* PLUGIN */],
- packageName: 'vue-i18n',
- homepage: 'https://vue-i18n.intlify.dev',
- logo: 'https://vue-i18n.intlify.dev/vue-i18n-devtools-logo.png',
- componentStateTypes: [VUE_I18N_COMPONENT_TYPES],
- app
- }, api => {
- devtoolsApi = api;
- api.on.visitComponentTree(({ componentInstance, treeNode }) => {
- updateComponentTreeTags(componentInstance, treeNode, i18n);
- });
- api.on.inspectComponent(({ componentInstance, instanceData }) => {
- if (componentInstance.vnode.el.__VUE_I18N__ && instanceData) {
- if (i18n.mode === 'legacy') {
- // ignore global scope on legacy mode
- if (componentInstance.vnode.el.__VUE_I18N__ !==
- i18n.global.__composer) {
- inspectComposer(instanceData, componentInstance.vnode.el.__VUE_I18N__);
- }
- }
- else {
- inspectComposer(instanceData, componentInstance.vnode.el.__VUE_I18N__);
- }
- }
- });
- api.addInspector({
- id: "vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */,
- label: VueDevToolsLabels["vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */],
- icon: 'language',
- treeFilterPlaceholder: VueDevToolsPlaceholders["vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */]
- });
- api.on.getInspectorTree(payload => {
- if (payload.app === app &&
- payload.inspectorId === "vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */) {
- registerScope(payload, i18n);
- }
- });
- api.on.getInspectorState(payload => {
- if (payload.app === app &&
- payload.inspectorId === "vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */) {
- inspectScope(payload, i18n);
- }
- });
- api.on.editInspectorState(payload => {
- if (payload.app === app &&
- payload.inspectorId === "vue-i18n-resource-inspector" /* CUSTOM_INSPECTOR */) {
- editScope(payload, i18n);
- }
- });
- api.addTimelineLayer({
- id: "vue-i18n-timeline" /* TIMELINE */,
- label: VueDevToolsLabels["vue-i18n-timeline" /* TIMELINE */],
- color: VueDevToolsTimelineColors["vue-i18n-timeline" /* TIMELINE */]
- });
- resolve(true);
- });
- }
- catch (e) {
- console.error(e);
- reject(false);
- }
- });
- }
- function updateComponentTreeTags(instance, // eslint-disable-line @typescript-eslint/no-explicit-any
- treeNode, i18n) {
- // prettier-ignore
- const global = i18n.mode === 'composition'
- ? i18n.global
- : i18n.global.__composer;
- if (instance && instance.vnode.el.__VUE_I18N__) {
- // add custom tags local scope only
- if (instance.vnode.el.__VUE_I18N__ !== global) {
- const label = instance.type.name || instance.type.displayName || instance.type.__file;
- const tag = {
- label: `i18n (${label} Scope)`,
- textColor: 0x000000,
- backgroundColor: 0xffcd19
- };
- treeNode.tags.push(tag);
- }
- }
- }
- function inspectComposer(instanceData, composer) {
- const type = VUE_I18N_COMPONENT_TYPES;
- instanceData.state.push({
- type,
- key: 'locale',
- editable: true,
- value: composer.locale.value
- });
- instanceData.state.push({
- type,
- key: 'availableLocales',
- editable: false,
- value: composer.availableLocales
- });
- instanceData.state.push({
- type,
- key: 'fallbackLocale',
- editable: true,
- value: composer.fallbackLocale.value
- });
- instanceData.state.push({
- type,
- key: 'inheritLocale',
- editable: true,
- value: composer.inheritLocale
- });
- instanceData.state.push({
- type,
- key: 'messages',
- editable: false,
- value: getLocaleMessageValue(composer.messages.value)
- });
- instanceData.state.push({
- type,
- key: 'datetimeFormats',
- editable: false,
- value: composer.datetimeFormats.value
- });
- instanceData.state.push({
- type,
- key: 'numberFormats',
- editable: false,
- value: composer.numberFormats.value
- });
- }
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- function getLocaleMessageValue(messages) {
- const value = {};
- Object.keys(messages).forEach((key) => {
- const v = messages[key];
- if (isFunction(v) && 'source' in v) {
- value[key] = getMessageFunctionDetails(v);
- }
- else if (isObject(v)) {
- value[key] = getLocaleMessageValue(v);
- }
- else {
- value[key] = v;
- }
- });
- return value;
- }
- const ESC = {
- '<': '<',
- '>': '>',
- '"': '"',
- '&': '&'
- };
- function escape(s) {
- return s.replace(/[<>"&]/g, escapeChar);
- }
- function escapeChar(a) {
- return ESC[a] || a;
- }
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- function getMessageFunctionDetails(func) {
- const argString = func.source ? `("${escape(func.source)}")` : `(?)`;
- return {
- _custom: {
- type: 'function',
- display: `<span>ƒ</span> ${argString}`
- }
- };
- }
- function registerScope(payload, i18n) {
- payload.rootNodes.push({
- id: 'global',
- label: 'Global Scope'
- });
- // prettier-ignore
- const global = i18n.mode === 'composition'
- ? i18n.global
- : i18n.global.__composer;
- for (const [keyInstance, instance] of i18n.__instances) {
- // prettier-ignore
- const composer = i18n.mode === 'composition'
- ? instance
- : instance.__composer;
- if (global === composer) {
- continue;
- }
- const label = keyInstance.type.name ||
- keyInstance.type.displayName ||
- keyInstance.type.__file;
- payload.rootNodes.push({
- id: composer.id.toString(),
- label: `${label} Scope`
- });
- }
- }
- function getComposer$1(nodeId, i18n) {
- if (nodeId === 'global') {
- return i18n.mode === 'composition'
- ? i18n.global
- : i18n.global.__composer;
- }
- else {
- const instance = Array.from(i18n.__instances.values()).find(item => item.id.toString() === nodeId);
- if (instance) {
- return i18n.mode === 'composition'
- ? instance
- : instance.__composer;
- }
- else {
- return null;
- }
- }
- }
- function inspectScope(payload, i18n) {
- const composer = getComposer$1(payload.nodeId, i18n);
- if (composer) {
- payload.state = makeScopeInspectState(composer);
- }
- }
- function makeScopeInspectState(composer) {
- const state = {};
- const localeType = 'Locale related info';
- const localeStates = [
- {
- type: localeType,
- key: 'locale',
- editable: true,
- value: composer.locale.value
- },
- {
- type: localeType,
- key: 'fallbackLocale',
- editable: true,
- value: composer.fallbackLocale.value
- },
- {
- type: localeType,
- key: 'availableLocales',
- editable: false,
- value: composer.availableLocales
- },
- {
- type: localeType,
- key: 'inheritLocale',
- editable: true,
- value: composer.inheritLocale
- }
- ];
- state[localeType] = localeStates;
- const localeMessagesType = 'Locale messages info';
- const localeMessagesStates = [
- {
- type: localeMessagesType,
- key: 'messages',
- editable: false,
- value: getLocaleMessageValue(composer.messages.value)
- }
- ];
- state[localeMessagesType] = localeMessagesStates;
- const datetimeFormatsType = 'Datetime formats info';
- const datetimeFormatsStates = [
- {
- type: datetimeFormatsType,
- key: 'datetimeFormats',
- editable: false,
- value: composer.datetimeFormats.value
- }
- ];
- state[datetimeFormatsType] = datetimeFormatsStates;
- const numberFormatsType = 'Datetime formats info';
- const numberFormatsStates = [
- {
- type: numberFormatsType,
- key: 'numberFormats',
- editable: false,
- value: composer.numberFormats.value
- }
- ];
- state[numberFormatsType] = numberFormatsStates;
- return state;
- }
- function addTimelineEvent(event, payload) {
- if (devtoolsApi) {
- let groupId;
- if (payload && 'groupId' in payload) {
- groupId = payload.groupId;
- delete payload.groupId;
- }
- devtoolsApi.addTimelineEvent({
- layerId: "vue-i18n-timeline" /* TIMELINE */,
- event: {
- title: event,
- groupId,
- time: Date.now(),
- meta: {},
- data: payload || {},
- logType: event === "compile-error" /* COMPILE_ERROR */
- ? 'error'
- : event === "fallback" /* FALBACK */ ||
- event === "missing" /* MISSING */
- ? 'warning'
- : 'default'
- }
- });
- }
- }
- function editScope(payload, i18n) {
- const composer = getComposer$1(payload.nodeId, i18n);
- if (composer) {
- const [field] = payload.path;
- if (field === 'locale' && isString(payload.state.value)) {
- composer.locale.value = payload.state.value;
- }
- else if (field === 'fallbackLocale' &&
- (isString(payload.state.value) ||
- isArray(payload.state.value) ||
- isObject(payload.state.value))) {
- composer.fallbackLocale.value = payload.state.value;
- }
- else if (field === 'inheritLocale' && isBoolean(payload.state.value)) {
- composer.inheritLocale = payload.state.value;
- }
- }
- }
- // supports compatibility for legacy vue-i18n APIs
- function defineMixin(vuei18n, composer, i18n) {
- return {
- beforeCreate() {
- const instance = vue.getCurrentInstance();
- /* istanbul ignore if */
- if (!instance) {
- throw createI18nError(22 /* UNEXPECTED_ERROR */);
- }
- const options = this.$options;
- if (options.i18n) {
- const optionsI18n = options.i18n;
- if (options.__i18n) {
- optionsI18n.__i18n = options.__i18n;
- }
- optionsI18n.__root = composer;
- if (this === this.$root) {
- this.$i18n = mergeToRoot(vuei18n, optionsI18n);
- }
- else {
- optionsI18n.__injectWithOption = true;
- this.$i18n = createVueI18n(optionsI18n);
- }
- }
- else if (options.__i18n) {
- if (this === this.$root) {
- this.$i18n = mergeToRoot(vuei18n, options);
- }
- else {
- this.$i18n = createVueI18n({
- __i18n: options.__i18n,
- __injectWithOption: true,
- __root: composer
- });
- }
- }
- else {
- // set global
- this.$i18n = vuei18n;
- }
- vuei18n.__onComponentInstanceCreated(this.$i18n);
- i18n.__setInstance(instance, this.$i18n);
- // defines vue-i18n legacy APIs
- this.$t = (...args) => this.$i18n.t(...args);
- this.$rt = (...args) => this.$i18n.rt(...args);
- this.$tc = (...args) => this.$i18n.tc(...args);
- this.$te = (key, locale) => this.$i18n.te(key, locale);
- this.$d = (...args) => this.$i18n.d(...args);
- this.$n = (...args) => this.$i18n.n(...args);
- this.$tm = (key) => this.$i18n.tm(key);
- },
- mounted() {
- /* istanbul ignore if */
- {
- this.$el.__VUE_I18N__ = this.$i18n.__composer;
- const emitter = (this.__v_emitter = createEmitter());
- const _vueI18n = this.$i18n;
- _vueI18n.__enableEmitter && _vueI18n.__enableEmitter(emitter);
- emitter.on('*', addTimelineEvent);
- }
- },
- beforeUnmount() {
- const instance = vue.getCurrentInstance();
- /* istanbul ignore if */
- if (!instance) {
- throw createI18nError(22 /* UNEXPECTED_ERROR */);
- }
- /* istanbul ignore if */
- {
- if (this.__v_emitter) {
- this.__v_emitter.off('*', addTimelineEvent);
- delete this.__v_emitter;
- }
- const _vueI18n = this.$i18n;
- _vueI18n.__disableEmitter && _vueI18n.__disableEmitter();
- delete this.$el.__VUE_I18N__;
- }
- delete this.$t;
- delete this.$rt;
- delete this.$tc;
- delete this.$te;
- delete this.$d;
- delete this.$n;
- delete this.$tm;
- i18n.__deleteInstance(instance);
- delete this.$i18n;
- }
- };
- }
- function mergeToRoot(root, options) {
- root.locale = options.locale || root.locale;
- root.fallbackLocale = options.fallbackLocale || root.fallbackLocale;
- root.missing = options.missing || root.missing;
- root.silentTranslationWarn =
- options.silentTranslationWarn || root.silentFallbackWarn;
- root.silentFallbackWarn =
- options.silentFallbackWarn || root.silentFallbackWarn;
- root.formatFallbackMessages =
- options.formatFallbackMessages || root.formatFallbackMessages;
- root.postTranslation = options.postTranslation || root.postTranslation;
- root.warnHtmlInMessage = options.warnHtmlInMessage || root.warnHtmlInMessage;
- root.escapeParameterHtml =
- options.escapeParameterHtml || root.escapeParameterHtml;
- root.sync = options.sync || root.sync;
- root.__composer[SetPluralRulesSymbol](options.pluralizationRules || root.pluralizationRules);
- const messages = getLocaleMessages(root.locale, {
- messages: options.messages,
- __i18n: options.__i18n
- });
- Object.keys(messages).forEach(locale => root.mergeLocaleMessage(locale, messages[locale]));
- if (options.datetimeFormats) {
- Object.keys(options.datetimeFormats).forEach(locale => root.mergeDateTimeFormat(locale, options.datetimeFormats[locale]));
- }
- if (options.numberFormats) {
- Object.keys(options.numberFormats).forEach(locale => root.mergeNumberFormat(locale, options.numberFormats[locale]));
- }
- return root;
- }
- /**
- * Vue I18n factory
- *
- * @param options - An options, see the {@link I18nOptions}
- *
- * @returns {@link I18n} instance
- *
- * @remarks
- * If you use Legacy API mode, you need toto specify {@link VueI18nOptions} and `legacy: true` option.
- *
- * If you use composition API mode, you need to specify {@link ComposerOptions}.
- *
- * @VueI18nSee [Getting Started](../guide/)
- * @VueI18nSee [Composition API](../guide/advanced/composition)
- *
- * @example
- * case: for Legacy API
- * ```js
- * import { createApp } from 'vue'
- * import { createI18n } from 'vue-i18n'
- *
- * // call with I18n option
- * const i18n = createI18n({
- * locale: 'ja',
- * messages: {
- * en: { ... },
- * ja: { ... }
- * }
- * })
- *
- * const App = {
- * // ...
- * }
- *
- * const app = createApp(App)
- *
- * // install!
- * app.use(i18n)
- * app.mount('#app')
- * ```
- *
- * @example
- * case: for composition API
- * ```js
- * import { createApp } from 'vue'
- * import { createI18n, useI18n } from 'vue-i18n'
- *
- * // call with I18n option
- * const i18n = createI18n({
- * legacy: false, // you must specify 'legacy: false' option
- * locale: 'ja',
- * messages: {
- * en: { ... },
- * ja: { ... }
- * }
- * })
- *
- * const App = {
- * setup() {
- * // ...
- * const { t } = useI18n({ ... })
- * return { ... , t }
- * }
- * }
- *
- * const app = createApp(App)
- *
- * // install!
- * app.use(i18n)
- * app.mount('#app')
- * ```
- *
- * @VueI18nGeneral
- */
- function createI18n(options = {}) {
- // prettier-ignore
- const __legacyMode = isBoolean(options.legacy)
- ? options.legacy
- : true;
- const __globalInjection = !!options.globalInjection;
- const __instances = new Map();
- // prettier-ignore
- const __global = __legacyMode
- ? createVueI18n(options)
- : createComposer(options);
- const symbol = makeSymbol('vue-i18n' );
- const i18n = {
- // mode
- get mode() {
- // prettier-ignore
- return __legacyMode
- ? 'legacy'
- : 'composition'
- ;
- },
- // install plugin
- async install(app, ...options) {
- {
- app.__VUE_I18N__ = i18n;
- }
- // setup global provider
- app.__VUE_I18N_SYMBOL__ = symbol;
- app.provide(app.__VUE_I18N_SYMBOL__, i18n);
- // global method and properties injection for Composition API
- if (!__legacyMode && __globalInjection) {
- injectGlobalFields(app, i18n.global);
- }
- // install built-in components and directive
- {
- apply(app, i18n, ...options);
- }
- // setup mixin for Legacy API
- if (__legacyMode) {
- app.mixin(defineMixin(__global, __global.__composer, i18n));
- }
- // setup vue-devtools plugin
- {
- const ret = await enableDevTools(app, i18n);
- if (!ret) {
- throw createI18nError(21 /* CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN */);
- }
- const emitter = createEmitter();
- if (__legacyMode) {
- const _vueI18n = __global;
- _vueI18n.__enableEmitter && _vueI18n.__enableEmitter(emitter);
- }
- else {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- const _composer = __global;
- _composer[EnableEmitter] && _composer[EnableEmitter](emitter);
- }
- emitter.on('*', addTimelineEvent);
- }
- },
- // global accessor
- get global() {
- return __global;
- },
- // @internal
- __instances,
- // @internal
- __getInstance(component) {
- return __instances.get(component) || null;
- },
- // @internal
- __setInstance(component, instance) {
- __instances.set(component, instance);
- },
- // @internal
- __deleteInstance(component) {
- __instances.delete(component);
- }
- };
- return i18n;
- }
- /**
- * Use Composition API for Vue I18n
- *
- * @param options - An options, see {@link UseI18nOptions}
- *
- * @returns {@link Composer} instance
- *
- * @remarks
- * This function is mainly used by `setup`.
- *
- * If options are specified, Composer instance is created for each component and you can be localized on the component.
- *
- * If options are not specified, you can be localized using the global Composer.
- *
- * @example
- * case: Component resource base localization
- * ```html
- * <template>
- * <form>
- * <label>{{ t('language') }}</label>
- * <select v-model="locale">
- * <option value="en">en</option>
- * <option value="ja">ja</option>
- * </select>
- * </form>
- * <p>message: {{ t('hello') }}</p>
- * </template>
- *
- * <script>
- * import { useI18n } from 'vue-i18n'
- *
- * export default {
- * setup() {
- * const { t, locale } = useI18n({
- * locale: 'ja',
- * messages: {
- * en: { ... },
- * ja: { ... }
- * }
- * })
- * // Something to do ...
- *
- * return { ..., t, locale }
- * }
- * }
- * </script>
- * ```
- *
- * @VueI18nComposition
- */
- function useI18n(options = {}) {
- const instance = vue.getCurrentInstance();
- if (instance == null) {
- throw createI18nError(16 /* MUST_BE_CALL_SETUP_TOP */);
- }
- if (!instance.appContext.app.__VUE_I18N_SYMBOL__) {
- throw createI18nError(17 /* NOT_INSLALLED */);
- }
- const i18n = vue.inject(instance.appContext.app.__VUE_I18N_SYMBOL__);
- /* istanbul ignore if */
- if (!i18n) {
- throw createI18nError(22 /* UNEXPECTED_ERROR */);
- }
- // prettier-ignore
- const global = i18n.mode === 'composition'
- ? i18n.global
- : i18n.global.__composer;
- // prettier-ignore
- const scope = isEmptyObject(options)
- ? ('__i18n' in instance.type)
- ? 'local'
- : 'global'
- : !options.useScope
- ? 'local'
- : options.useScope;
- if (scope === 'global') {
- let messages = isObject(options.messages) ? options.messages : {};
- if ('__i18nGlobal' in instance.type) {
- messages = getLocaleMessages(global.locale.value, {
- messages,
- __i18n: instance.type.__i18nGlobal
- });
- }
- // merge locale messages
- const locales = Object.keys(messages);
- if (locales.length) {
- locales.forEach(locale => {
- global.mergeLocaleMessage(locale, messages[locale]);
- });
- }
- // merge datetime formats
- if (isObject(options.datetimeFormats)) {
- const locales = Object.keys(options.datetimeFormats);
- if (locales.length) {
- locales.forEach(locale => {
- global.mergeDateTimeFormat(locale, options.datetimeFormats[locale]);
- });
- }
- }
- // merge number formats
- if (isObject(options.numberFormats)) {
- const locales = Object.keys(options.numberFormats);
- if (locales.length) {
- locales.forEach(locale => {
- global.mergeNumberFormat(locale, options.numberFormats[locale]);
- });
- }
- }
- return global;
- }
- if (scope === 'parent') {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- let composer = getComposer(i18n, instance, options.__useComponent);
- if (composer == null) {
- {
- warn(getWarnMessage(12 /* NOT_FOUND_PARENT_SCOPE */));
- }
- composer = global;
- }
- return composer;
- }
- // scope 'local' case
- if (i18n.mode === 'legacy') {
- throw createI18nError(18 /* NOT_AVAILABLE_IN_LEGACY_MODE */);
- }
- const i18nInternal = i18n;
- let composer = i18nInternal.__getInstance(instance);
- if (composer == null) {
- const type = instance.type;
- const composerOptions = assign({}, options);
- if (type.__i18n) {
- composerOptions.__i18n = type.__i18n;
- }
- if (global) {
- composerOptions.__root = global;
- }
- composer = createComposer(composerOptions);
- setupLifeCycle(i18nInternal, instance, composer);
- i18nInternal.__setInstance(instance, composer);
- }
- return composer;
- }
- function getComposer(i18n, target, useComponent = false) {
- let composer = null;
- const root = target.root;
- let current = target.parent;
- while (current != null) {
- const i18nInternal = i18n;
- if (i18n.mode === 'composition') {
- composer = i18nInternal.__getInstance(current);
- }
- else {
- const vueI18n = i18nInternal.__getInstance(current);
- if (vueI18n != null) {
- composer = vueI18n
- .__composer;
- }
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- if (useComponent && composer && !composer[InejctWithOption]) {
- composer = null;
- }
- }
- if (composer != null) {
- break;
- }
- if (root === current) {
- break;
- }
- current = current.parent;
- }
- return composer;
- }
- function setupLifeCycle(i18n, target, composer) {
- let emitter = null;
- vue.onMounted(() => {
- // inject composer instance to DOM for intlify-devtools
- if (target.vnode.el) {
- target.vnode.el.__VUE_I18N__ = composer;
- emitter = createEmitter();
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- const _composer = composer;
- _composer[EnableEmitter] && _composer[EnableEmitter](emitter);
- emitter.on('*', addTimelineEvent);
- }
- }, target);
- vue.onUnmounted(() => {
- // remove composer instance from DOM for intlify-devtools
- if (target.vnode.el &&
- target.vnode.el.__VUE_I18N__) {
- emitter && emitter.off('*', addTimelineEvent);
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- const _composer = composer;
- _composer[DisableEmitter] && _composer[DisableEmitter]();
- delete target.vnode.el.__VUE_I18N__;
- }
- i18n.__deleteInstance(target);
- }, target);
- }
- const globalExportProps = [
- 'locale',
- 'fallbackLocale',
- 'availableLocales'
- ];
- const globalExportMethods = ['t', 'rt', 'd', 'n', 'tm'];
- function injectGlobalFields(app, composer) {
- const i18n = Object.create(null);
- globalExportProps.forEach(prop => {
- const desc = Object.getOwnPropertyDescriptor(composer, prop);
- if (!desc) {
- throw createI18nError(22 /* UNEXPECTED_ERROR */);
- }
- const wrap = vue.isRef(desc.value) // check computed props
- ? {
- get() {
- return desc.value.value;
- },
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- set(val) {
- desc.value.value = val;
- }
- }
- : {
- get() {
- return desc.get && desc.get();
- }
- };
- Object.defineProperty(i18n, prop, wrap);
- });
- app.config.globalProperties.$i18n = i18n;
- globalExportMethods.forEach(method => {
- const desc = Object.getOwnPropertyDescriptor(composer, method);
- if (!desc || !desc.value) {
- throw createI18nError(22 /* UNEXPECTED_ERROR */);
- }
- Object.defineProperty(app.config.globalProperties, `$${method}`, desc);
- });
- }
- // NOTE: experimental !!
- {
- const target = getGlobalThis();
- target.__INTLIFY__ = true;
- setDevToolsHook(target.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__);
- }
- {
- initDev();
- }
- exports.DatetimeFormat = DatetimeFormat;
- exports.NumberFormat = NumberFormat;
- exports.Translation = Translation;
- exports.VERSION = VERSION;
- exports.createI18n = createI18n;
- exports.useI18n = useI18n;
- exports.vTDirective = vTDirective;
- Object.defineProperty(exports, '__esModule', { value: true });
- return exports;
- }({}, Vue));
|