mirror of
https://github.com/yldio/copilot.git
synced 2024-11-28 14:10:04 +02:00
Avatar - Adding custom color and style to avatar component
This commit is contained in:
parent
8c147e4127
commit
80c596db66
@ -5,6 +5,7 @@ const React = require('react');
|
||||
const styles = require('./style.css');
|
||||
|
||||
const Avatar = ({
|
||||
color,
|
||||
image,
|
||||
name,
|
||||
className,
|
||||
@ -16,6 +17,11 @@ const Avatar = ({
|
||||
styles.avatar
|
||||
);
|
||||
|
||||
style = {
|
||||
...style,
|
||||
background: color
|
||||
}
|
||||
|
||||
const fill = () => {
|
||||
if ( image ) {
|
||||
return (
|
||||
@ -23,18 +29,24 @@ const Avatar = ({
|
||||
alt={name}
|
||||
className={styles.picture}
|
||||
src={image}
|
||||
style={style}
|
||||
/>
|
||||
);
|
||||
} else {
|
||||
const letter = name.split('')[0];
|
||||
return (
|
||||
<p className={styles.letter}>{letter}</p>
|
||||
<p
|
||||
className={styles.letter}
|
||||
style={style}
|
||||
>
|
||||
{letter}
|
||||
</p>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={cn}>
|
||||
<div className={cn} style={style}>
|
||||
{fill()}
|
||||
</div>
|
||||
);
|
||||
@ -42,6 +54,7 @@ const Avatar = ({
|
||||
|
||||
Avatar.propTypes = {
|
||||
className: React.PropTypes.string,
|
||||
color: React.PropTypes.string,
|
||||
image: React.PropTypes.string,
|
||||
name: React.PropTypes.string,
|
||||
style: React.PropTypes.object
|
||||
|
@ -16,10 +16,10 @@ nmodule.exports = ReactDOM.renderToString(
|
||||
<Base>
|
||||
<Row>
|
||||
<Column>
|
||||
<Avatar name='Alex' />
|
||||
<Avatar color='#35a8c0' name='Alex' />
|
||||
</Column>
|
||||
<Column>
|
||||
<Avatar name='Alex' image='https://openclipart.org/image/2400px/svg_to_png/177482/ProfilePlaceholderSuit.png' />
|
||||
<Avatar color='#ef6176' name='Alex' image='https://openclipart.org/image/2400px/svg_to_png/177482/ProfilePlaceholderSuit.png' />
|
||||
</Column>
|
||||
</Row>
|
||||
</Base>
|
||||
@ -34,8 +34,8 @@ const Avatar = require('ui/avatar');
|
||||
|
||||
module.exports = () => {
|
||||
return (
|
||||
<Avatar name='Alex' />
|
||||
<Avatar name='Alex' image='path/to/image.png' />
|
||||
<Avatar color='#35a8c0' name='Alex' />
|
||||
<Avatar color='#ef6176' name='Alex' image='path/to/image.png' />
|
||||
);
|
||||
}
|
||||
```
|
||||
|
@ -1,5 +1,4 @@
|
||||
.avatar {
|
||||
background: red;
|
||||
border-radius: 50%;
|
||||
height: remCalc(50);
|
||||
overflow: hidden;
|
||||
|
Loading…
Reference in New Issue
Block a user