elk/components/account/AccountInlineInfo.vue

23 lines
626 B
Vue
Raw Normal View History

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
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
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"
:class="link ? 'text-link-rounded ms-0 ps-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 />
<AccountDisplayName :account="account" 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>