44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
import classNames from 'classnames';
 | 
						|
import PropTypes from '../_util/vue-types';
 | 
						|
import { initDefaultProps } from '../_util/props-util';
 | 
						|
 | 
						|
const skeletonAvatarProps = {
 | 
						|
  prefixCls: PropTypes.string,
 | 
						|
  size: PropTypes.oneOfType([PropTypes.oneOf(['large', 'small', 'default']), PropTypes.number]),
 | 
						|
  shape: PropTypes.oneOf(['circle', 'square']),
 | 
						|
};
 | 
						|
 | 
						|
export const SkeletonAvatarProps = PropTypes.shape(skeletonAvatarProps).loose;
 | 
						|
 | 
						|
const Avatar = {
 | 
						|
  props: initDefaultProps(skeletonAvatarProps, {
 | 
						|
    size: 'large',
 | 
						|
  }),
 | 
						|
  render() {
 | 
						|
    const { prefixCls, size, shape } = this.$props;
 | 
						|
 | 
						|
    const sizeCls = classNames({
 | 
						|
      [`${prefixCls}-lg`]: size === 'large',
 | 
						|
      [`${prefixCls}-sm`]: size === 'small',
 | 
						|
    });
 | 
						|
 | 
						|
    const shapeCls = classNames({
 | 
						|
      [`${prefixCls}-circle`]: shape === 'circle',
 | 
						|
      [`${prefixCls}-square`]: shape === 'square',
 | 
						|
    });
 | 
						|
 | 
						|
    const sizeStyle =
 | 
						|
      typeof size === 'number'
 | 
						|
        ? {
 | 
						|
            width: `${size}px`,
 | 
						|
            height: `${size}px`,
 | 
						|
            lineHeight: `${size}px`,
 | 
						|
          }
 | 
						|
        : {};
 | 
						|
 | 
						|
    return <span class={classNames(prefixCls, sizeCls, shapeCls)} style={sizeStyle} />;
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
export default Avatar;
 |