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.
40 lines
1.1 KiB
40 lines
1.1 KiB
import DotChartOutlined from '@ant-design/icons/DotChartOutlined';
|
|
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import useStyle from './style';
|
|
import { ConfigContext } from '../config-provider';
|
|
import type { SkeletonElementProps } from './Element';
|
|
|
|
export interface SkeletonNodeProps extends Omit<SkeletonElementProps, 'size' | 'shape'> {
|
|
fullSize?: boolean;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const SkeletonNode: React.FC<SkeletonNodeProps> = (props) => {
|
|
const { prefixCls: customizePrefixCls, className, style, active, children } = props;
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
|
|
const cls = classNames(
|
|
prefixCls,
|
|
`${prefixCls}-element`,
|
|
{
|
|
[`${prefixCls}-active`]: active,
|
|
},
|
|
hashId,
|
|
className,
|
|
);
|
|
|
|
const content = children ?? <DotChartOutlined />;
|
|
|
|
return wrapSSR(
|
|
<div className={cls}>
|
|
<div className={classNames(`${prefixCls}-image`, className)} style={style}>
|
|
{content}
|
|
</div>
|
|
</div>,
|
|
);
|
|
};
|
|
|
|
export default SkeletonNode;
|
|
|