pinafore/routes/_components/Avatar.html
2018-01-14 21:41:19 -08:00

36 lines
661 B
HTML

{{#await imagePromise}}
<svg>
<use xlink:href="#fa-user" />
</svg>
{{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: {
imagePromise: (account) => new Promise((resolve, reject) => {
let img = new Image()
img.onload = resolve
img.onerror = reject
img.src = account.avatar
})
}
}
</script>