elk/composables/paginator.ts

68 wiersze
1.4 KiB
TypeScript
Czysty Zwykły widok Historia

import type { Paginator } from 'masto'
import { useDeactivated } from './lifecycle'
2022-11-16 16:11:08 +00:00
import type { PaginatorState } from '~/types'
export function usePaginator<T>(paginator: Paginator<any, T[]>) {
2022-11-17 07:35:42 +00:00
const state = ref<PaginatorState>('idle')
const items = ref<T[]>([])
2022-11-21 22:59:51 +00:00
const newItems = ref<T[]>([])
const endAnchor = ref<HTMLDivElement>()
const bound = reactive(useElementBounding(endAnchor))
const isInScreen = $computed(() => bound.top < window.innerHeight * 2)
2022-11-17 07:35:42 +00:00
const error = ref<unknown | undefined>()
const deactivated = useDeactivated()
async function loadNext() {
2022-11-17 07:35:42 +00:00
if (state.value !== 'idle')
return
2022-11-17 07:35:42 +00:00
state.value = 'loading'
try {
const result = await paginator.next()
if (result.value?.length) {
2022-11-21 22:59:51 +00:00
newItems.value = result.value
items.value.push(...newItems.value)
2022-11-17 07:35:42 +00:00
state.value = 'idle'
}
else {
state.value = 'done'
}
}
catch (e) {
error.value = e
state.value = 'error'
}
2022-11-16 16:11:08 +00:00
await nextTick()
bound.update()
}
useIntervalFn(() => {
bound.update()
}, 1000)
watch(
() => isInScreen,
() => {
if (
isInScreen
&& state.value === 'idle'
// No new content is loaded when the keepAlive page enters the background
&& deactivated.value === false
)
loadNext()
},
{ immediate: true },
)
2022-11-17 07:35:42 +00:00
return {
items,
2022-11-21 22:59:51 +00:00
newItems,
2022-11-17 07:35:42 +00:00
state,
error,
endAnchor,
}
}