mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
72a7ba618f
* chore: update rc-table * add basic table style * checked all logic * checkbox support disabled * selection style * selection support radio * add selections support * selection extra style * select all locale * sorter logic * add more desc * init Filter hooks * init filter hooks * update style * filter style * filter style * fix filter * sort control * ajax it * add expandedable css * expandable view style * fixed style * border style * empty style * fix pagination style * add fixed demo * un-comment * clean up * fix filter check logic * fix overflow & ellipsis conflict * fix tes * adjust scroll shadow * fix border fixed style * add part of test case * add filter test part * more test case * issue related test * filter test * adjust pagination logic * fix pagination test case * all selection test case * table sorter test case * table basic test * fix test case * update faq * update expandable doc * add v4 doc * add summary docs * more demo * fix selection * update snapshot * update test case * fix ff styling * update rc-table * update snapshot * update snapshot * fix lint * fix style lint * fix style * update snapshot * update desc * fix missing icon
114 lines
2.9 KiB
TypeScript
114 lines
2.9 KiB
TypeScript
// 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';
|
|
|
|
export { RenderEmptyHandler, ConfigContext, ConfigConsumer, CSPConfig, ConfigConsumerProps };
|
|
|
|
export const configConsumerProps = [
|
|
'getPopupContainer',
|
|
'rootPrefixCls',
|
|
'getPrefixCls',
|
|
'renderEmpty',
|
|
'csp',
|
|
'autoInsertSpaceInButton',
|
|
'locale',
|
|
'pageHeader',
|
|
];
|
|
|
|
export interface ConfigProviderProps {
|
|
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
prefixCls?: string;
|
|
children?: React.ReactNode;
|
|
renderEmpty?: RenderEmptyHandler;
|
|
csp?: CSPConfig;
|
|
autoInsertSpaceInButton?: boolean;
|
|
form?: {
|
|
validateMessages?: ValidateMessages;
|
|
};
|
|
locale?: Locale;
|
|
pageHeader?: {
|
|
ghost: boolean;
|
|
};
|
|
}
|
|
|
|
class ConfigProvider extends React.Component<ConfigProviderProps> {
|
|
getPrefixCls = (suffixCls: string, customizePrefixCls?: string) => {
|
|
const { prefixCls = 'ant' } = this.props;
|
|
|
|
if (customizePrefixCls) return customizePrefixCls;
|
|
|
|
return suffixCls ? `${prefixCls}-${suffixCls}` : prefixCls;
|
|
};
|
|
|
|
renderProvider = (context: ConfigConsumerProps, legacyLocale: Locale) => {
|
|
const {
|
|
children,
|
|
getPopupContainer,
|
|
renderEmpty,
|
|
csp,
|
|
autoInsertSpaceInButton,
|
|
form,
|
|
locale,
|
|
pageHeader,
|
|
} = this.props;
|
|
|
|
const config: ConfigConsumerProps = {
|
|
...context,
|
|
getPrefixCls: this.getPrefixCls,
|
|
csp,
|
|
autoInsertSpaceInButton,
|
|
locale: locale || legacyLocale,
|
|
};
|
|
|
|
if (getPopupContainer) {
|
|
config.getPopupContainer = getPopupContainer;
|
|
}
|
|
|
|
if (renderEmpty) {
|
|
config.renderEmpty = renderEmpty;
|
|
}
|
|
|
|
if (pageHeader) {
|
|
config.pageHeader = pageHeader;
|
|
}
|
|
|
|
let childNode = children;
|
|
|
|
// Additional Form provider
|
|
if (form && form.validateMessages) {
|
|
childNode = (
|
|
<RcFormProvider validateMessages={form.validateMessages}>{children}</RcFormProvider>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ConfigContext.Provider value={config}>
|
|
<LocaleProvider locale={locale || legacyLocale} _ANT_MARK__={ANT_MARK}>
|
|
{childNode}
|
|
</LocaleProvider>
|
|
</ConfigContext.Provider>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<LocaleReceiver>
|
|
{(_, __, legacyLocale) => (
|
|
<ConfigConsumer>
|
|
{context => this.renderProvider(context, legacyLocale as Locale)}
|
|
</ConfigConsumer>
|
|
)}
|
|
</LocaleReceiver>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ConfigProvider;
|