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