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