mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
33 lines
1 KiB
Vue
33 lines
1 KiB
Vue
<script lang="ts" setup>
|
|
// @ts-expect-error missing types
|
|
import { DynamicScrollerItem } from 'vue-virtual-scroller'
|
|
import { STORAGE_KEY_HIDE_EXPLORE_NEWS_TIPS } from '~~/constants'
|
|
|
|
const { t } = useI18n()
|
|
|
|
const paginator = useMasto().trends.links
|
|
|
|
const hideNewsTips = useLocalStorage(STORAGE_KEY_HIDE_EXPLORE_NEWS_TIPS, false)
|
|
|
|
useHeadFixed({
|
|
title: () => `${t('tab.news')} | ${t('nav_side.explore')}`,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<CommonAlert v-if="!hideNewsTips" @close="hideNewsTips = true">
|
|
<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>
|