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