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.
38 lines
1.1 KiB
38 lines
1.1 KiB
import * as React from 'react';
|
|
import omit from 'rc-util/lib/omit';
|
|
import classNames from 'classnames';
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
import Element, { SkeletonElementProps } from './Element';
|
|
|
|
export interface AvatarProps extends Omit<SkeletonElementProps, 'shape'> {
|
|
shape?: 'circle' | 'square';
|
|
}
|
|
|
|
const SkeletonAvatar = (props: AvatarProps) => {
|
|
const renderSkeletonAvatar = ({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const { prefixCls: customizePrefixCls, className, active } = props;
|
|
const prefixCls = getPrefixCls('skeleton', customizePrefixCls);
|
|
const otherProps = omit(props, ['prefixCls', 'className']);
|
|
const cls = classNames(
|
|
prefixCls,
|
|
`${prefixCls}-element`,
|
|
{
|
|
[`${prefixCls}-active`]: active,
|
|
},
|
|
className,
|
|
);
|
|
return (
|
|
<div className={cls}>
|
|
<Element prefixCls={`${prefixCls}-avatar`} {...otherProps} />
|
|
</div>
|
|
);
|
|
};
|
|
return <ConfigConsumer>{renderSkeletonAvatar}</ConfigConsumer>;
|
|
};
|
|
|
|
SkeletonAvatar.defaultProps = {
|
|
size: 'default',
|
|
shape: 'circle',
|
|
};
|
|
|
|
export default SkeletonAvatar;
|
|
|