mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 09:54:16 +08:00
9fcce8ffdc
Some checks are pending
Publish Any Commit / build (push) Waiting to run
🔀 Sync mirror to Gitee / mirror (push) Waiting to run
✅ test / lint (push) Waiting to run
✅ test / test-react-legacy (16, 1/2) (push) Waiting to run
✅ test / test-react-legacy (16, 2/2) (push) Waiting to run
✅ test / test-react-legacy (17, 1/2) (push) Waiting to run
✅ test / test-react-legacy (17, 2/2) (push) Waiting to run
✅ test / test-node (push) Waiting to run
✅ test / test-react-latest (dom, 1/2) (push) Waiting to run
✅ test / test-react-latest (dom, 2/2) (push) Waiting to run
✅ test / test-react-latest-dist (dist, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist, 2/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 2/2) (push) Blocked by required conditions
✅ test / test-coverage (push) Blocked by required conditions
✅ test / build (push) Waiting to run
✅ test / test lib/es module (es, 1/2) (push) Waiting to run
✅ test / test lib/es module (es, 2/2) (push) Waiting to run
✅ test / test lib/es module (lib, 1/2) (push) Waiting to run
✅ test / test lib/es module (lib, 2/2) (push) Waiting to run
👁️ Visual Regression Persist Start / test image (push) Waiting to run
* feat: ConfigProvider support classNames and styles for Empty * fix * fix
147 lines
3.9 KiB
TypeScript
147 lines
3.9 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { devUseWarning } from '../_util/warning';
|
|
import { ConfigContext } from '../config-provider';
|
|
import { useLocale } from '../locale';
|
|
import DefaultEmptyImg from './empty';
|
|
import SimpleEmptyImg from './simple';
|
|
import useStyle from './style';
|
|
|
|
const defaultEmptyImg = <DefaultEmptyImg />;
|
|
const simpleEmptyImg = <SimpleEmptyImg />;
|
|
|
|
export interface TransferLocale {
|
|
description: string;
|
|
}
|
|
|
|
export type SemanticName = 'root' | 'image' | 'description' | 'footer';
|
|
export interface EmptyProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
rootClassName?: string;
|
|
style?: React.CSSProperties;
|
|
/** @deprecated Please use `styles={{ image: {} }}` instead */
|
|
imageStyle?: React.CSSProperties;
|
|
image?: React.ReactNode;
|
|
description?: React.ReactNode;
|
|
children?: React.ReactNode;
|
|
classNames?: Partial<Record<SemanticName, string>>;
|
|
styles?: Partial<Record<SemanticName, React.CSSProperties>>;
|
|
}
|
|
|
|
type CompoundedComponent = React.FC<EmptyProps> & {
|
|
PRESENTED_IMAGE_DEFAULT: React.ReactNode;
|
|
PRESENTED_IMAGE_SIMPLE: React.ReactNode;
|
|
};
|
|
|
|
const Empty: CompoundedComponent = (props) => {
|
|
const {
|
|
className,
|
|
rootClassName,
|
|
prefixCls: customizePrefixCls,
|
|
image = defaultEmptyImg,
|
|
description,
|
|
children,
|
|
imageStyle,
|
|
style,
|
|
classNames: emptyClassNames,
|
|
styles,
|
|
...restProps
|
|
} = props;
|
|
const { getPrefixCls, direction, empty } = React.useContext(ConfigContext);
|
|
|
|
const prefixCls = getPrefixCls('empty', customizePrefixCls);
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
|
|
|
|
const [locale] = useLocale('Empty');
|
|
|
|
const des = typeof description !== 'undefined' ? description : locale?.description;
|
|
const alt = typeof des === 'string' ? des : 'empty';
|
|
|
|
let imageNode: React.ReactNode = null;
|
|
|
|
if (typeof image === 'string') {
|
|
imageNode = <img alt={alt} src={image} />;
|
|
} else {
|
|
imageNode = image;
|
|
}
|
|
|
|
// ============================= Warning ==============================
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const warning = devUseWarning('Empty');
|
|
|
|
[['imageStyle', 'styles: { image: {} }']].forEach(([deprecatedName, newName]) => {
|
|
warning.deprecated(!(deprecatedName in props), deprecatedName, newName);
|
|
});
|
|
}
|
|
|
|
return wrapCSSVar(
|
|
<div
|
|
className={classNames(
|
|
hashId,
|
|
cssVarCls,
|
|
prefixCls,
|
|
empty?.className,
|
|
{
|
|
[`${prefixCls}-normal`]: image === simpleEmptyImg,
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
className,
|
|
rootClassName,
|
|
empty?.classNames?.root,
|
|
emptyClassNames?.root,
|
|
)}
|
|
style={{ ...empty?.styles?.root, ...empty?.style, ...styles?.root, ...style }}
|
|
{...restProps}
|
|
>
|
|
<div
|
|
className={classNames(
|
|
`${prefixCls}-image`,
|
|
empty?.classNames?.image,
|
|
emptyClassNames?.image,
|
|
)}
|
|
style={{ ...imageStyle, ...empty?.styles?.image, ...styles?.image }}
|
|
>
|
|
{imageNode}
|
|
</div>
|
|
{des && (
|
|
<div
|
|
className={classNames(
|
|
`${prefixCls}-description`,
|
|
empty?.classNames?.description,
|
|
emptyClassNames?.description,
|
|
)}
|
|
style={{ ...empty?.styles?.description, ...styles?.description }}
|
|
>
|
|
{des}
|
|
</div>
|
|
)}
|
|
{children && (
|
|
<div
|
|
className={classNames(
|
|
`${prefixCls}-footer`,
|
|
empty?.classNames?.footer,
|
|
emptyClassNames?.footer,
|
|
)}
|
|
style={{
|
|
...empty?.styles?.footer,
|
|
...styles?.footer,
|
|
}}
|
|
>
|
|
{children}
|
|
</div>
|
|
)}
|
|
</div>,
|
|
);
|
|
};
|
|
|
|
Empty.PRESENTED_IMAGE_DEFAULT = defaultEmptyImg;
|
|
Empty.PRESENTED_IMAGE_SIMPLE = simpleEmptyImg;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Empty.displayName = 'Empty';
|
|
}
|
|
|
|
export default Empty;
|