2022-11-28 12:51:15 +03:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Account } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
account: Account
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div flex gap-5>
|
2022-11-30 20:15:18 +03:00
|
|
|
<NuxtLink :to="getAccountRoute(account)" text-secondary exact-active-class="text-primary">
|
2022-11-28 13:14:58 +03:00
|
|
|
<template #default="{ isExactActive }">
|
2022-11-29 09:57:32 +03:00
|
|
|
<i18n-t keypath="account.posts_count">
|
2022-11-28 13:14:58 +03:00
|
|
|
<span font-bold :class="isExactActive ? 'text-primary' : 'text-base'">{{ formattedNumber(account.statusesCount) }}</span>
|
|
|
|
</i18n-t>
|
|
|
|
</template>
|
2022-11-28 12:51:15 +03:00
|
|
|
</NuxtLink>
|
2022-11-30 20:15:18 +03:00
|
|
|
<NuxtLink :to="getAccountFollowingRoute(account)" text-secondary exact-active-class="text-primary">
|
2022-11-28 13:14:58 +03:00
|
|
|
<template #default="{ isExactActive }">
|
2022-11-29 09:57:32 +03:00
|
|
|
<i18n-t keypath="account.following_count">
|
2022-11-28 13:14:58 +03:00
|
|
|
<span font-bold :class="isExactActive ? 'text-primary' : 'text-base'">{{ humanReadableNumber(account.followingCount) }}</span>
|
|
|
|
</i18n-t>
|
|
|
|
</template>
|
2022-11-28 12:51:15 +03:00
|
|
|
</NuxtLink>
|
2022-11-30 20:15:18 +03:00
|
|
|
<NuxtLink :to="getAccountFollowersRoute(account)" text-secondary exact-active-class="text-primary">
|
2022-11-28 13:14:58 +03:00
|
|
|
<template #default="{ isExactActive }">
|
2022-11-29 13:54:25 +03:00
|
|
|
<i18n-t keypath="account.followers_count">
|
2022-11-28 13:14:58 +03:00
|
|
|
<span font-bold :class="isExactActive ? 'text-primary' : 'text-base'">{{ humanReadableNumber(account.followersCount) }}</span>
|
|
|
|
</i18n-t>
|
|
|
|
</template>
|
2022-11-28 12:51:15 +03:00
|
|
|
</NuxtLink>
|
|
|
|
</div>
|
|
|
|
</template>
|