2022-11-18 10:37:22 +01:00
|
|
|
<script setup lang="ts">
|
2023-01-08 07:21:09 +01:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-18 10:37:22 +01:00
|
|
|
|
2022-12-06 12:07:17 +01:00
|
|
|
const { link = true, avatar = true } = defineProps<{
|
2023-01-08 07:21:09 +01:00
|
|
|
account: mastodon.v1.Account
|
2022-11-24 09:57:24 +01:00
|
|
|
link?: boolean
|
2022-12-06 12:07:17 +01:00
|
|
|
avatar?: boolean
|
2022-11-18 10:37:22 +01:00
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-27 05:30:21 +01:00
|
|
|
<AccountHoverWrapper :account="account">
|
|
|
|
<NuxtLink
|
2022-11-30 18:15:18 +01:00
|
|
|
:to="link ? getAccountRoute(account) : undefined"
|
2023-01-01 15:29:11 +01:00
|
|
|
:class="link ? 'text-link-rounded ms-0 ps-0' : ''"
|
2022-12-11 23:40:40 +01:00
|
|
|
min-w-0 flex gap-2 items-center
|
2022-11-27 05:30:21 +01:00
|
|
|
>
|
2022-12-06 12:07:17 +01:00
|
|
|
<AccountAvatar v-if="avatar" :account="account" w-5 h-5 />
|
2023-01-06 20:12:00 +01:00
|
|
|
<AccountDisplayName :account="account" line-clamp-1 ws-pre-wrap break-all />
|
2022-11-27 05:30:21 +01:00
|
|
|
</NuxtLink>
|
|
|
|
</AccountHoverWrapper>
|
2022-11-18 10:37:22 +01:00
|
|
|
</template>
|