elk/components/account/AccountAvatar.vue

27 lines
643 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
square?: boolean
}>()
const loaded = $ref(false)
const error = $ref(false)
</script>
<template>
2022-11-27 03:35:26 +01:00
<img
2022-11-27 14:12:25 +01:00
:key="account.avatar"
2022-12-30 23:41:07 +01:00
width="400"
height="400"
:src="error ? 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7' : account.avatar"
2022-12-02 03:18:36 +01:00
:alt="$t('account.avatar_description', [account.username])"
2022-11-27 03:35:26 +01:00
loading="lazy"
:class="(loaded ? 'bg-base' : 'bg-gray:10') + (square ? ' rounded-3' : ' rounded-full')"
2022-11-27 03:35:26 +01:00
v-bind="$attrs"
@load="loaded = true"
@error="error = true"
2022-11-27 03:35:26 +01:00
>
</template>