forked from Mirrors/elk
ui: hover card ui
This commit is contained in:
parent
3b92b27cc8
commit
0843878a42
5 changed files with 29 additions and 38 deletions
|
@ -22,7 +22,7 @@ async function toggleFollow() {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<button
|
<button
|
||||||
v-if="!isSelf && relationship"
|
v-if="!isSelf"
|
||||||
flex gap-1 items-center h-fit rounded hover="op100 text-white b-orange" group
|
flex gap-1 items-center h-fit rounded hover="op100 text-white b-orange" group
|
||||||
@click="toggleFollow"
|
@click="toggleFollow"
|
||||||
>
|
>
|
||||||
|
|
|
@ -115,17 +115,7 @@ watchEffect(() => {
|
||||||
<ContentRich text-sm filter-saturate-0 :content="field.value" />
|
<ContentRich text-sm filter-saturate-0 :content="field.value" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div flex gap-5>
|
<AccountPostsFollowers :account="account" />
|
||||||
<NuxtLink :to="getAccountPath(account)" exact-active-class="text-primary">
|
|
||||||
<span font-bold>{{ formattedNumber(account.statusesCount) }}</span> <span text-secondary>Posts</span>
|
|
||||||
</NuxtLink>
|
|
||||||
<NuxtLink :to="`${getAccountPath(account)}/following`" exact-active-class="text-primary">
|
|
||||||
<span font-bold>{{ humanReadableNumber(account.followingCount) }}</span> <span text-secondary>Following</span>
|
|
||||||
</NuxtLink>
|
|
||||||
<NuxtLink :to="`${getAccountPath(account)}/followers`" exact-active-class="text-primary">
|
|
||||||
<span font-bold>{{ humanReadableNumber(account.followersCount) }}</span> <span text-secondary>Followers</span>
|
|
||||||
</NuxtLink>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -7,21 +7,14 @@ defineProps<{
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div rounded w-80 z-900 overflow-hidden p-4>
|
<div flex="~ col gap2" rounded w-100 z-900 overflow-hidden p-4>
|
||||||
|
<div flex="~ gap2" items-center>
|
||||||
|
<NuxtLink :to="getAccountPath(account)" flex-auto rounded-full hover:bg-active transition-100 pr5 mr-a>
|
||||||
<AccountInfo :account="account" />
|
<AccountInfo :account="account" />
|
||||||
<div text-sm flex flex-row text-secondary mt-4>
|
|
||||||
<NuxtLink :to="`/${getFullHandle(account)}/`">
|
|
||||||
{{ formattedNumber(account.statusesCount) }} Posts
|
|
||||||
</NuxtLink>
|
|
||||||
<span flex-1 text-center> • </span>
|
|
||||||
<NuxtLink :to="`/${getFullHandle(account)}/following`">
|
|
||||||
{{ humanReadableNumber(account.followingCount) }} Following
|
|
||||||
</NuxtLink>
|
|
||||||
<span flex-1 text-center> • </span>
|
|
||||||
<NuxtLink :to="`/${getFullHandle(account)}/followers`">
|
|
||||||
{{ humanReadableNumber(account.followersCount) }} Followers
|
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
|
<AccountFollowButton text-sm :account="account" />
|
||||||
</div>
|
</div>
|
||||||
<ContentRich text-4 text-secondary :content="account.note" :emojis="account.emojis" />
|
<ContentRich text-4 text-secondary :content="account.note" :emojis="account.emojis" />
|
||||||
|
<AccountPostsFollowers text-sm :account="account" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
<script setup lang="ts">
|
|
||||||
import type { Account } from 'masto'
|
|
||||||
|
|
||||||
defineProps<{
|
|
||||||
account: Account
|
|
||||||
}>()
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<NuxtLink :to="getAccountPath(account)">
|
|
||||||
<ContentRich font-bold :content="getDisplayName(account, { rich: true })" :emojis="account.emojis" />
|
|
||||||
</NuxtLink>
|
|
||||||
</template>
|
|
21
components/account/AccountPostsFollowers.vue
Normal file
21
components/account/AccountPostsFollowers.vue
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import type { Account } from 'masto'
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
account: Account
|
||||||
|
}>()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div flex gap-5>
|
||||||
|
<NuxtLink :to="getAccountPath(account)" exact-active-class="text-primary">
|
||||||
|
<span font-bold>{{ formattedNumber(account.statusesCount) }}</span> <span text-secondary>Posts</span>
|
||||||
|
</NuxtLink>
|
||||||
|
<NuxtLink :to="`${getAccountPath(account)}/following`" exact-active-class="text-primary">
|
||||||
|
<span font-bold>{{ humanReadableNumber(account.followingCount) }}</span> <span text-secondary>Following</span>
|
||||||
|
</NuxtLink>
|
||||||
|
<NuxtLink :to="`${getAccountPath(account)}/followers`" exact-active-class="text-primary">
|
||||||
|
<span font-bold>{{ humanReadableNumber(account.followersCount) }}</span> <span text-secondary>Followers</span>
|
||||||
|
</NuxtLink>
|
||||||
|
</div>
|
||||||
|
</template>
|
Loading…
Reference in a new issue