feat: show hover card in more places

This commit is contained in:
三咲智子 2022-11-25 18:54:49 +08:00
parent 569ae00284
commit bb05003fa3
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
7 changed files with 32 additions and 19 deletions

View file

@ -3,9 +3,25 @@ import type { Account } from 'masto'
defineProps<{
account: Account
hover?: boolean
}>()
defineOptions({
inheritAttrs: false,
})
</script>
<template>
<img :src="account.avatar" :alt="account.username" loading="lazy" rounded-full bg-gray:10>
<div relative flex-shrink-0>
<div group>
<AccountHoverCard v-if="hover" top="-3.2" left="-4.4" absolute :account="account" op0 pointer-events-none group-hover="pointer-events-auto op100 scale-100" delay-250 transition transform scale-20 class="ease-[cubic-bezier(0.4, 0.0, 0.2, 1)]" />
<img
:src="account.avatar"
:alt="account.username"
loading="lazy"
rounded-full bg-gray:10
v-bind="$attrs"
>
</div>
</div>
</template>

View file

@ -10,7 +10,7 @@ cacheAccount(account)
<template>
<div flex justify-between hover:bg-active transition-100>
<AccountInfo :account="account" p1 />
<AccountInfo :account="account" hover p1 />
<div h-full p1>
<AccountFollowButton :account="account" />
</div>

View file

@ -5,6 +5,7 @@ const { account, link = true, fullServer = false } = defineProps<{
account: Account
link?: boolean
fullServer?: boolean
hover?: boolean
}>()
const accountHandle = $(useAccountHandle(account, fullServer))
@ -14,7 +15,7 @@ const accountHandle = $(useAccountHandle(account, fullServer))
<div flex gap-3>
<div>
<NuxtLink :to="link ? getAccountPath(account) : null">
<AccountAvatar :account="account" w-12 h-12 />
<AccountAvatar :account="account" :hover="hover" w-12 h-12 />
</NuxtLink>
</div>
<NuxtLink flex flex-col :to="link ? getAccountPath(account) : null">

View file

@ -9,7 +9,7 @@ const { link = true } = defineProps<{
<template>
<NuxtLink :to="link ? getAccountPath(account) : undefined" min-w-0 flex gap-1 items-center>
<AccountAvatar :account="account" w-5 h-5 />
<AccountAvatar :account="account" w-5 h-5 hover />
<ContentRichSetup :content="getDisplayName(account)" :emojis="account.emojis" />
</NuxtLink>
</template>