material-ui
Version:
Material Design UI components built with React
98 lines (80 loc) • 2.8 kB
JavaScript
'use strict';
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
var React = require('react/addons');
var StylePropable = require('./mixins/style-propable');
var Colors = require('./styles/colors');
var Avatar = React.createClass({
displayName: 'Avatar',
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: function getDefaultProps() {
return {
backgroundColor: Colors.grey400,
color: Colors.white,
size: 40
};
},
render: function render() {
var _props = this.props;
var backgroundColor = _props.backgroundColor;
var color = _props.color;
var icon = _props.icon;
var size = _props.size;
var src = _props.src;
var style = _props.style;
var other = _objectWithoutProperties(_props, ['backgroundColor', 'color', 'icon', 'size', 'src', 'style']);
var styles = {
root: {
height: size,
width: size,
userSelect: 'none',
borderRadius: '50%',
display: 'inline-block'
}
};
if (src) {
var 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 React.createElement('img', _extends({}, 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
});
var styleIcon = {
margin: 8
};
var iconElement = icon ? React.cloneElement(icon, {
color: color,
style: this.mergeStyles(styleIcon, icon.props.style)
}) : null;
return React.createElement(
'div',
_extends({}, other, { style: this.mergeAndPrefix(styles.root, style) }),
iconElement,
this.props.children
);
}
}
});
module.exports = Avatar;