forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponent.tsx
More file actions
82 lines (76 loc) · 1.73 KB
/
Copy pathcomponent.tsx
File metadata and controls
82 lines (76 loc) · 1.73 KB
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
/**
* External dependencies
*/
import clsx from 'clsx';
/**
* Internal dependencies
*/
import Icon from '../icon';
import Tooltip from '../tooltip';
import type { AvatarProps } from './types';
import type { WordPressComponentProps } from '../context';
function Avatar( {
className,
src,
name,
label,
badge = false,
size = 'default',
borderColor,
status,
statusIndicator,
style,
...props
}: WordPressComponentProps< AvatarProps, 'div', false > ) {
const showBadge = badge && !! name;
const initials = name
? name
.split( /\s+/ )
.slice( 0, 2 )
.map( ( word ) => word[ 0 ] )
.join( '' )
.toUpperCase()
: undefined;
const customProperties = {
...style,
...( src ? { '--components-avatar-url': `url(${ src })` } : {} ),
...( borderColor
? { '--components-avatar-outline-color': borderColor }
: {} ),
} as React.CSSProperties;
const avatar = (
<div
className={ clsx( 'components-avatar', className, {
'has-avatar-border-color': !! borderColor,
'has-src': !! src,
'has-badge': showBadge,
'is-small': size === 'small',
'has-status': !! status,
[ `is-${ status }` ]: !! status,
} ) }
style={ customProperties }
role="img"
aria-label={ name }
{ ...props }
>
<span className="components-avatar__image">
{ ! src && initials }
{ !! status && !! statusIndicator && (
<span className="components-avatar__status-indicator">
<Icon icon={ statusIndicator } />
</span>
) }
</span>
{ showBadge && (
<span className="components-avatar__name">
{ label || name }
</span>
) }
</div>
);
if ( name && ( ! showBadge || label ) ) {
return <Tooltip text={ name }>{ avatar }</Tooltip>;
}
return avatar;
}
export default Avatar;