2022-11-28 11:18:45 +00:00
|
|
|
import type { Paginator, WsEvents } from 'masto'
|
2022-11-27 17:34:45 +00:00
|
|
|
import { useDeactivated } from './lifecycle'
|
2022-11-16 16:11:08 +00:00
|
|
|
import type { PaginatorState } from '~/types'
|
2022-11-15 15:56:11 +00:00
|
|
|
|
2022-12-27 17:47:05 +00:00
|
|
|
export function usePaginator<T>(
|
|
|
|
paginator: Paginator<any, T[]>,
|
2022-12-28 21:43:46 +00:00
|
|
|
stream?: Promise<WsEvents>,
|
2022-12-27 17:47:05 +00:00
|
|
|
eventType: 'notification' | 'update' = 'update',
|
|
|
|
preprocess: (items: T[]) => T[] = (items: T[]) => items,
|
|
|
|
) {
|
2022-12-26 08:34:30 +00:00
|
|
|
const state = ref<PaginatorState>(isMastoInitialised.value ? 'idle' : 'loading')
|
2022-11-17 07:35:42 +00:00
|
|
|
const items = ref<T[]>([])
|
2022-11-28 11:18:45 +00:00
|
|
|
const nextItems = ref<T[]>([])
|
|
|
|
const prevItems = ref<T[]>([])
|
2022-11-15 15:56:11 +00:00
|
|
|
|
|
|
|
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>()
|
2022-11-27 17:34:45 +00:00
|
|
|
const deactivated = useDeactivated()
|
2022-11-15 15:56:11 +00:00
|
|
|
|
2022-11-28 11:18:45 +00:00
|
|
|
async function update() {
|
|
|
|
items.value.unshift(...prevItems.value)
|
|
|
|
prevItems.value = []
|
|
|
|
}
|
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
stream?.then((s) => {
|
|
|
|
s.on(eventType, (status) => {
|
|
|
|
if ('uri' in status)
|
|
|
|
cacheStatus(status, undefined, true)
|
2022-12-25 14:52:37 +00:00
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
const index = prevItems.value.findIndex((i: any) => i.id === status.id)
|
|
|
|
if (index >= 0)
|
|
|
|
prevItems.value.splice(index, 1)
|
2022-12-28 16:21:58 +00:00
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
prevItems.value.unshift(status as any)
|
|
|
|
})
|
2022-11-28 11:18:45 +00:00
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
// TODO: update statuses
|
|
|
|
s.on('status.update', (status) => {
|
|
|
|
cacheStatus(status, undefined, true)
|
2022-12-25 14:52:37 +00:00
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
const index = items.value.findIndex((s: any) => s.id === status.id)
|
|
|
|
if (index >= 0)
|
|
|
|
items.value[index] = status as any
|
|
|
|
})
|
2022-11-28 11:18:45 +00:00
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
s.on('delete', (id) => {
|
|
|
|
removeCachedStatus(id)
|
2022-12-25 14:52:37 +00:00
|
|
|
|
2022-12-28 21:43:46 +00:00
|
|
|
const index = items.value.findIndex((s: any) => s.id === id)
|
|
|
|
if (index >= 0)
|
|
|
|
items.value.splice(index, 1)
|
|
|
|
})
|
2022-12-25 14:52:37 +00:00
|
|
|
})
|
|
|
|
|
2022-11-15 15:56:11 +00:00
|
|
|
async function loadNext() {
|
2022-11-17 07:35:42 +00:00
|
|
|
if (state.value !== 'idle')
|
2022-11-15 15:56:11 +00:00
|
|
|
return
|
|
|
|
|
2022-11-17 07:35:42 +00:00
|
|
|
state.value = 'loading'
|
|
|
|
try {
|
|
|
|
const result = await paginator.next()
|
|
|
|
|
|
|
|
if (result.value?.length) {
|
2022-12-27 17:47:05 +00:00
|
|
|
nextItems.value = preprocess(result.value) as any
|
2022-11-28 11:18:45 +00:00
|
|
|
items.value.push(...nextItems.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
|
|
|
|
2022-11-15 15:56:11 +00:00
|
|
|
await nextTick()
|
|
|
|
bound.update()
|
|
|
|
}
|
|
|
|
|
2022-12-17 16:55:29 +00:00
|
|
|
if (process.client) {
|
|
|
|
useIntervalFn(() => {
|
|
|
|
bound.update()
|
|
|
|
}, 1000)
|
2022-11-15 15:56:11 +00:00
|
|
|
|
2022-12-26 08:34:30 +00:00
|
|
|
if (!isMastoInitialised.value) {
|
2023-01-03 09:53:31 +00:00
|
|
|
onMastoInit(() => {
|
2022-12-26 08:34:30 +00:00
|
|
|
state.value = 'idle'
|
|
|
|
loadNext()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-12-17 16:55:29 +00:00
|
|
|
watch(
|
|
|
|
() => [isInScreen, state],
|
|
|
|
() => {
|
|
|
|
if (
|
|
|
|
isInScreen
|
2022-12-28 21:43:46 +00:00
|
|
|
&& state.value === 'idle'
|
|
|
|
// No new content is loaded when the keepAlive page enters the background
|
|
|
|
&& deactivated.value === false
|
2022-12-17 16:55:29 +00:00
|
|
|
)
|
|
|
|
loadNext()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
2022-11-15 15:56:11 +00:00
|
|
|
|
2022-11-17 07:35:42 +00:00
|
|
|
return {
|
|
|
|
items,
|
2022-11-28 11:18:45 +00:00
|
|
|
prevItems,
|
|
|
|
nextItems,
|
|
|
|
update,
|
2022-11-17 07:35:42 +00:00
|
|
|
state,
|
|
|
|
error,
|
|
|
|
endAnchor,
|
|
|
|
}
|
2022-11-15 15:56:11 +00:00
|
|
|
}
|