1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 06:06:48 +01:00
elk/components/timeline/TimelineHome.vue

17 lines
510 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { mastodon } from 'masto'
2024-01-09 08:56:15 +00:00
const paginator = useMastoClient().v1.timelines.home.list({ limit: 30 })
const stream = useStreaming(client => client.user.subscribe())
function reorderAndFilter(items: mastodon.v1.Status[]) {
return reorderedTimeline(items, 'home')
}
</script>
<template>
<div>
2022-12-27 22:18:16 +00:00
<PublishWidget draft-key="home" border="b base" />
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderAndFilter" context="home" />
</div>
</template>