import React from 'react'; import ReactDOM from 'react-dom'; import Icon from '../icon'; import classNames from 'classnames'; export interface AvatarProps { /** Shape of avatar, options:`circle`, `square` */ shape?: 'circle' | 'square'; /** Size of avatar, options:`large`, `small`, `default` */ size?: 'large' | 'small' | 'default'; /** Src of image avatar */ src?: string; /** Type of the Icon to be used in avatar */ icon?: string; style?: React.CSSProperties; prefixCls?: string; className?: string; children?: any; } export default class Avatar extends React.Component { static defaultProps = { prefixCls: 'ant-avatar', shape: 'circle', size: 'default', }; private avatarChildren: any; constructor(props) { super(props); this.state = { scale: 1, }; } componentDidMount() { this.setScale(); } componentDidUpdate(prevProps, prevState) { if (prevProps.children !== this.props.children || (prevState.scale !== this.state.scale && this.state.scale === 1)) { this.setScale(); } } setScale = () => { const childrenNode = this.avatarChildren; if (childrenNode) { const childrenWidth = childrenNode.offsetWidth; const avatarWidth = ReactDOM.findDOMNode(this).getBoundingClientRect().width; // add 4px gap for each side to get better performance if (avatarWidth - 8 < childrenWidth) { this.setState({ scale: (avatarWidth - 8) / childrenWidth, }); } else { this.setState({ scale: 1, }); } } } render() { const { prefixCls, shape, size, src, icon, className, ...others, } = this.props; const sizeCls = classNames({ [`${prefixCls}-lg`]: size === 'large', [`${prefixCls}-sm`]: size === 'small', }); const classString = classNames(prefixCls, className, sizeCls, { [`${prefixCls}-${shape}`]: shape, [`${prefixCls}-image`]: src, [`${prefixCls}-icon`]: icon, }); let children = this.props.children; if (src) { children = ; } else if (icon) { children = ; } else { const childrenNode = this.avatarChildren; if (childrenNode || this.state.scale !== 1) { const childrenStyle: React.CSSProperties = { msTransform: `scale(${this.state.scale})`, WebkitTransform: `scale(${this.state.scale})`, transform: `scale(${this.state.scale})`, position: 'absolute', display: 'inline-block', left: `calc(50% - ${Math.round(childrenNode.offsetWidth / 2)}px)`, }; children = ( this.avatarChildren = span} style={childrenStyle} > {children} ); } else { children = ( this.avatarChildren = span} > {children} ); } } return ( {children} ); } }