summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/avatar.tsx
blob: 1ff3008eeb2de88585211a64146df8dffcf815fa (plain)
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
import { type ComponentProps, splitProps, Show } from "solid-js"

export interface AvatarProps extends ComponentProps<"div"> {
  fallback: string
  src?: string
  background?: string
  size?: "small" | "normal" | "large"
}

export function Avatar(props: AvatarProps) {
  const [split, rest] = splitProps(props, ["fallback", "src", "background", "size", "class", "classList", "style"])
  return (
    <div
      {...rest}
      data-component="avatar"
      data-size={split.size || "normal"}
      data-has-image={split.src ? "" : undefined}
      classList={{
        ...(split.classList ?? {}),
        [split.class ?? ""]: !!split.class,
      }}
      style={{
        ...(typeof split.style === "object" ? split.style : {}),
        ...(!split.src && split.background ? { "--avatar-bg": split.background } : {}),
      }}
    >
      <Show when={split.src} fallback={split.fallback?.[0]}>
        {(src) => <img src={src()} draggable={false} class="size-full object-cover" />}
      </Show>
    </div>
  )
}