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

22 lines
638 B
Vue
Raw Normal View History

2022-12-11 10:52:36 +00:00
<script lang="ts" setup>
import { STORAGE_KEY_HIDE_EXPLORE_POSTS_TIPS } from '~~/constants'
2022-12-13 18:44:40 +00:00
const { t } = useI18n()
2023-01-08 06:21:09 +00:00
const paginator = useMasto().v1.trends.listStatuses()
2022-12-11 10:52:36 +00:00
const hideNewsTips = useLocalStorage(STORAGE_KEY_HIDE_EXPLORE_POSTS_TIPS, false)
2022-12-13 18:44:40 +00:00
useHeadFixed({
title: () => `${t('tab.posts')} | ${t('nav.explore')}`,
2022-12-13 18:44:40 +00:00
})
2022-12-11 10:52:36 +00:00
</script>
<template>
<CommonAlert v-if="isHydrated && !hideNewsTips" @close="hideNewsTips = true">
2022-12-11 10:52:36 +00:00
<p>{{ $t('tooltip.explore_posts_intro') }}</p>
</CommonAlert>
<!-- TODO: Tabs for trending statuses, tags, and links -->
<TimelinePaginator :paginator="paginator" context="public" />
</template>