elk/components/account/AccountPostsFollowers.vue

34 lines
1.3 KiB
Vue
Raw Normal View History

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-28 10:14:58 +00:00
<NuxtLink :to="getAccountPath(account)" text-secondary exact-active-class="text-primary">
<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-28 10:14:58 +00:00
<NuxtLink :to="`${getAccountPath(account)}/following`" text-secondary exact-active-class="text-primary">
<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-28 10:14:58 +00:00
<NuxtLink :to="`${getAccountPath(account)}/followers`" text-secondary exact-active-class="text-primary">
<template #default="{ isExactActive }">
<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>