You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
898 B
26 lines
898 B
import assign from 'object-assign';
|
|
|
|
export function getComponentLocale(props, context, componentName, getDefaultLocale) {
|
|
let locale: any = {};
|
|
if (context && context.antLocale && context.antLocale[componentName]) {
|
|
locale = context.antLocale[componentName];
|
|
} else {
|
|
const defaultLocale = getDefaultLocale();
|
|
// TODO: make default lang of antd be English
|
|
// https://github.com/ant-design/ant-design/issues/6334
|
|
locale = defaultLocale.default || defaultLocale;
|
|
}
|
|
|
|
const result = assign({}, locale, props.locale);
|
|
result.lang = assign({}, locale.lang, props.locale.lang);
|
|
return result;
|
|
}
|
|
|
|
export function getLocaleCode(context) {
|
|
const localeCode = context.antLocale && context.antLocale.locale;
|
|
// Had use LocaleProvide but didn't set locale
|
|
if (context.antLocale && context.antLocale.exist && !localeCode) {
|
|
return 'zh-cn';
|
|
}
|
|
return localeCode;
|
|
}
|
|
|