elk/components/account/AccountAvatar.vue

30 lines
769 B
Vue
Raw Normal View History

<script setup lang="ts">
2023-01-08 07:21:09 +01:00
import type { mastodon } from 'masto'
defineProps<{
2023-01-08 07:21:09 +01:00
account: mastodon.v1.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"
select-none
:src="(error || !loaded) ? '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="account-avatar"
:class="(loaded ? 'bg-base' : 'bg-gray:10') + (square ? ' ' : ' rounded-full')"
:style="{ 'clip-path': square ? `url(#avatar-mask)` : 'none' }"
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>