eddbb1eee9
Co-authored-by: patak <583075+patak-dev@users.noreply.github.com>
57 lines
1.5 KiB
Vue
57 lines
1.5 KiB
Vue
<script setup lang="ts">
|
|
import type { CommonRouteTabOption } from '~/types'
|
|
|
|
const { t } = useI18n()
|
|
|
|
const search = ref<{ input?: HTMLInputElement }>()
|
|
const route = useRoute()
|
|
watchEffect(() => {
|
|
if (isMediumOrLargeScreen && route.name === 'explore' && search.value?.input)
|
|
search.value?.input?.focus()
|
|
})
|
|
onActivated(() =>
|
|
search.value?.input?.focus(),
|
|
)
|
|
onDeactivated(() => search.value?.input?.blur())
|
|
|
|
const userSettings = useUserSettings()
|
|
|
|
const tabs = computed<CommonRouteTabOption[]>(() => [
|
|
{
|
|
to: isHydrated.value ? `/${currentServer.value}/explore` : '/explore',
|
|
display: t('tab.posts'),
|
|
},
|
|
{
|
|
to: isHydrated.value ? `/${currentServer.value}/explore/tags` : '/explore/tags',
|
|
display: t('tab.hashtags'),
|
|
},
|
|
{
|
|
to: isHydrated.value ? `/${currentServer.value}/explore/links` : '/explore/links',
|
|
display: t('tab.news'),
|
|
hide: userSettings.value.preferences.hideNews,
|
|
},
|
|
// This section can only be accessed after logging in
|
|
{
|
|
to: isHydrated.value ? `/${currentServer.value}/explore/users` : '/explore/users',
|
|
display: t('tab.for_you'),
|
|
disabled: !isHydrated.value || !currentUser.value,
|
|
},
|
|
])
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<span timeline-title-style flex items-center gap-2 cursor-pointer @click="$scrollToTop">
|
|
<div i-ri:hashtag />
|
|
<span>{{ t('nav.explore') }}</span>
|
|
</span>
|
|
</template>
|
|
|
|
<template #header>
|
|
<CommonRouteTabs replace :options="tabs" />
|
|
</template>
|
|
<NuxtPage v-if="isHydrated" />
|
|
</MainContent>
|
|
</template>
|