feat: show hover card in more places
parent
569ae00284
commit
bb05003fa3
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -11,14 +11,16 @@ const { notification } = defineProps<{
|
|||
<template v-if="notification.type === 'follow'">
|
||||
<div flex ml-4 items-center>
|
||||
<div i-ri:user-follow-fill mr-3 color-primary />
|
||||
<AccountLink :account="notification.account" mr1 /> followed you
|
||||
<AccountInlineInfo :account="notification.account" mr1 />
|
||||
followed you
|
||||
</div>
|
||||
<AccountCard :account="notification.account" p3 />
|
||||
</template>
|
||||
<template v-if="notification.type === 'follow_request'">
|
||||
<div flex ml-4 items-center>
|
||||
<div i-ri:user-follow-fill mr-3 />
|
||||
<AccountLink :account="notification.account" mr1 /> requested to follow you
|
||||
<AccountInlineInfo :account="notification.account" mr1 />
|
||||
requested to follow you
|
||||
</div>
|
||||
<!-- TODO: accept request -->
|
||||
<AccountCard :account="notification.account" p3 />
|
||||
|
@ -26,14 +28,16 @@ const { notification } = defineProps<{
|
|||
<template v-if="notification.type === 'favourite'">
|
||||
<div flex ml-4 items-center>
|
||||
<div i-ri:heart-fill mr-3 color-red />
|
||||
<AccountLink :account="notification.account" mr1 /> favourited your post
|
||||
<AccountInlineInfo :account="notification.account" mr1 />
|
||||
favourited your post
|
||||
</div>
|
||||
<StatusCard :status="notification.status!" p3 />
|
||||
</template>
|
||||
<template v-if="notification.type === 'reblog'">
|
||||
<div flex ml-4 items-center>
|
||||
<div i-ri:repeat-fill mr-3 color-green />
|
||||
<AccountLink :account="notification.account" mr1 /> reblogged your post
|
||||
<AccountInlineInfo :account="notification.account" mr1 />
|
||||
reblogged your post
|
||||
</div>
|
||||
<StatusCard :status="notification.status!" p3 />
|
||||
</template>
|
||||
|
|
|
@ -12,7 +12,7 @@ const accountHandle = $(useAccountHandle(account))
|
|||
<template>
|
||||
<NuxtLink
|
||||
:to="link ? getAccountPath(account) : undefined"
|
||||
flex="col 1" min-w-0 md:flex="~ gap-2" md:items-center
|
||||
flex="~ col" min-w-0 md:flex="~ row gap-2" md:items-center
|
||||
>
|
||||
<ContentRichSetup font-bold break-words :content="getDisplayName(account)" :emojis="account.emojis" />
|
||||
<p op35 text-sm>
|
||||
|
|
|
@ -7,10 +7,7 @@ const props = withDefaults(
|
|||
actions?: boolean
|
||||
hover?: boolean
|
||||
}>(),
|
||||
{
|
||||
actions: true,
|
||||
hover: true,
|
||||
},
|
||||
{ actions: true },
|
||||
)
|
||||
|
||||
const status = $computed(() => {
|
||||
|
@ -80,12 +77,7 @@ const timeago = useTimeAgo(() => status.createdAt, {
|
|||
</div>
|
||||
</div>
|
||||
<div flex gap-4>
|
||||
<div relative flex-shrink-0>
|
||||
<div group>
|
||||
<AccountHoverCard top="-3.2" left="-4.4" absolute :account="status.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)]" />
|
||||
<AccountAvatar mt1 w-12 h-12 :account="status.account" />
|
||||
</div>
|
||||
</div>
|
||||
<AccountAvatar mt1 w-12 h-12 :account="status.account" hover />
|
||||
<div flex="~ col 1" min-w-0>
|
||||
<div flex>
|
||||
<StatusAccountDetails :account="status.account" />
|
||||
|
|
Loading…
Reference in New Issue