2022-12-26 05:39:18 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-23 19:33:21 +00:00
|
|
|
import type { mastodon } from 'masto'
|
|
|
|
|
2023-01-15 08:38:02 +00:00
|
|
|
const paginator = useMastoClient().v1.timelines.listHome({ limit: 30 })
|
|
|
|
const stream = $(useStreaming(client => client.v1.stream.streamUser()))
|
2023-03-30 20:01:24 +01:00
|
|
|
function reorderAndFilter(items: mastodon.v1.Status[]) {
|
|
|
|
return reorderedTimeline(items, 'home')
|
|
|
|
}
|
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-23 19:33:21 +00:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderAndFilter" context="home" />
|
2022-12-26 05:39:18 +00:00
|
|
|
</div>
|
|
|
|
</template>
|