Tweak avatar again

This commit is contained in:
Jon Staab
2025-01-15 11:42:54 -08:00
parent 4886650dfa
commit 8d4e657af5

View File

@@ -1,18 +1,32 @@
<script lang="ts">
import {onMount} from "svelte"
import Icon from "@lib/components/Icon.svelte"
export let src = ""
export let size = 7
export let icon = "user-rounded"
let element: HTMLElement
$: rem = size * 4
onMount(() => {
if (src) {
const image = new Image()
image.addEventListener("error", () => {
element.querySelector(".hidden")?.classList.remove("hidden")
})
image.src = src
}
})
</script>
<div
class="{$$props.class} relative !flex shrink-0 items-center justify-center overflow-hidden rounded-full"
style="width: {rem}px; height: {rem}px; min-width: {rem}px; {$$props.style || ''}">
<Icon {icon} size={Math.round(size * 0.8)} />
<div
class="absolute left-0 top-0 h-full w-full bg-cover bg-center"
style="background-image: url({src})" />
bind:this={element}
class="{$$props.class} relative !flex shrink-0 items-center justify-center overflow-hidden rounded-full bg-cover bg-center"
style="width: {rem}px; height: {rem}px; min-width: {rem}px; background-image: url({src}); {$$props.style ||
''}">
<Icon {icon} class={src ? "hidden" : ""} size={Math.round(size * 0.8)} />
</div>