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