2022-12-02 02:21:10 +00:00
|
|
|
<script setup>
|
|
|
|
const { notifications } = useNotifications()
|
|
|
|
</script>
|
|
|
|
|
2022-11-15 17:14:10 +00:00
|
|
|
<template>
|
2022-12-04 14:17:02 +00:00
|
|
|
<nav md:px3 md:py4 flex="~ col gap2" text-size-base leading-normal md:text-lg>
|
2022-11-22 23:08:36 +00:00
|
|
|
<template v-if="currentUser">
|
2022-12-01 13:22:03 +00:00
|
|
|
<NavSideItem :text="$t('nav_side.home')" to="/home" icon="i-ri:home-5-line" />
|
2022-12-02 02:21:10 +00:00
|
|
|
<NavSideItem :text="$t('nav_side.notifications')" to="/notifications" icon="i-ri:notification-4-line">
|
|
|
|
<template #icon>
|
|
|
|
<div flex relative>
|
2022-12-04 14:17:02 +00:00
|
|
|
<div class="i-ri:notification-4-line" md:text-size-inherit text-xl />
|
2022-12-02 02:21:10 +00: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 21:32:03 +00:00
|
|
|
</template>
|
2022-12-01 13:22:03 +00:00
|
|
|
<NavSideItem :text="$t('nav_side.explore')" to="/explore" icon="i-ri:hashtag" />
|
|
|
|
<NavSideItem :text="$t('nav_side.local')" to="/public/local" icon="i-ri:group-2-line " />
|
|
|
|
<NavSideItem :text="$t('nav_side.federated')" to="/public" icon="i-ri:earth-line" />
|
2022-11-22 23:08:36 +00:00
|
|
|
<template v-if="currentUser">
|
2022-12-01 13:22:03 +00: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 08:15:05 +00:00
|
|
|
<NavSideItem
|
2022-11-30 07:30:17 +00:00
|
|
|
v-if="isMediumScreen"
|
2022-11-29 08:15:05 +00:00
|
|
|
:text="currentUser.account.displayName"
|
2022-11-30 17:15:18 +00:00
|
|
|
:to="getAccountRoute(currentUser.account)"
|
2022-11-29 08:15:05 +00:00
|
|
|
icon="i-ri:account-circle-line"
|
|
|
|
>
|
2022-11-27 02:35:26 +00:00
|
|
|
<template #icon>
|
2022-12-04 14:17:02 +00:00
|
|
|
<AccountAvatar :account="currentUser.account" h="1.2em" md:text-size-inherit text-xl />
|
2022-11-27 02:35:26 +00:00
|
|
|
</template>
|
2022-11-29 08:15:05 +00:00
|
|
|
<ContentRich
|
2022-12-01 13:22:03 +00:00
|
|
|
:content="getDisplayName(currentUser.account, { rich: true }) || $t('nav_side.profile')"
|
2022-11-29 08:15:05 +00:00
|
|
|
:emojis="currentUser.account.emojis"
|
|
|
|
/>
|
2022-11-27 02:35:26 +00:00
|
|
|
</NavSideItem>
|
2022-11-17 21:32:03 +00:00
|
|
|
</template>
|
2022-11-27 03:13:39 +00:00
|
|
|
</nav>
|
2022-11-15 17:14:10 +00:00
|
|
|
</template>
|