blob: ecce4e9f2c73cb573ac57844a9da2553cd1d5a28 (
plain) (
blame)
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
|
import React, { memo } from 'react';
import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
import { UserType } from './Types';
import Icon from './Icon';
import './Avatar.css';
function Avatar({ user, style, link, children}) {
return (
<div className="Avatar" style={style}>
<div className="msg-avatar">
{
user.uname ?
<Link to={{ pathname: link || `/${user.uname}/` }}>
{user.avatar ?
<img src={user.avatar} alt={`${user.uname}`} />
: <Icon name="ei-spinner" size="m" />}
</Link>
: <Icon name="ei-spinner" size="m" />
}
</div>
<div style={{ display: 'flex', flexDirection: 'column', justifyContent: 'center' }}>
<span>
<Link to={{ pathname: link || `/${user.uname}/` }}>
<span>{user.uname}</span>
</Link>
</span>
{children}
</div>
</div>
);
}
export default memo(Avatar);
Avatar.propTypes = {
user: UserType,
link: PropTypes.string,
style: PropTypes.object,
children: PropTypes.node
};
|