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.
169 lines
4.4 KiB
169 lines
4.4 KiB
// TODO: remove this lint
|
|
// SFC has specified a displayName, but not worked.
|
|
/* eslint-disable react/display-name */
|
|
import * as React from 'react';
|
|
import { FormProvider as RcFormProvider } from 'rc-field-form';
|
|
import { ValidateMessages } from 'rc-field-form/lib/interface';
|
|
import { RenderEmptyHandler } from './renderEmpty';
|
|
import LocaleProvider, { Locale, ANT_MARK } from '../locale-provider';
|
|
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
|
import { ConfigConsumer, ConfigContext, CSPConfig, ConfigConsumerProps } from './context';
|
|
import { SizeType, SizeContextProvider } from './SizeContext';
|
|
import message from '../message';
|
|
import notification from '../notification';
|
|
|
|
export { RenderEmptyHandler, ConfigContext, ConfigConsumer, CSPConfig, ConfigConsumerProps };
|
|
|
|
export const configConsumerProps = [
|
|
'getTargetContainer',
|
|
'getPopupContainer',
|
|
'rootPrefixCls',
|
|
'getPrefixCls',
|
|
'renderEmpty',
|
|
'csp',
|
|
'autoInsertSpaceInButton',
|
|
'locale',
|
|
'pageHeader',
|
|
];
|
|
|
|
export interface ConfigProviderProps {
|
|
getTargetContainer?: () => HTMLElement;
|
|
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
prefixCls?: string;
|
|
children?: React.ReactNode;
|
|
renderEmpty?: RenderEmptyHandler;
|
|
csp?: CSPConfig;
|
|
autoInsertSpaceInButton?: boolean;
|
|
form?: {
|
|
validateMessages?: ValidateMessages;
|
|
};
|
|
input?: {
|
|
autoComplete?: string;
|
|
};
|
|
locale?: Locale;
|
|
pageHeader?: {
|
|
ghost: boolean;
|
|
};
|
|
componentSize?: SizeType;
|
|
direction?: 'ltr' | 'rtl';
|
|
space?: {
|
|
size?: SizeType | number;
|
|
};
|
|
virtual?: boolean;
|
|
dropdownMatchSelectWidth?: boolean;
|
|
}
|
|
|
|
const ConfigProvider: React.FC<ConfigProviderProps> = props => {
|
|
React.useEffect(() => {
|
|
if (props.direction) {
|
|
message.config({
|
|
rtl: props.direction === 'rtl',
|
|
});
|
|
notification.config({
|
|
rtl: props.direction === 'rtl',
|
|
});
|
|
}
|
|
}, [props.direction]);
|
|
|
|
const getPrefixClsWrapper = (context: ConfigConsumerProps) => {
|
|
return (suffixCls: string, customizePrefixCls?: string) => {
|
|
const { prefixCls } = props;
|
|
|
|
if (customizePrefixCls) return customizePrefixCls;
|
|
|
|
const mergedPrefixCls = prefixCls || context.getPrefixCls('');
|
|
|
|
return suffixCls ? `${mergedPrefixCls}-${suffixCls}` : mergedPrefixCls;
|
|
};
|
|
};
|
|
|
|
const renderProvider = (context: ConfigConsumerProps, legacyLocale: Locale) => {
|
|
const {
|
|
children,
|
|
getTargetContainer,
|
|
getPopupContainer,
|
|
renderEmpty,
|
|
csp,
|
|
autoInsertSpaceInButton,
|
|
form,
|
|
input,
|
|
locale,
|
|
pageHeader,
|
|
componentSize,
|
|
direction,
|
|
space,
|
|
virtual,
|
|
dropdownMatchSelectWidth,
|
|
} = props;
|
|
|
|
const config: ConfigConsumerProps = {
|
|
...context,
|
|
getPrefixCls: getPrefixClsWrapper(context),
|
|
csp,
|
|
autoInsertSpaceInButton,
|
|
locale: locale || legacyLocale,
|
|
direction,
|
|
space,
|
|
virtual,
|
|
dropdownMatchSelectWidth,
|
|
};
|
|
|
|
if (getTargetContainer) {
|
|
config.getTargetContainer = getTargetContainer;
|
|
}
|
|
|
|
if (getPopupContainer) {
|
|
config.getPopupContainer = getPopupContainer;
|
|
}
|
|
|
|
if (renderEmpty) {
|
|
config.renderEmpty = renderEmpty;
|
|
}
|
|
|
|
if (pageHeader) {
|
|
config.pageHeader = pageHeader;
|
|
}
|
|
|
|
if (input) {
|
|
config.input = input;
|
|
}
|
|
|
|
let childNode = children;
|
|
|
|
// Additional Form provider
|
|
let validateMessages: ValidateMessages = {};
|
|
|
|
if (locale && locale.Form && locale.Form.defaultValidateMessages) {
|
|
validateMessages = locale.Form.defaultValidateMessages;
|
|
}
|
|
if (form && form.validateMessages) {
|
|
validateMessages = { ...validateMessages, ...form.validateMessages };
|
|
}
|
|
|
|
if (Object.keys(validateMessages).length > 0) {
|
|
childNode = <RcFormProvider validateMessages={validateMessages}>{children}</RcFormProvider>;
|
|
}
|
|
|
|
return (
|
|
<SizeContextProvider size={componentSize}>
|
|
<ConfigContext.Provider value={config}>
|
|
<LocaleProvider locale={locale || legacyLocale} _ANT_MARK__={ANT_MARK}>
|
|
{childNode}
|
|
</LocaleProvider>
|
|
</ConfigContext.Provider>
|
|
</SizeContextProvider>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<LocaleReceiver>
|
|
{(_, __, legacyLocale) => (
|
|
<ConfigConsumer>
|
|
{context => renderProvider(context, legacyLocale as Locale)}
|
|
</ConfigConsumer>
|
|
)}
|
|
</LocaleReceiver>
|
|
);
|
|
};
|
|
|
|
export default ConfigProvider;
|
|
|