2022-11-25 08:13:35 +00:00
|
|
|
<script setup lang="ts">
|
2022-12-04 14:17:02 +00:00
|
|
|
// only one icon can be lit up at the same time
|
|
|
|
const moreMenuVisible = ref(false)
|
2022-11-25 08:13:35 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-04 14:17:02 +00:00
|
|
|
<nav
|
|
|
|
h-14 border="t base" flex flex-row text-xl
|
2022-12-05 13:20:23 +00:00
|
|
|
of-y-scroll scrollbar-hide overscroll-none
|
|
|
|
class="after-content-empty after:(h-[calc(100%+0.5px)] w-0.1px pointer-events-none)"
|
2022-12-04 14:17:02 +00:00
|
|
|
>
|
|
|
|
<!-- These weird styles above are used for scroll locking, don't change it unless you know exactly what you're doing. -->
|
2022-12-17 16:55:29 +00:00
|
|
|
<template v-if="isMastoInitialised && currentUser">
|
2022-12-04 14:17:02 +00:00
|
|
|
<NuxtLink to="/home" :active-class="moreMenuVisible ? '' : 'text-primary'" flex flex-row items-center place-content-center h-full flex-1 @click="$scrollToTop">
|
2022-11-25 08:13:35 +00:00
|
|
|
<div i-ri:home-5-line />
|
|
|
|
</NuxtLink>
|
2022-12-04 14:17:02 +00:00
|
|
|
<NuxtLink to="/notifications" :active-class="moreMenuVisible ? '' : 'text-primary'" flex flex-row items-center place-content-center h-full flex-1 @click="$scrollToTop">
|
2022-11-25 08:13:35 +00:00
|
|
|
<div i-ri:notification-4-line />
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
2022-12-04 20:05:11 +00:00
|
|
|
<NuxtLink :to="`/${currentServer}/explore`" :active-class="moreMenuVisible ? '' : 'text-primary'" flex flex-row items-center place-content-center h-full flex-1 @click="$scrollToTop">
|
2022-11-25 08:13:35 +00:00
|
|
|
<div i-ri:hashtag />
|
|
|
|
</NuxtLink>
|
2022-12-04 20:05:11 +00:00
|
|
|
<NuxtLink group :to="`/${currentServer}/public/local`" :active-class="moreMenuVisible ? '' : 'text-primary'" flex flex-row items-center place-content-center h-full flex-1 @click="$scrollToTop">
|
2022-11-25 08:13:35 +00:00
|
|
|
<div i-ri:group-2-line />
|
|
|
|
</NuxtLink>
|
2022-12-17 16:55:29 +00:00
|
|
|
<template v-if="!isMastoInitialised || !currentUser">
|
2022-12-04 20:05:11 +00:00
|
|
|
<NuxtLink :to="`/${currentServer}/public`" :active-class="moreMenuVisible ? '' : 'text-primary'" flex flex-row items-center place-content-center h-full flex-1 @click="$scrollToTop">
|
2022-12-04 14:17:02 +00:00
|
|
|
<div i-ri:earth-line />
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
2022-12-17 16:55:29 +00:00
|
|
|
<template v-if="isMastoInitialised && currentUser">
|
2022-12-04 14:17:02 +00:00
|
|
|
<NuxtLink to="/conversations" :active-class="moreMenuVisible ? '' : 'text-primary'" flex flex-row items-center place-content-center h-full flex-1 @click="$scrollToTop">
|
2022-11-25 08:13:35 +00:00
|
|
|
<div i-ri:at-line />
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
2022-12-04 14:17:02 +00:00
|
|
|
<NavBottomMoreMenu v-slot="{ changeShow, show }" v-model="moreMenuVisible" flex flex-row items-center place-content-center h-full flex-1 cursor-pointer>
|
|
|
|
<label
|
2022-12-07 00:05:17 +00:00
|
|
|
flex items-center place-content-center h-full flex-1 class="select-none"
|
2022-12-04 14:17:02 +00:00
|
|
|
:class="show ? '!text-primary' : ''"
|
|
|
|
>
|
|
|
|
<input type="checkbox" z="-1" absolute inset-0 opacity-0 @click="changeShow">
|
|
|
|
<span v-show="show" i-ri:close-fill />
|
|
|
|
<span v-show="!show" i-ri:more-fill />
|
|
|
|
</label>
|
|
|
|
</NavBottomMoreMenu>
|
2022-11-25 08:13:35 +00:00
|
|
|
</nav>
|
|
|
|
</template>
|