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'
|
|
|
|
|
2024-09-07 09:27:01 +00:00
|
|
|
const { isSupported, effectiveType } = useNetwork()
|
|
|
|
const isSlow = computed(() => isSupported.value && effectiveType.value && ['slow-2g', '2g', '3g'].includes(effectiveType.value))
|
|
|
|
const limit = computed(() => isSlow.value ? 10 : 30)
|
|
|
|
|
|
|
|
const paginator = useMastoClient().v1.timelines.home.list({ limit: limit.value })
|
2024-01-09 08:56:15 +00:00
|
|
|
const stream = useStreaming(client => client.user.subscribe())
|
2023-03-30 19:01:24 +00:00
|
|
|
function reorderAndFilter(items: mastodon.v1.Status[]) {
|
|
|
|
return reorderedTimeline(items, 'home')
|
|
|
|
}
|
2022-12-26 05:39:18 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
2024-04-08 09:53:26 +00:00
|
|
|
<PublishWidgetList draft-key="home" />
|
|
|
|
<div h="1px" w-auto bg-border mb-3 />
|
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>
|