2022-11-28 18:51:15 +09:00
|
|
|
<script setup lang="ts">
|
2023-01-08 15:21:09 +09:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-28 18:51:15 +09:00
|
|
|
|
2023-01-09 20:24:26 +09:00
|
|
|
defineProps<{
|
2023-01-08 15:21:09 +09:00
|
|
|
account: mastodon.v1.Account
|
2023-04-17 04:47:20 +09:00
|
|
|
isHoverCard?: boolean
|
2022-11-28 18:51:15 +09:00
|
|
|
}>()
|
2023-01-13 02:52:52 +09:00
|
|
|
|
|
|
|
const userSettings = useUserSettings()
|
2022-11-28 18:51:15 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div flex gap-5>
|
2022-12-15 00:56:48 +09:00
|
|
|
<NuxtLink
|
|
|
|
:to="getAccountRoute(account)"
|
2023-01-09 17:48:39 +09:00
|
|
|
replace
|
2022-12-15 00:56:48 +09:00
|
|
|
text-secondary
|
|
|
|
exact-active-class="text-primary"
|
|
|
|
>
|
2022-11-28 19:14:58 +09:00
|
|
|
<template #default="{ isExactActive }">
|
2023-01-09 20:24:26 +09:00
|
|
|
<CommonLocalizedNumber
|
|
|
|
keypath="account.posts_count"
|
|
|
|
:count="account.statusesCount"
|
|
|
|
font-bold
|
|
|
|
:class="isExactActive ? 'text-primary' : 'text-base'"
|
|
|
|
/>
|
2022-11-28 19:14:58 +09:00
|
|
|
</template>
|
2022-11-28 18:51:15 +09:00
|
|
|
</NuxtLink>
|
2022-12-15 00:56:48 +09:00
|
|
|
<NuxtLink
|
2023-04-17 04:47:20 +09:00
|
|
|
v-if="!(isHoverCard && getPreferences(userSettings, 'hideFollowerCount'))"
|
2022-12-15 00:56:48 +09:00
|
|
|
:to="getAccountFollowingRoute(account)"
|
2023-01-09 17:48:39 +09:00
|
|
|
replace
|
2022-12-15 00:56:48 +09:00
|
|
|
text-secondary exact-active-class="text-primary"
|
|
|
|
>
|
2022-11-28 19:14:58 +09:00
|
|
|
<template #default="{ isExactActive }">
|
2023-06-01 00:59:54 +09:00
|
|
|
<template
|
2023-04-17 04:47:20 +09:00
|
|
|
v-if="!getPreferences(userSettings, 'hideFollowerCount')"
|
2023-06-01 00:59:54 +09:00
|
|
|
>
|
|
|
|
<CommonLocalizedNumber
|
|
|
|
v-if="account.followingCount >= 0"
|
|
|
|
keypath="account.following_count"
|
|
|
|
:count="account.followingCount"
|
|
|
|
font-bold
|
|
|
|
:class="isExactActive ? 'text-primary' : 'text-base'"
|
|
|
|
/>
|
|
|
|
<div v-else flex gap-x-1>
|
|
|
|
<span font-bold text-base>Hidden</span>
|
|
|
|
<span>{{ $t('account.following') }}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-04-17 04:47:20 +09:00
|
|
|
<span v-else>{{ $t('account.following') }}</span>
|
2022-11-28 19:14:58 +09:00
|
|
|
</template>
|
2022-11-28 18:51:15 +09:00
|
|
|
</NuxtLink>
|
2022-12-15 00:56:48 +09:00
|
|
|
<NuxtLink
|
2023-04-17 04:47:20 +09:00
|
|
|
v-if="!(isHoverCard && getPreferences(userSettings, 'hideFollowerCount'))"
|
2022-12-15 00:56:48 +09:00
|
|
|
:to="getAccountFollowersRoute(account)"
|
2023-01-10 23:45:17 +09:00
|
|
|
replace text-secondary
|
|
|
|
exact-active-class="text-primary"
|
2022-12-15 00:56:48 +09:00
|
|
|
>
|
2022-11-28 19:14:58 +09:00
|
|
|
<template #default="{ isExactActive }">
|
2023-06-01 00:59:54 +09:00
|
|
|
<template v-if="!getPreferences(userSettings, 'hideFollowerCount')">
|
|
|
|
<CommonLocalizedNumber
|
|
|
|
v-if="account.followersCount >= 0"
|
|
|
|
keypath="account.followers_count"
|
|
|
|
:count="account.followersCount"
|
|
|
|
font-bold
|
|
|
|
:class="isExactActive ? 'text-primary' : 'text-base'"
|
|
|
|
/>
|
|
|
|
<div v-else flex gap-x-1>
|
|
|
|
<span font-bold text-base>Hidden</span>
|
|
|
|
<span>{{ $t('account.followers') }}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-04-17 04:47:20 +09:00
|
|
|
<span v-else>{{ $t('account.followers') }}</span>
|
2022-11-28 19:14:58 +09:00
|
|
|
</template>
|
2022-11-28 18:51:15 +09:00
|
|
|
</NuxtLink>
|
|
|
|
</div>
|
|
|
|
</template>
|