2022-12-02 03:21:10 +01:00
|
|
|
<script setup>
|
|
|
|
const { notifications } = useNotifications()
|
|
|
|
</script>
|
|
|
|
|
2022-11-15 18:14:10 +01:00
|
|
|
<template>
|
2022-12-04 15:17:02 +01:00
|
|
|
<nav md:px3 md:py4 flex="~ col gap2" text-size-base leading-normal md:text-lg>
|
2022-11-23 00:08:36 +01:00
|
|
|
<template v-if="currentUser">
|
2022-12-01 14:22:03 +01:00
|
|
|
<NavSideItem :text="$t('nav_side.home')" to="/home" icon="i-ri:home-5-line" />
|
2022-12-02 03:21:10 +01:00
|
|
|
<NavSideItem :text="$t('nav_side.notifications')" to="/notifications" icon="i-ri:notification-4-line">
|
|
|
|
<template #icon>
|
|
|
|
<div flex relative>
|
2022-12-04 15:17:02 +01:00
|
|
|
<div class="i-ri:notification-4-line" md:text-size-inherit text-xl />
|
2022-12-02 03:21:10 +01:00
|
|
|
<div v-if="notifications" class="top-[-0.3rem] right-[-0.3rem]" absolute font-bold rounded-full h-4 w-4 text-xs bg-primary text-inverted flex items-center justify-center>
|
|
|
|
{{ notifications < 10 ? notifications : '•' }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</NavSideItem>
|
2022-11-17 22:32:03 +01:00
|
|
|
</template>
|
2022-12-04 21:05:11 +01:00
|
|
|
<NavSideItem :text="$t('nav_side.explore')" :to="`/${currentServer}/explore`" icon="i-ri:hashtag" />
|
|
|
|
<NavSideItem :text="$t('nav_side.local')" :to="`/${currentServer}/public/local`" icon="i-ri:group-2-line " />
|
|
|
|
<NavSideItem :text="$t('nav_side.federated')" :to="`/${currentServer}/public`" icon="i-ri:earth-line" />
|
2022-11-23 00:08:36 +01:00
|
|
|
<template v-if="currentUser">
|
2022-12-01 14:22:03 +01:00
|
|
|
<NavSideItem :text="$t('nav_side.conversations')" to="/conversations" icon="i-ri:at-line" />
|
|
|
|
<NavSideItem :text="$t('nav_side.favourites')" to="/favourites" icon="i-ri:heart-3-line" />
|
|
|
|
<NavSideItem :text="$t('nav_side.bookmarks')" to="/bookmarks" icon="i-ri:bookmark-line " />
|
2022-11-29 09:15:05 +01:00
|
|
|
<NavSideItem
|
2022-11-30 08:30:17 +01:00
|
|
|
v-if="isMediumScreen"
|
2022-11-29 09:15:05 +01:00
|
|
|
:text="currentUser.account.displayName"
|
2022-11-30 18:15:18 +01:00
|
|
|
:to="getAccountRoute(currentUser.account)"
|
2022-11-29 09:15:05 +01:00
|
|
|
icon="i-ri:account-circle-line"
|
|
|
|
>
|
2022-11-27 03:35:26 +01:00
|
|
|
<template #icon>
|
2022-12-04 15:17:02 +01:00
|
|
|
<AccountAvatar :account="currentUser.account" h="1.2em" md:text-size-inherit text-xl />
|
2022-11-27 03:35:26 +01:00
|
|
|
</template>
|
2022-11-29 09:15:05 +01:00
|
|
|
<ContentRich
|
2022-12-01 14:22:03 +01:00
|
|
|
:content="getDisplayName(currentUser.account, { rich: true }) || $t('nav_side.profile')"
|
2022-11-29 09:15:05 +01:00
|
|
|
:emojis="currentUser.account.emojis"
|
|
|
|
/>
|
2022-11-27 03:35:26 +01:00
|
|
|
</NavSideItem>
|
2022-11-17 22:32:03 +01:00
|
|
|
</template>
|
2022-11-27 04:13:39 +01:00
|
|
|
</nav>
|
2022-11-15 18:14:10 +01:00
|
|
|
</template>
|