2022-12-29 00:43:46 +03:00
|
|
|
<script setup lang="ts">
|
2024-11-30 18:36:09 +03:00
|
|
|
import type { mastodon } from 'masto'
|
|
|
|
|
2024-01-09 11:56:15 +03:00
|
|
|
const paginator = useMastoClient().v1.timelines.public.list({ limit: 30, local: true })
|
2024-03-21 13:08:51 +03:00
|
|
|
const stream = useStreaming(client => client.public.local.subscribe())
|
2024-11-30 18:36:09 +03:00
|
|
|
function reorderAndFilter(items: mastodon.v1.Status[]) {
|
|
|
|
return reorderedTimeline(items, 'public')
|
|
|
|
}
|
2022-12-29 00:43:46 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
2024-11-30 18:36:09 +03:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderAndFilter" context="public" />
|
2022-12-29 00:43:46 +03:00
|
|
|
</div>
|
|
|
|
</template>
|