mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
![]() |
import type { App } from 'vue';
|
||
|
import { createI18n } from 'vue-i18n';
|
||
|
import type { Locale } from 'vue-i18n';
|
||
|
|
||
|
const i18n = createI18n({
|
||
|
legacy: false,
|
||
|
locale: '',
|
||
|
messages: {},
|
||
|
});
|
||
|
|
||
|
const localesMap = Object.fromEntries(
|
||
|
Object.entries(import.meta.glob('../../locales/*.yml'))
|
||
|
.map(([path, loadLocale]) => [path.match(/([\w-]*)\.yml$/)?.[1], loadLocale]),
|
||
|
) as Record<Locale, () => Promise<{ default: Record<string, string> }>>;
|
||
|
|
||
|
export const availableLocales = Object.keys(localesMap);
|
||
|
|
||
|
const loadedLanguages: string[] = [];
|
||
|
|
||
|
function setI18nLanguage(lang: Locale) {
|
||
|
i18n.global.locale.value = lang as any;
|
||
|
if (typeof document !== 'undefined') {
|
||
|
document.querySelector('html')?.setAttribute('lang', lang);
|
||
|
}
|
||
|
return lang;
|
||
|
}
|
||
|
|
||
|
export async function loadLanguageAsync(lang: string): Promise<Locale> {
|
||
|
if (i18n.global.locale.value === lang) {
|
||
|
return setI18nLanguage(lang);
|
||
|
}
|
||
|
|
||
|
if (loadedLanguages.includes(lang)) {
|
||
|
return setI18nLanguage(lang);
|
||
|
}
|
||
|
|
||
|
const messages = await localesMap[lang]();
|
||
|
|
||
|
i18n.global.setLocaleMessage(lang, messages.default);
|
||
|
loadedLanguages.push(lang);
|
||
|
|
||
|
return setI18nLanguage(lang);
|
||
|
}
|
||
|
|
||
|
export const i18nPlugin = {
|
||
|
install: (app: App) => {
|
||
|
app.use(i18n);
|
||
|
loadLanguageAsync('en');
|
||
|
},
|
||
|
};
|