This repository was archived by the owner on Aug 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.tsx
More file actions
170 lines (153 loc) Β· 4.66 KB
/
Copy pathindex.tsx
File metadata and controls
170 lines (153 loc) Β· 4.66 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
CPAL-1.0 License
The contents of this file are subject to the Common Public Attribution License
Version 1.0. (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://github.com/EtherealEngine/etherealengine/blob/dev/LICENSE.
The License is based on the Mozilla Public License Version 1.1, but Sections 14
and 15 have been added to cover use of software over a computer network and
provide for limited attribution for the Original Developer. In addition,
Exhibit A has been modified to be consistent with Exhibit B.
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
The Original Code is Ethereal Engine.
The Original Developer is the Initial Developer. The Initial Developer of the
Original Code is the Ethereal Engine team.
All portions of the code written by the Ethereal Engine team are Copyright Β© 2021-2023
Ethereal Engine. All Rights Reserved.
*/
import React from 'react'
import { useTranslation } from 'react-i18next'
import commonStyles from '@etherealengine/client-core/src/common/components/common.module.scss'
import Text from '@etherealengine/client-core/src/common/components/Text'
import Box from '@etherealengine/ui/src/primitives/mui/Box'
import Icon from '@etherealengine/ui/src/primitives/mui/Icon'
import IconButton from '@etherealengine/ui/src/primitives/mui/IconButton'
import Paper from '@etherealengine/ui/src/primitives/mui/Paper'
import { SxProps, Theme } from '@mui/material/styles'
import { handleSoundEffect } from '../../utils'
import styles from './index.module.scss'
interface Props {
alt?: string
className?: string
id?: string
imageSrc?: string
isSelected?: boolean
name?: string
showChangeButton?: boolean
size?: number
sx?: SxProps<Theme>
type?: 'round' | 'rectangle' | 'thumbnail'
onChange?: () => void
onClick?: () => void
}
const Avatar = ({
alt,
className,
id,
imageSrc,
isSelected,
name,
showChangeButton,
size,
sx,
type,
onChange,
onClick
}: Props) => {
const { t } = useTranslation()
if (!size) {
size = 80
}
const handleChange = (e) => {
e.stopPropagation()
onChange && onChange()
}
if (type === 'rectangle') {
return (
<Paper
title={name}
className={`${styles.avatarRectangle} ${isSelected ? styles.avatarSelected : ''}`}
onClick={onClick}
onPointerUp={handleSoundEffect}
onPointerEnter={handleSoundEffect}
>
<img className={styles.avatar} src={imageSrc} alt={alt} crossOrigin="anonymous" />
<Text variant="body2" flex={1} className={styles.avatarName}>
{name}
</Text>
{showChangeButton && (
<IconButton
icon={<Icon type="Create" sx={{ fontSize: '20px' }} />}
title={t('user:common.edit')}
onClick={handleChange}
/>
)}
</Paper>
)
} else if (type === 'thumbnail') {
return (
<Box
className={`${commonStyles.preview} ${styles.avatarThumbnail} ${className}`}
sx={{ width: `${size}px`, height: `${size}px`, ...sx }}
>
<img
style={{
height: 'auto',
maxWidth: '100%'
}}
alt={alt}
src={imageSrc}
crossOrigin="anonymous"
width={`${size}px`}
height={`${size}px`}
/>
{!imageSrc && (
<Text className={commonStyles.previewText} variant="body2">
{t('admin:components.avatar.thumbnailPreview')}
</Text>
)}
</Box>
)
}
return (
<Box
className={`${styles.avatarRound} ${className}`}
id={id}
sx={{ width: `${size}px`, height: `${size}px`, ...sx }}
>
<img
style={{
height: '100%',
maxWidth: '100%'
}}
alt={alt}
src={imageSrc}
crossOrigin="anonymous"
/>
{showChangeButton && (
<IconButton
disableRipple
icon={<Icon type="Create" sx={{ fontSize: '20px' }} />}
type="glow"
onClick={onChange}
sx={{
position: 'absolute',
width: '30px',
height: '30px',
bottom: '-10px',
right: '-10px',
margin: '0',
minWidth: '30px',
borderRadius: '50%',
background: 'var(--iconButtonBackground)',
boxShadow: '2px 2px 10px gray',
transition: 'all .15s cubic-bezier(.18,.89,.32,1.28)'
}}
/>
)}
</Box>
)
}
export default Avatar