2022-11-18 09:37:22 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-18 09:37:22 +00:00
|
|
|
|
2022-12-06 11:07:17 +00:00
|
|
|
const { link = true, avatar = true } = defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
account: mastodon.v1.Account
|
2022-11-24 08:57:24 +00:00
|
|
|
link?: boolean
|
2022-12-06 11:07:17 +00:00
|
|
|
avatar?: boolean
|
2022-11-18 09:37:22 +00:00
|
|
|
}>()
|
2023-02-05 13:00:25 +00:00
|
|
|
|
|
|
|
const userSettings = useUserSettings()
|
2022-11-18 09:37:22 +00:00
|
|
|
</script>
|
|
|
|
|
2023-03-19 22:36:09 +00:00
|
|
|
<script lang="ts">
|
|
|
|
export default {
|
|
|
|
inheritAttrs: false,
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-11-18 09:37:22 +00:00
|
|
|
<template>
|
2022-11-27 04:30:21 +00:00
|
|
|
<AccountHoverWrapper :account="account">
|
|
|
|
<NuxtLink
|
2022-11-30 17:15:18 +00:00
|
|
|
:to="link ? getAccountRoute(account) : undefined"
|
2023-03-19 22:36:09 +00:00
|
|
|
:class="link ? 'text-link-rounded -ml-1.5rem pl-1.5rem rtl-(ml0 pl-0.5rem -mr-1.5rem pr-1.5rem)' : ''"
|
|
|
|
v-bind="$attrs"
|
2022-12-11 22:40:40 +00:00
|
|
|
min-w-0 flex gap-2 items-center
|
2022-11-27 04:30:21 +00:00
|
|
|
>
|
2022-12-06 11:07:17 +00:00
|
|
|
<AccountAvatar v-if="avatar" :account="account" w-5 h-5 />
|
2023-02-05 13:00:25 +00:00
|
|
|
<AccountDisplayName :account="account" :hide-emojis="getPreferences(userSettings, 'hideUsernameEmojis')" line-clamp-1 ws-pre-wrap break-all />
|
2022-11-27 04:30:21 +00:00
|
|
|
</NuxtLink>
|
|
|
|
</AccountHoverWrapper>
|
2022-11-18 09:37:22 +00:00
|
|
|
</template>
|