mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
23 lines
521 B
Vue
23 lines
521 B
Vue
<script setup lang="ts">
|
|
import type { Paginator, Status } from 'masto'
|
|
|
|
const { paginator } = defineProps<{
|
|
paginator: Paginator<any, Status[]>
|
|
}>()
|
|
|
|
const { items: statuses, isLoading, isDone, endAnchor } = usePaginator(paginator)
|
|
</script>
|
|
|
|
<template>
|
|
<template v-for="status of statuses" :key="status.id">
|
|
<StatusCard :status="status" border="t border" pt-4 />
|
|
</template>
|
|
<div ref="endAnchor" />
|
|
<div v-if="isLoading">
|
|
Loading...
|
|
</div>
|
|
<div v-if="isDone">
|
|
End of list
|
|
</div>
|
|
</template>
|