2022-11-10 15:06:02 +00:00
|
|
|
import { Show, createMemo } from 'solid-js'
|
|
|
|
import './DialogCard.module.scss'
|
|
|
|
import styles from './DialogAvatar.module.scss'
|
|
|
|
import { clsx } from 'clsx'
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
url: string
|
|
|
|
name: string
|
|
|
|
online?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
const colors = [
|
|
|
|
'#001219',
|
|
|
|
'#005f73',
|
|
|
|
'#0a9396',
|
|
|
|
'#94d2bd',
|
|
|
|
'#ee9b00',
|
|
|
|
'#ca6702',
|
|
|
|
'#ae2012',
|
|
|
|
'#9b2226',
|
2022-11-15 09:45:55 +00:00
|
|
|
'#668cff',
|
|
|
|
'#c34cfe',
|
|
|
|
'#e699ff',
|
|
|
|
'#6633ff'
|
2022-11-10 15:06:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
const getById = (letter: string) =>
|
|
|
|
colors[Math.abs(Number(BigInt(letter.toLowerCase().charCodeAt(0) - 97) % BigInt(colors.length)))]
|
|
|
|
|
|
|
|
const DialogAvatar = (props: Props) => {
|
|
|
|
const nameFirstLetter = props.name.substring(0, 1)
|
|
|
|
const randomBg = createMemo(() => {
|
|
|
|
return getById(nameFirstLetter)
|
|
|
|
})
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
class={clsx(styles.DialogAvatar, props.online && styles.online)}
|
|
|
|
style={{ 'background-color': `${randomBg()}` }}
|
|
|
|
>
|
|
|
|
<Show when={props.url} fallback={() => <div class={styles.letter}>{nameFirstLetter}</div>}>
|
|
|
|
<img src={props.url} alt={props.name} />
|
|
|
|
</Show>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default DialogAvatar
|