mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
b5fffcab87
* feat: inherit rc-pagination props, more customizable close #32128, #32129 * chore: CustomSelect.Option is required by rc-pagination * fix: LocaleReceivier types issue * fix: lint issue, pageSize must be presented
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import * as React from 'react';
|
|
import defaultLocaleData from './default';
|
|
import LocaleContext from './context';
|
|
import { Locale } from '.';
|
|
|
|
export type LocaleComponentName = Exclude<keyof Locale, 'locale'>;
|
|
|
|
export interface LocaleReceiverProps<C extends LocaleComponentName = LocaleComponentName> {
|
|
componentName: C;
|
|
defaultLocale?: Locale[C] | (() => Locale[C]);
|
|
children: (
|
|
locale: Exclude<Locale[C], undefined>,
|
|
localeCode?: string,
|
|
fullLocale?: object,
|
|
) => React.ReactNode;
|
|
}
|
|
|
|
export default class LocaleReceiver<
|
|
C extends LocaleComponentName = LocaleComponentName,
|
|
> extends React.Component<LocaleReceiverProps<C>> {
|
|
static defaultProps = {
|
|
componentName: 'global',
|
|
};
|
|
|
|
static contextType = LocaleContext;
|
|
|
|
getLocale(): Exclude<Locale[C], undefined> {
|
|
const { componentName, defaultLocale } = this.props;
|
|
const locale = defaultLocale || defaultLocaleData[componentName ?? 'global'];
|
|
const antLocale = this.context;
|
|
const localeFromContext = componentName && antLocale ? antLocale[componentName] : {};
|
|
return {
|
|
...(locale instanceof Function ? locale() : locale),
|
|
...(localeFromContext || {}),
|
|
};
|
|
}
|
|
|
|
getLocaleCode() {
|
|
const antLocale = this.context;
|
|
const localeCode = antLocale && antLocale.locale;
|
|
// Had use LocaleProvide but didn't set locale
|
|
if (antLocale && antLocale.exist && !localeCode) {
|
|
return defaultLocaleData.locale;
|
|
}
|
|
return localeCode;
|
|
}
|
|
|
|
render() {
|
|
return this.props.children(this.getLocale(), this.getLocaleCode(), this.context);
|
|
}
|
|
}
|
|
|
|
export function useLocaleReceiver<T extends LocaleComponentName>(
|
|
componentName: T,
|
|
defaultLocale?: Locale[T] | Function,
|
|
): [Locale[T]] {
|
|
const antLocale = React.useContext(LocaleContext);
|
|
|
|
const componentLocale = React.useMemo(() => {
|
|
const locale = defaultLocale || defaultLocaleData[componentName || 'global'];
|
|
const localeFromContext = componentName && antLocale ? antLocale[componentName] : {};
|
|
|
|
return {
|
|
...(typeof locale === 'function' ? (locale as Function)() : locale),
|
|
...(localeFromContext || {}),
|
|
};
|
|
}, [componentName, defaultLocale, antLocale]);
|
|
|
|
return [componentLocale];
|
|
}
|