2022-11-15 13:50:41 +00:00
|
|
|
<script setup lang="ts">
|
2022-12-03 05:36:10 +00:00
|
|
|
const paginator = useMasto().timelines.iteratePublic({ local: true })
|
2022-11-28 11:18:45 +00:00
|
|
|
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()
|
|
|
|
|
2022-11-29 22:49:25 +00:00
|
|
|
useHeadFixed({
|
2022-11-29 21:50:13 +00:00
|
|
|
title: () => t('title.local_timeline'),
|
2022-11-25 11:48:48 +00:00
|
|
|
})
|
2022-11-15 13:50:41 +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>
|
2022-11-15 13:50:41 +00:00
|
|
|
</template>
|
2022-11-26 04:08:17 +00:00
|
|
|
|
2022-11-15 13:50:41 +00:00
|
|
|
<slot>
|
2022-12-04 19:28:26 +00:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" context="public" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|