2022-12-11 10:52:36 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
// @ts-expect-error missing types
|
|
|
|
import { DynamicScrollerItem } from 'vue-virtual-scroller'
|
|
|
|
import { STORAGE_KEY_HIDE_EXPLORE_NEWS_TIPS } from '~~/constants'
|
2022-12-13 18:44:40 +00:00
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
2022-12-11 10:52:36 +00:00
|
|
|
const paginator = useMasto().trends.links
|
|
|
|
|
|
|
|
const hideNewsTips = useLocalStorage(STORAGE_KEY_HIDE_EXPLORE_NEWS_TIPS, false)
|
2022-12-13 18:44:40 +00:00
|
|
|
|
|
|
|
useHeadFixed({
|
2022-12-27 17:49:15 +00:00
|
|
|
title: () => `${t('tab.news')} | ${t('nav.explore')}`,
|
2022-12-13 18:44:40 +00:00
|
|
|
})
|
2022-12-11 10:52:36 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-26 07:45:56 +00:00
|
|
|
<CommonAlert v-if="isHydrated.value && !hideNewsTips" @close="hideNewsTips = true">
|
2022-12-11 10:52:36 +00:00
|
|
|
<p>{{ $t('tooltip.explore_links_intro') }}</p>
|
|
|
|
</CommonAlert>
|
|
|
|
|
|
|
|
<CommonPaginator v-bind="{ paginator }">
|
|
|
|
<template #default="{ item }">
|
|
|
|
<StatusPreviewCard :card="item" border="!b base" rounded="!none" p="!4" small-picture-only root />
|
|
|
|
</template>
|
|
|
|
<template #loading>
|
|
|
|
<StatusPreviewCardSkeleton square root border="b base" />
|
|
|
|
<StatusPreviewCardSkeleton square root border="b base" op50 />
|
|
|
|
<StatusPreviewCardSkeleton square root border="b base" op25 />
|
|
|
|
</template>
|
|
|
|
</CommonPaginator>
|
|
|
|
</template>
|