2022-11-17 16:09:05 +03:00
|
|
|
<script setup lang="ts">
|
2024-02-24 15:24:21 +03:00
|
|
|
import type { CommonRouteTabOption } from '~/types'
|
2023-01-24 21:52:48 +03:00
|
|
|
|
2022-11-28 17:25:32 +03:00
|
|
|
const { t } = useI18n()
|
|
|
|
|
2024-02-21 18:20:08 +03:00
|
|
|
const search = ref<{ input?: HTMLInputElement }>()
|
2023-02-03 13:40:54 +03:00
|
|
|
const route = useRoute()
|
|
|
|
watchEffect(() => {
|
2024-02-21 18:20:08 +03:00
|
|
|
if (isMediumOrLargeScreen && route.name === 'explore' && search.value?.input)
|
|
|
|
search.value?.input?.focus()
|
2023-02-03 13:40:54 +03:00
|
|
|
})
|
|
|
|
onActivated(() =>
|
2024-02-21 18:20:08 +03:00
|
|
|
search.value?.input?.focus(),
|
2023-02-03 13:40:54 +03:00
|
|
|
)
|
2024-02-21 18:20:08 +03:00
|
|
|
onDeactivated(() => search.value?.input?.blur())
|
2023-02-03 13:40:54 +03:00
|
|
|
|
2023-04-28 10:38:44 +03:00
|
|
|
const userSettings = useUserSettings()
|
|
|
|
|
2024-02-21 18:20:08 +03:00
|
|
|
const tabs = computed<CommonRouteTabOption[]>(() => [
|
2022-12-11 13:52:36 +03:00
|
|
|
{
|
2023-01-11 17:50:47 +03:00
|
|
|
to: isHydrated.value ? `/${currentServer.value}/explore` : '/explore',
|
2024-02-24 21:24:19 +03:00
|
|
|
display: t('tab.posts'),
|
2022-12-11 13:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
2023-01-11 17:50:47 +03:00
|
|
|
to: isHydrated.value ? `/${currentServer.value}/explore/tags` : '/explore/tags',
|
2024-02-24 21:24:19 +03:00
|
|
|
display: t('tab.hashtags'),
|
2022-12-11 13:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
2023-01-11 17:50:47 +03:00
|
|
|
to: isHydrated.value ? `/${currentServer.value}/explore/links` : '/explore/links',
|
2024-02-24 21:24:19 +03:00
|
|
|
display: t('tab.news'),
|
2023-04-28 10:38:44 +03:00
|
|
|
hide: userSettings.value.preferences.hideNews,
|
2022-12-11 13:52:36 +03:00
|
|
|
},
|
|
|
|
// This section can only be accessed after logging in
|
2022-12-26 08:39:18 +03:00
|
|
|
{
|
2023-01-11 17:50:47 +03:00
|
|
|
to: isHydrated.value ? `/${currentServer.value}/explore/users` : '/explore/users',
|
2024-02-24 21:24:19 +03:00
|
|
|
display: t('tab.for_you'),
|
2023-01-15 11:38:02 +03:00
|
|
|
disabled: !isHydrated.value || !currentUser.value,
|
2022-12-26 08:39:18 +03:00
|
|
|
},
|
2023-01-24 21:52:48 +03:00
|
|
|
])
|
2022-11-17 16:09:05 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-05-07 18:41:18 +03:00
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2023-01-05 02:17:30 +03:00
|
|
|
<span timeline-title-style flex items-center gap-2 cursor-pointer @click="$scrollToTop">
|
2024-03-05 13:27:10 +03:00
|
|
|
<div i-ri:compass-3-line />
|
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>
|