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