2
This commit is contained in:
26
normal-admin/node_modules/element-plus/es/hooks/use-locale/index.mjs
generated
vendored
Normal file
26
normal-admin/node_modules/element-plus/es/hooks/use-locale/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import { computed, unref, isRef, ref, inject } from 'vue';
|
||||
import { get } from 'lodash-unified';
|
||||
import English from '../../locale/lang/en.mjs';
|
||||
|
||||
const buildTranslator = (locale) => (path, option) => translate(path, option, unref(locale));
|
||||
const translate = (path, option, locale) => get(locale, path, path).replace(/\{(\w+)\}/g, (_, key) => {
|
||||
var _a;
|
||||
return `${(_a = option == null ? void 0 : option[key]) != null ? _a : `{${key}}`}`;
|
||||
});
|
||||
const buildLocaleContext = (locale) => {
|
||||
const lang = computed(() => unref(locale).name);
|
||||
const localeRef = isRef(locale) ? locale : ref(locale);
|
||||
return {
|
||||
lang,
|
||||
locale: localeRef,
|
||||
t: buildTranslator(locale)
|
||||
};
|
||||
};
|
||||
const localeContextKey = Symbol("localeContextKey");
|
||||
const useLocale = (localeOverrides) => {
|
||||
const locale = localeOverrides || inject(localeContextKey, ref());
|
||||
return buildLocaleContext(computed(() => locale.value || English));
|
||||
};
|
||||
|
||||
export { buildLocaleContext, buildTranslator, localeContextKey, translate, useLocale };
|
||||
//# sourceMappingURL=index.mjs.map
|
||||
Reference in New Issue
Block a user