2022-11-15 13:50:41 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-26 15:58:30 +00:00
|
|
|
const paginator = useMasto().timelines.getPublicIterable({ 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
|
|
|
|
|
|
|
useHead({
|
2022-11-26 04:08:17 +00:00
|
|
|
title: 'Local',
|
2022-11-25 11:48:48 +00:00
|
|
|
})
|
2022-11-15 13:50:41 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-23 08:08:49 +00:00
|
|
|
<span text-lg font-bold>Local timeline</span>
|
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-11-28 11:18:45 +00:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|