elk/pages/[[server]]/explore.vue

43 lines
1.3 KiB
Vue
Raw Normal View History

2022-11-17 16:09:05 +03:00
<script setup lang="ts">
2023-01-24 21:52:48 +03:00
import type { CommonRouteTabOption } from '~/components/common/CommonRouteTabs.vue'
2022-11-28 17:25:32 +03:00
const { t } = useI18n()
2023-01-24 21:52:48 +03:00
const tabs = $computed<CommonRouteTabOption[]>(() => [
2022-12-11 13:52:36 +03:00
{
to: isHydrated.value ? `/${currentServer.value}/explore` : '/explore',
display: isHydrated.value ? t('tab.posts') : '',
2022-12-11 13:52:36 +03:00
},
{
to: isHydrated.value ? `/${currentServer.value}/explore/tags` : '/explore/tags',
display: isHydrated.value ? t('tab.hashtags') : '',
2022-12-11 13:52:36 +03:00
},
{
to: isHydrated.value ? `/${currentServer.value}/explore/links` : '/explore/links',
display: isHydrated.value ? t('tab.news') : '',
2022-12-11 13:52:36 +03:00
},
// This section can only be accessed after logging in
{
to: isHydrated.value ? `/${currentServer.value}/explore/users` : '/explore/users',
display: isHydrated.value ? t('tab.for_you') : '',
2023-01-15 11:38:02 +03:00
disabled: !isHydrated.value || !currentUser.value,
},
2023-01-24 21:52:48 +03:00
])
2022-11-17 16:09:05 +03:00
</script>
<template>
2022-12-30 21:16:23 +03:00
<MainContent>
2022-11-17 16:09:05 +03:00
<template #title>
2023-01-05 02:17:30 +03:00
<span timeline-title-style flex items-center gap-2 cursor-pointer @click="$scrollToTop">
2022-11-29 23:15:53 +03:00
<div i-ri:hashtag />
2022-12-27 20:49:15 +03:00
<span>{{ t('nav.explore') }}</span>
2022-12-11 13:52:36 +03:00
</span>
2022-11-17 16:09:05 +03:00
</template>
2022-11-24 09:42:26 +03:00
2022-12-11 13:52:36 +03:00
<template #header>
<CommonRouteTabs replace :options="tabs" />
</template>
2023-01-15 11:38:02 +03:00
<NuxtPage v-if="isHydrated" />
2022-11-17 16:09:05 +03:00
</MainContent>
</template>