forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavatar.jsx
89 lines (75 loc) · 1.93 KB
/
avatar.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
let React = require('react/addons');
let StylePropable = require('./mixins/style-propable');
let Colors = require('./styles/colors');
let Avatar = React.createClass({
mixins: [StylePropable],
contextTypes: {
muiTheme: React.PropTypes.object,
},
propTypes: {
backgroundColor: React.PropTypes.string,
color: React.PropTypes.string,
icon: React.PropTypes.element,
size: React.PropTypes.number,
src: React.PropTypes.string,
style: React.PropTypes.object,
},
getDefaultProps() {
return {
backgroundColor: Colors.grey400,
color: Colors.white,
size: 40,
};
},
render() {
let {
backgroundColor,
color,
icon,
size,
src,
style,
...other,
} = this.props;
let styles = {
root: {
height: size,
width: size,
userSelect: 'none',
borderRadius: '50%',
display: 'inline-block',
},
};
if (src) {
const borderColor = this.context.muiTheme.component.avatar.borderColor;
if(borderColor) {
styles.root = this.mergeStyles(styles.root, {
height: size - 2,
width: size - 2,
border: 'solid 1px ' + borderColor,
});
}
return <img {...other} src={src} style={this.mergeAndPrefix(styles.root, style)} />;
} else {
styles.root = this.mergeStyles(styles.root, {
backgroundColor: backgroundColor,
textAlign: 'center',
lineHeight: size + 'px',
fontSize: size / 2 + 4,
color: color,
});
const styleIcon = {
margin: 8,
};
const iconElement = icon ? React.cloneElement(icon, {
color: color,
style: this.mergeStyles(styleIcon, icon.props.style),
}) : null;
return <div {...other} style={this.mergeAndPrefix(styles.root, style)}>
{iconElement}
{this.props.children}
</div>;
}
},
});
module.exports = Avatar;