elk/pages/public/local.vue

27 lines
686 B
Vue
Raw Normal View History

<script setup lang="ts">
const paginator = useMasto().timelines.getPublicIterable({ local: true })
const stream = await useMasto().stream.streamCommunityTimeline()
onBeforeUnmount(() => stream.disconnect())
2022-11-25 11:48:48 +00:00
2022-11-28 14:25:32 +00:00
const { t } = useI18n()
useHeadFixed({
2022-11-29 21:50:13 +00:00
title: () => t('title.local_timeline'),
2022-11-25 11:48:48 +00:00
})
</script>
<template>
<MainContent>
<template #title>
2022-11-29 20:15:53 +00:00
<NuxtLink to="/public/local" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:group-2-line />
<span>{{ t('title.local_timeline') }}</span>
</NuxtLink>
</template>
<slot>
<TimelinePaginator v-bind="{ paginator, stream }" />
</slot>
</MainContent>
</template>