webapp/src/components/Inbox/DialogAvatar.tsx
2024-03-05 16:07:14 +03:00

70 lines
1.6 KiB
TypeScript

import { clsx } from 'clsx'
import { Show, createMemo } from 'solid-js'
import { getImageUrl } from '../../utils/getImageUrl'
import './DialogCard.module.scss'
import styles from './DialogAvatar.module.scss'
type Props = {
name: string
url?: string
online?: boolean
size?: 'small'
bordered?: boolean
class?: string
}
const colors = [
'#001219',
'#005f73',
'#0a9396',
'#94d2bd',
'#ee9b00',
'#ca6702',
'#ae2012',
'#9b2226',
'#668cff',
'#c34cfe',
'#e699ff',
'#6633ff',
]
const getById = (letter: string) =>
colors[Math.abs(Number(BigInt(letter.toLowerCase().codePointAt(0) - 97) % BigInt(colors.length)))]
const DialogAvatar = (props: Props) => {
const nameFirstLetter = createMemo(() => props.name.slice(0, 1))
const randomBg = createMemo(() => {
return getById(nameFirstLetter())
})
return (
<div
class={clsx(styles.DialogAvatar, props.class, {
[styles.online]: props.online,
[styles.bordered]: props.bordered,
[styles.small]: props.size === 'small',
})}
style={{ 'background-color': `${randomBg()}` }}
>
<Show when={Boolean(props.url)} fallback={<div class={styles.letter}>{nameFirstLetter()}</div>}>
<div
class={styles.imageHolder}
style={{
'background-image': `url(
${
props.url.includes('discours.io')
? getImageUrl(props.url, { width: 40, height: 40 })
: props.url
}
)`,
}}
/>
</Show>
</div>
)
}
export default DialogAvatar