elk/components/account/AccountInlineInfo.vue

27 lines
693 B
Vue
Raw Normal View History

2022-11-18 09:37:22 +00:00
<script setup lang="ts">
import type { Account } from 'masto'
const { link = true, avatar = true } = defineProps<{
2022-11-18 09:37:22 +00:00
account: Account
2022-11-24 08:57:24 +00:00
link?: boolean
avatar?: boolean
2022-11-18 09:37:22 +00:00
}>()
</script>
<template>
2022-11-27 04:30:21 +00:00
<AccountHoverWrapper :account="account">
<NuxtLink
:to="link ? getAccountRoute(account) : undefined"
2022-11-28 20:42:17 +00:00
:class="link ? 'text-link-rounded ml-0 pl-0' : ''"
2022-12-11 22:40:40 +00:00
min-w-0 flex gap-2 items-center
2022-11-27 04:30:21 +00:00
>
<AccountAvatar v-if="avatar" :account="account" w-5 h-5 />
<ContentRich
line-clamp-1 ws-pre-wrap break-all
:content="getDisplayName(account, { rich: true })"
:emojis="account.emojis"
/>
2022-11-27 04:30:21 +00:00
</NuxtLink>
</AccountHoverWrapper>
2022-11-18 09:37:22 +00:00
</template>