Pinafore-Web-Client-Frontend/routes/_components/Avatar.html

34 lines
656 B
HTML

{{#await imagePromise}}
{{then src}}
<img alt="Profile picture for @{{account.acct}}" src="{{account.avatar}}" />
{{catch error}}
<svg>
<use xlink:href="#fa-user" />
</svg>
{{/await}}
<style>
img, svg {
width: 48px;
height: 48px;
margin: 0 auto;
border-radius: 4px;
}
svg {
fill: var(--deemphasized-text-color);
}
</style>
<script>
export default {
computed: {
imageSrc: (account) => account.avatar,
imagePromise: (imageSrc) => new Promise((resolve, reject) => {
let img = new Image()
img.onload = resolve
img.onerror = reject
img.src = imageSrc
})
}
}
</script>