2022-12-26 05:39:18 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
const paginator = useMasto().v1.timelines.listHome()
|
|
|
|
const stream = useMasto().v1.stream.streamUser()
|
2022-12-28 21:43:46 +00:00
|
|
|
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" />
|
2023-01-04 12:09:09 +00:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderedTimeline" context="home" />
|
2022-12-26 05:39:18 +00:00
|
|
|
</div>
|
|
|
|
</template>
|