2022-12-26 06:39:18 +01:00
|
|
|
<script setup lang="ts">
|
2022-12-27 18:47:05 +01:00
|
|
|
import type { Status } from 'masto'
|
2022-12-26 06:39:18 +01:00
|
|
|
const paginator = useMasto().timelines.iterateHome()
|
2022-12-28 22:43:46 +01:00
|
|
|
const stream = useMasto().stream.streamUser()
|
|
|
|
onBeforeUnmount(() => stream?.then(s => s.disconnect()))
|
2022-12-26 06:39:18 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
2022-12-27 23:18:16 +01:00
|
|
|
<PublishWidget draft-key="home" border="b base" />
|
2022-12-29 17:25:04 +01:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="timelineWithReorderedReplies" context="home" />
|
2022-12-26 06:39:18 +01:00
|
|
|
</div>
|
|
|
|
</template>
|