mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
36bcaaef85
* chore: use varaible.less * chore: basic primary varaible * chore: Move to variable * chore: align active color * chore: global fix of css variable * chore: primary colors * chore: button danger * chore: btn default error color * chore: button series * chore: More examples * chore: More components * chore: Form demo * chore: form style * fix: Tag & Alert variable * chore: update footer * chore: rm tmp code * chore: transfer * fix: picker column active color * chore: Adjust active bg color * chore: table hover color * chore: all css variables * chore: Global using variables * chore: Test case * chore: Update test logic * chore: back of default less * chore: entry of site use proxy style * chore: update entry * chore: split of variables * refactor: quick dist speed * fix: site use variable version * chore: Update less config * chore: add mv script * chore: Update repalcement script * chore: Add inject variables * chore: Update script * fix: script path * chore: Move to component instead * chore: fix condition * chore: update config * chore: Update in less transform * chore: Modify logic * chore: change to variables * chore: Update name * fix: script name * chore: do inject * revert: back of path * chore: 2 way of generate * bump tools * chore: Add auto replacement script * chore: auto genrate less file * chore: fix test * test: More test case * chore: Update limit config * test: coverage * docs: Update doc
109 lines
3.1 KiB
TypeScript
109 lines
3.1 KiB
TypeScript
import * as React from 'react';
|
|
import defaultRenderEmpty, { RenderEmptyHandler } from './renderEmpty';
|
|
import { Locale } from '../locale-provider';
|
|
import { SizeType } from './SizeContext';
|
|
import { RequiredMark } from '../form/Form';
|
|
|
|
export interface Theme {
|
|
primaryColor?: string;
|
|
infoColor?: string;
|
|
successColor?: string;
|
|
processingColor?: string;
|
|
errorColor?: string;
|
|
warningColor?: string;
|
|
}
|
|
|
|
export interface CSPConfig {
|
|
nonce?: string;
|
|
}
|
|
|
|
export type DirectionType = 'ltr' | 'rtl' | undefined;
|
|
|
|
export interface ConfigConsumerProps {
|
|
getTargetContainer?: () => HTMLElement;
|
|
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
rootPrefixCls?: string;
|
|
iconPrefixCls?: string;
|
|
getPrefixCls: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
renderEmpty: RenderEmptyHandler;
|
|
csp?: CSPConfig;
|
|
autoInsertSpaceInButton?: boolean;
|
|
input?: {
|
|
autoComplete?: string;
|
|
};
|
|
locale?: Locale;
|
|
pageHeader?: {
|
|
ghost: boolean;
|
|
};
|
|
direction?: DirectionType;
|
|
space?: {
|
|
size?: SizeType | number;
|
|
};
|
|
virtual?: boolean;
|
|
dropdownMatchSelectWidth?: boolean;
|
|
form?: {
|
|
requiredMark?: RequiredMark;
|
|
};
|
|
}
|
|
|
|
const defaultGetPrefixCls = (suffixCls?: string, customizePrefixCls?: string) => {
|
|
if (customizePrefixCls) return customizePrefixCls;
|
|
|
|
return suffixCls ? `ant-${suffixCls}` : 'ant';
|
|
};
|
|
|
|
export const ConfigContext = React.createContext<ConfigConsumerProps>({
|
|
// We provide a default function for Context without provider
|
|
getPrefixCls: defaultGetPrefixCls,
|
|
|
|
renderEmpty: defaultRenderEmpty,
|
|
});
|
|
|
|
export const ConfigConsumer = ConfigContext.Consumer;
|
|
|
|
// =========================== withConfigConsumer ===========================
|
|
// We need define many types here. So let's put in the block region
|
|
type IReactComponent<P = any> =
|
|
| React.FC<P>
|
|
| React.ComponentClass<P>
|
|
| React.ClassicComponentClass<P>;
|
|
|
|
interface BasicExportProps {
|
|
prefixCls?: string;
|
|
}
|
|
|
|
interface ConsumerConfig {
|
|
prefixCls: string;
|
|
}
|
|
|
|
interface ConstructorProps {
|
|
displayName?: string;
|
|
}
|
|
|
|
/** @deprecated Use hooks instead. This is a legacy function */
|
|
export function withConfigConsumer<ExportProps extends BasicExportProps>(config: ConsumerConfig) {
|
|
return function withConfigConsumerFunc<ComponentDef>(
|
|
Component: IReactComponent,
|
|
): React.FC<ExportProps> & ComponentDef {
|
|
// Wrap with ConfigConsumer. Since we need compatible with react 15, be care when using ref methods
|
|
const SFC = ((props: ExportProps) => (
|
|
<ConfigConsumer>
|
|
{(configProps: ConfigConsumerProps) => {
|
|
const { prefixCls: basicPrefixCls } = config;
|
|
const { getPrefixCls } = configProps;
|
|
const { prefixCls: customizePrefixCls } = props;
|
|
const prefixCls = getPrefixCls(basicPrefixCls, customizePrefixCls);
|
|
return <Component {...configProps} {...props} prefixCls={prefixCls} />;
|
|
}}
|
|
</ConfigConsumer>
|
|
)) as React.FC<ExportProps> & ComponentDef;
|
|
|
|
const cons: ConstructorProps = Component.constructor as ConstructorProps;
|
|
const name = (cons && cons.displayName) || Component.name || 'Component';
|
|
|
|
SFC.displayName = `withConfigConsumer(${name})`;
|
|
|
|
return SFC;
|
|
};
|
|
}
|