2022-11-24 14:20:50 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-24 14:20:50 +00:00
|
|
|
|
|
|
|
const { account, link = true } = defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
account: mastodon.v1.Account
|
2022-11-24 14:20:50 +00:00
|
|
|
link?: boolean
|
|
|
|
}>()
|
2023-02-05 13:00:25 +00:00
|
|
|
|
|
|
|
const userSettings = useUserSettings()
|
2022-11-24 14:20:50 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-27 04:30:21 +00:00
|
|
|
<NuxtLink
|
2022-11-30 17:15:18 +00:00
|
|
|
:to="link ? getAccountRoute(account) : undefined"
|
2022-11-27 04:30:21 +00:00
|
|
|
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
|
|
|
|
text-link-rounded
|
|
|
|
>
|
2023-02-05 13:00:25 +00:00
|
|
|
<AccountDisplayName :account="account" :hide-emojis="getPreferences(userSettings, 'hideUsernameEmojis')" font-bold line-clamp-1 ws-pre-wrap break-all />
|
2023-01-13 00:39:48 +00:00
|
|
|
<AccountHandle :account="account" class="zen-none" />
|
2022-11-27 04:30:21 +00:00
|
|
|
</NuxtLink>
|
2022-11-24 14:20:50 +00:00
|
|
|
</template>
|