2022-11-15 22:50:41 +09:00
|
|
|
<script setup lang="ts">
|
2022-12-03 14:36:10 +09:00
|
|
|
const paginator = useMasto().timelines.iteratePublic({ local: true })
|
2022-11-28 20:18:45 +09:00
|
|
|
const stream = await useMasto().stream.streamCommunityTimeline()
|
|
|
|
onBeforeUnmount(() => stream.disconnect())
|
2022-11-25 20:48:48 +09:00
|
|
|
|
2022-11-28 23:25:32 +09:00
|
|
|
const { t } = useI18n()
|
|
|
|
|
2022-11-30 07:49:25 +09:00
|
|
|
useHeadFixed({
|
2022-11-30 06:50:13 +09:00
|
|
|
title: () => t('title.local_timeline'),
|
2022-11-25 20:48:48 +09:00
|
|
|
})
|
2022-11-15 22:50:41 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-30 05:15:53 +09: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 22:50:41 +09:00
|
|
|
</template>
|
2022-11-26 13:08:17 +09:00
|
|
|
|
2022-11-15 22:50:41 +09:00
|
|
|
<slot>
|
2022-12-05 04:28:26 +09:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" context="public" />
|
2022-11-15 22:50:41 +09:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|