123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- * Multi-language related operations
- */
- import type { LocaleType } from '/@/locales/types';
- import type { Ref } from 'vue';
- import { unref, ref } from 'vue';
- import { useLocaleSetting } from '/@/hooks/setting/useLocaleSetting';
- import { dateUtil } from '/@/utils/dateUtil';
- import { i18n } from './setupI18n';
- const antConfigLocaleRef = ref<any>(null);
- export function useLocale() {
- const { getLang, getLocale, setLocale: setLocalSetting } = useLocaleSetting();
- // Switching the language will change the locale of useI18n
- // And submit to configuration modification
- function changeLocale(lang: LocaleType): void {
- if (i18n.mode === 'legacy') {
- i18n.global.locale = lang;
- } else {
- ((i18n.global.locale as unknown) as Ref<string>).value = lang;
- }
- setLocalSetting({ lang });
- // i18n.global.setLocaleMessage(locale, messages);
- switch (lang) {
- // Simplified Chinese
- case 'zh_CN':
- import('ant-design-vue/es/locale/zh_CN').then((locale) => {
- antConfigLocaleRef.value = locale.default;
- });
- dateUtil.locale('cn');
- break;
- // English
- case 'en':
- import('ant-design-vue/es/locale/en_US').then((locale) => {
- antConfigLocaleRef.value = locale.default;
- });
- dateUtil.locale('en-us');
- break;
- // other
- default:
- break;
- }
- }
- // initialization
- function setLocale() {
- const lang = unref(getLang);
- lang && changeLocale(lang);
- }
- return {
- setLocale,
- getLocale,
- getLang,
- changeLocale,
- antConfigLocale: antConfigLocaleRef,
- };
- }
|