2022-12-29 06:43:46 +09:00
|
|
|
<script setup lang="ts">
|
2023-01-24 04:33:21 +09:00
|
|
|
import type { mastodon } from 'masto'
|
|
|
|
|
2023-01-15 17:38:02 +09:00
|
|
|
const paginator = useMastoClient().v1.timelines.listPublic({ limit: 30 })
|
|
|
|
const stream = useStreaming(client => client.v1.stream.streamPublicTimeline())
|
2023-01-24 04:33:21 +09:00
|
|
|
const reorderAndFilter = (items: mastodon.v1.Status[]) => reorderedTimeline(items, 'public')
|
2022-12-29 06:43:46 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
2023-01-24 04:33:21 +09:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderAndFilter" context="public" />
|
2022-12-29 06:43:46 +09:00
|
|
|
</div>
|
|
|
|
</template>
|