ant-design/components/avatar/index.tsx

125 lines
3.2 KiB
TypeScript
Raw Normal View History

2017-05-28 14:20:59 +08:00
import React from 'react';
2017-06-07 11:18:31 +08:00
import ReactDOM from 'react-dom';
2017-05-28 14:20:59 +08:00
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;
}
2017-06-07 11:18:31 +08:00
export default class Avatar extends React.Component<AvatarProps, any> {
static defaultProps = {
prefixCls: 'ant-avatar',
shape: 'circle',
size: 'default',
};
2017-06-08 11:44:04 +08:00
private avatarChildren: any;
2017-05-28 14:20:59 +08:00
2017-06-07 11:18:31 +08:00
constructor(props) {
super(props);
this.state = {
scale: 1,
};
2017-05-28 14:20:59 +08:00
}
2017-06-07 11:18:31 +08:00
componentDidMount() {
2017-06-08 11:44:04 +08:00
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;
2017-06-07 11:18:31 +08:00
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,
});
2017-06-08 11:44:04 +08:00
} else {
this.setState({
scale: 1,
});
2017-06-07 11:18:31 +08:00
}
}
2017-05-28 14:20:59 +08:00
}
2017-06-07 11:18:31 +08:00
render() {
const {
prefixCls, shape, size, src, icon, className, ...others,
} = this.props;
2017-06-08 11:44:04 +08:00
const sizeCls = classNames({
[`${prefixCls}-lg`]: size === 'large',
[`${prefixCls}-sm`]: size === 'small',
});
2017-06-07 11:18:31 +08:00
2017-06-08 11:44:04 +08:00
const classString = classNames(prefixCls, className, sizeCls, {
2017-06-07 11:18:31 +08:00
[`${prefixCls}-${shape}`]: shape,
[`${prefixCls}-image`]: src,
[`${prefixCls}-icon`]: icon,
});
let children = this.props.children;
if (src) {
children = <img src={src} />;
} else if (icon) {
children = <Icon type={icon} />;
} else {
2017-06-08 11:44:04 +08:00
const childrenNode = this.avatarChildren;
if (childrenNode || this.state.scale !== 1) {
2017-06-07 11:18:31 +08:00
const childrenStyle: React.CSSProperties = {
2017-06-08 11:44:04 +08:00
msTransform: `scale(${this.state.scale})`,
WebkitTransform: `scale(${this.state.scale})`,
2017-06-07 11:18:31 +08:00
transform: `scale(${this.state.scale})`,
position: 'absolute',
display: 'inline-block',
2017-06-08 11:44:04 +08:00
left: `calc(50% - ${Math.round(childrenNode.offsetWidth / 2)}px)`,
2017-06-07 11:18:31 +08:00
};
2017-06-19 12:14:16 +08:00
children = (
<span
className={`${prefixCls}-string`}
ref={span => this.avatarChildren = span}
style={childrenStyle}
>
{children}
</span>
);
2017-06-07 11:18:31 +08:00
} else {
2017-06-19 12:14:16 +08:00
children = (
<span
className={`${prefixCls}-string`}
ref={span => this.avatarChildren = span}
>
{children}
</span>
);
2017-06-07 11:18:31 +08:00
}
}
return (
<span {...others} className={classString}>
{children}
</span>
);
}
}