1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /**
- * 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 moment from 'moment';
- import 'moment/dist/locale/zh-cn';
- 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;
- });
- moment.locale('cn');
- break;
- // English
- case 'en':
- import('ant-design-vue/es/locale/en_US').then((locale) => {
- antConfigLocaleRef.value = locale.default;
- });
- moment.locale('en-us');
- break;
- // other
- default:
- break;
- }
- }
- // initialization
- function setLocale() {
- const lang = unref(getLang);
- lang && changeLocale(lang);
- }
- return {
- setLocale,
- getLocale,
- getLang,
- changeLocale,
- antConfigLocale: antConfigLocaleRef,
- };
- }
|