mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
2e0942ab26
* refactor: cssVarCls * refactor: update * chore: update * fix: cascader & tree-select * fix: ribbon
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import DotChartOutlined from '@ant-design/icons/DotChartOutlined';
|
|
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import { ConfigContext } from '../config-provider';
|
|
import type { SkeletonElementProps } from './Element';
|
|
import useStyle from './style';
|
|
|
|
export interface SkeletonNodeProps extends Omit<SkeletonElementProps, 'size' | 'shape'> {
|
|
fullSize?: boolean;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const SkeletonNode: React.FC<SkeletonNodeProps> = (props) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
rootClassName,
|
|
style,
|
|
active,
|
|
children,
|
|
} = props;
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
|
|
|
|
const cls = classNames(
|
|
prefixCls,
|
|
`${prefixCls}-element`,
|
|
{
|
|
[`${prefixCls}-active`]: active,
|
|
},
|
|
hashId,
|
|
className,
|
|
rootClassName,
|
|
cssVarCls,
|
|
);
|
|
|
|
const content = children ?? <DotChartOutlined />;
|
|
|
|
return wrapCSSVar(
|
|
<div className={cls}>
|
|
<div className={classNames(`${prefixCls}-image`, className)} style={style}>
|
|
{content}
|
|
</div>
|
|
</div>,
|
|
);
|
|
};
|
|
|
|
export default SkeletonNode;
|