2022-11-28 09:51:15 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-28 09:51:15 +00:00
|
|
|
|
2023-01-09 11:24:26 +00:00
|
|
|
defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
account: mastodon.v1.Account
|
2023-04-16 20:47:20 +01:00
|
|
|
isHoverCard?: boolean
|
2022-11-28 09:51:15 +00:00
|
|
|
}>()
|
2023-01-12 17:52:52 +00:00
|
|
|
|
|
|
|
const userSettings = useUserSettings()
|
2022-11-28 09:51:15 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div flex gap-5>
|
2022-12-14 15:56:48 +00:00
|
|
|
<NuxtLink
|
|
|
|
:to="getAccountRoute(account)"
|
2023-01-09 08:48:39 +00:00
|
|
|
replace
|
2022-12-14 15:56:48 +00:00
|
|
|
text-secondary
|
|
|
|
exact-active-class="text-primary"
|
|
|
|
>
|
2022-11-28 10:14:58 +00:00
|
|
|
<template #default="{ isExactActive }">
|
2023-01-09 11:24:26 +00:00
|
|
|
<CommonLocalizedNumber
|
|
|
|
keypath="account.posts_count"
|
|
|
|
:count="account.statusesCount"
|
|
|
|
font-bold
|
|
|
|
:class="isExactActive ? 'text-primary' : 'text-base'"
|
|
|
|
/>
|
2022-11-28 10:14:58 +00:00
|
|
|
</template>
|
2022-11-28 09:51:15 +00:00
|
|
|
</NuxtLink>
|
2022-12-14 15:56:48 +00:00
|
|
|
<NuxtLink
|
2023-04-16 20:47:20 +01:00
|
|
|
v-if="!(isHoverCard && getPreferences(userSettings, 'hideFollowerCount'))"
|
2022-12-14 15:56:48 +00:00
|
|
|
:to="getAccountFollowingRoute(account)"
|
2023-01-09 08:48:39 +00:00
|
|
|
replace
|
2022-12-14 15:56:48 +00:00
|
|
|
text-secondary exact-active-class="text-primary"
|
|
|
|
>
|
2022-11-28 10:14:58 +00:00
|
|
|
<template #default="{ isExactActive }">
|
2023-01-09 11:24:26 +00:00
|
|
|
<CommonLocalizedNumber
|
2023-04-16 20:47:20 +01:00
|
|
|
v-if="!getPreferences(userSettings, 'hideFollowerCount')"
|
2023-01-09 11:24:26 +00:00
|
|
|
keypath="account.following_count"
|
|
|
|
:count="account.followingCount"
|
|
|
|
font-bold
|
|
|
|
:class="isExactActive ? 'text-primary' : 'text-base'"
|
|
|
|
/>
|
2023-04-16 20:47:20 +01:00
|
|
|
<span v-else>{{ $t('account.following') }}</span>
|
2022-11-28 10:14:58 +00:00
|
|
|
</template>
|
2022-11-28 09:51:15 +00:00
|
|
|
</NuxtLink>
|
2022-12-14 15:56:48 +00:00
|
|
|
<NuxtLink
|
2023-04-16 20:47:20 +01:00
|
|
|
v-if="!(isHoverCard && getPreferences(userSettings, 'hideFollowerCount'))"
|
2022-12-14 15:56:48 +00:00
|
|
|
:to="getAccountFollowersRoute(account)"
|
2023-01-10 14:45:17 +00:00
|
|
|
replace text-secondary
|
|
|
|
exact-active-class="text-primary"
|
2022-12-14 15:56:48 +00:00
|
|
|
>
|
2022-11-28 10:14:58 +00:00
|
|
|
<template #default="{ isExactActive }">
|
2023-01-09 11:24:26 +00:00
|
|
|
<CommonLocalizedNumber
|
2023-04-16 20:47:20 +01:00
|
|
|
v-if="!getPreferences(userSettings, 'hideFollowerCount')"
|
2023-01-09 11:24:26 +00:00
|
|
|
keypath="account.followers_count"
|
|
|
|
:count="account.followersCount"
|
|
|
|
font-bold
|
|
|
|
:class="isExactActive ? 'text-primary' : 'text-base'"
|
|
|
|
/>
|
2023-04-16 20:47:20 +01:00
|
|
|
<span v-else>{{ $t('account.followers') }}</span>
|
2022-11-28 10:14:58 +00:00
|
|
|
</template>
|
2022-11-28 09:51:15 +00:00
|
|
|
</NuxtLink>
|
|
|
|
</div>
|
|
|
|
</template>
|