2022-11-13 05:34:43 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-14 02:20:07 +00:00
|
|
|
import type { Account } from 'masto'
|
2022-11-13 05:34:43 +00:00
|
|
|
|
2022-11-23 03:48:01 +00:00
|
|
|
const { account, link = true, fullServer = false } = defineProps<{
|
2022-11-13 05:34:43 +00:00
|
|
|
account: Account
|
2022-11-21 10:16:04 +00:00
|
|
|
link?: boolean
|
2022-11-23 03:48:01 +00:00
|
|
|
fullServer?: boolean
|
2022-11-25 10:54:49 +00:00
|
|
|
hover?: boolean
|
2022-11-13 05:34:43 +00:00
|
|
|
}>()
|
2022-11-23 03:48:01 +00:00
|
|
|
|
2022-11-24 14:20:50 +00:00
|
|
|
const accountHandle = $(useAccountHandle(account, fullServer))
|
2022-11-13 05:34:43 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-23 07:46:34 +00:00
|
|
|
<div flex gap-3>
|
|
|
|
<div>
|
2022-11-23 22:40:35 +00:00
|
|
|
<NuxtLink :to="link ? getAccountPath(account) : null">
|
2022-11-25 10:54:49 +00:00
|
|
|
<AccountAvatar :account="account" :hover="hover" w-12 h-12 />
|
2022-11-14 02:20:07 +00:00
|
|
|
</NuxtLink>
|
2022-11-13 05:34:43 +00:00
|
|
|
</div>
|
2022-11-23 22:40:35 +00:00
|
|
|
<NuxtLink flex flex-col :to="link ? getAccountPath(account) : null">
|
2022-11-25 07:12:49 +00:00
|
|
|
<ContentRichSetup font-bold :content="getDisplayName(account)" :emojis="account.emojis" />
|
2022-11-21 06:55:31 +00:00
|
|
|
<p op35 text-sm>
|
2022-11-24 14:20:50 +00:00
|
|
|
{{ accountHandle }}
|
2022-11-13 05:34:43 +00:00
|
|
|
</p>
|
2022-11-23 00:00:52 +00:00
|
|
|
<slot name="bottom" />
|
2022-11-14 02:20:07 +00:00
|
|
|
</NuxtLink>
|
2022-11-14 02:56:48 +00:00
|
|
|
<slot />
|
2022-11-13 05:34:43 +00:00
|
|
|
</div>
|
|
|
|
</template>
|