feat: support paginator in local timeline
parent
696ddb2bad
commit
eb3f2ab771
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"extends": "@antfu"
|
||||
"extends": "@antfu",
|
||||
"ignorePatterns": ["!pages/public"]
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<script setup lang="ts">
|
||||
const { data: timelines } = await useAsyncData('timelines-home', () => masto.timelines.fetchPublic({ local: true }).then(r => r.value))
|
||||
const paginator = masto.timelines.getPublicIterable({ local: true })
|
||||
|
||||
useHead({
|
||||
title: 'Local'
|
||||
title: 'Local',
|
||||
})
|
||||
</script>
|
||||
|
||||
|
@ -11,9 +11,9 @@ useHead({
|
|||
<template #title>
|
||||
<span text-lg font-bold>Local timeline</span>
|
||||
</template>
|
||||
|
||||
|
||||
<slot>
|
||||
<TimelineList :timelines="timelines" />
|
||||
<TimelinePaginator :paginator="paginator" />
|
||||
</slot>
|
||||
</MainContent>
|
||||
</template>
|
||||
|
|
|
@ -10,7 +10,7 @@ definePageMeta({
|
|||
status,
|
||||
},
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue