2023-01-09 10:04:35 +08:00
|
|
|
import React, { useContext } from 'react';
|
2022-05-07 14:31:54 +08:00
|
|
|
import type { ConfigConsumerProps } from '.';
|
2023-06-07 11:54:50 +08:00
|
|
|
import { ConfigContext } from '.';
|
2022-06-22 14:57:09 +08:00
|
|
|
import Empty from '../empty';
|
2018-12-26 16:01:00 +08:00
|
|
|
|
2023-01-09 10:04:35 +08:00
|
|
|
interface EmptyProps {
|
|
|
|
componentName?: string;
|
|
|
|
}
|
2018-12-26 16:01:00 +08:00
|
|
|
|
2023-01-09 10:04:35 +08:00
|
|
|
const DefaultRenderEmpty: React.FC<EmptyProps> = (props) => {
|
|
|
|
const { componentName } = props;
|
|
|
|
const { getPrefixCls } = useContext<ConfigConsumerProps>(ConfigContext);
|
|
|
|
const prefix = getPrefixCls('empty');
|
|
|
|
switch (componentName) {
|
|
|
|
case 'Table':
|
|
|
|
case 'List':
|
|
|
|
return <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} />;
|
|
|
|
case 'Select':
|
|
|
|
case 'TreeSelect':
|
|
|
|
case 'Cascader':
|
|
|
|
case 'Transfer':
|
|
|
|
case 'Mentions':
|
|
|
|
return <Empty image={Empty.PRESENTED_IMAGE_SIMPLE} className={`${prefix}-small`} />;
|
2023-06-07 21:59:21 +08:00
|
|
|
/* istanbul ignore next */
|
2023-01-09 10:04:35 +08:00
|
|
|
default:
|
|
|
|
// Should never hit if we take all the component into consider.
|
|
|
|
return <Empty />;
|
|
|
|
}
|
|
|
|
};
|
2018-12-26 16:01:00 +08:00
|
|
|
|
2023-01-09 10:04:35 +08:00
|
|
|
export type RenderEmptyHandler = (componentName?: string) => React.ReactNode;
|
2022-05-16 16:34:42 +08:00
|
|
|
|
2023-01-09 10:04:35 +08:00
|
|
|
export default DefaultRenderEmpty;
|