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