2022-11-15 14:50:41 +01:00
|
|
|
<script setup lang="ts">
|
2022-11-26 16:58:30 +01:00
|
|
|
const paginator = useMasto().timelines.getPublicIterable({ local: true })
|
2022-11-28 12:18:45 +01:00
|
|
|
const stream = await useMasto().stream.streamCommunityTimeline()
|
|
|
|
onBeforeUnmount(() => stream.disconnect())
|
2022-11-25 12:48:48 +01:00
|
|
|
|
|
|
|
useHead({
|
2022-11-26 05:08:17 +01:00
|
|
|
title: 'Local',
|
2022-11-25 12:48:48 +01:00
|
|
|
})
|
2022-11-15 14:50:41 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-23 09:08:49 +01:00
|
|
|
<span text-lg font-bold>Local timeline</span>
|
2022-11-15 14:50:41 +01:00
|
|
|
</template>
|
2022-11-26 05:08:17 +01:00
|
|
|
|
2022-11-15 14:50:41 +01:00
|
|
|
<slot>
|
2022-11-28 12:18:45 +01:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" />
|
2022-11-15 14:50:41 +01:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|