mirror of https://github.com/elk-zone/elk.git
15 lines
508 B
Vue
15 lines
508 B
Vue
<script setup lang="ts">
|
|
import type { mastodon } from 'masto'
|
|
|
|
const paginator = useMastoClient().v1.timelines.listHome({ limit: 30 })
|
|
const stream = $(useStreaming(client => client.v1.stream.streamUser()))
|
|
const reorderAndFilter = (items: mastodon.v1.Status[]) => reorderedTimeline(items, 'home')
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<PublishWidget draft-key="home" border="b base" />
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderAndFilter" context="home" />
|
|
</div>
|
|
</template>
|