2024-01-09 08:56:15 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2023-01-15 08:38:02 +00:00
|
|
|
import type { Ref } from 'vue'
|
2022-11-16 16:11:08 +00:00
|
|
|
import type { PaginatorState } from '~/types'
|
2022-11-15 15:56:11 +00:00
|
|
|
|
2023-01-09 12:23:15 +00:00
|
|
|
export function usePaginator<T, P, U = T>(
|
2024-01-09 08:56:15 +00:00
|
|
|
_paginator: mastodon.Paginator<T[], P>,
|
|
|
|
stream: Ref<mastodon.streaming.Subscription | undefined>,
|
2023-01-09 15:39:59 +00:00
|
|
|
preprocess: (items: (T | U)[]) => U[] = items => items as unknown as U[],
|
2023-01-08 16:04:26 +00:00
|
|
|
buffer = 10,
|
2022-12-27 17:47:05 +00:00
|
|
|
) {
|
2023-01-10 06:10:20 +00:00
|
|
|
// called `next` method will mutate the internal state of the variable,
|
|
|
|
// and we need its initial state after HMR
|
2023-01-09 17:43:28 +00:00
|
|
|
// so clone it
|
2023-01-10 06:10:20 +00:00
|
|
|
const paginator = _paginator.clone()
|
2023-01-09 17:43:28 +00:00
|
|
|
|
2023-01-15 08:38:02 +00:00
|
|
|
const state = ref<PaginatorState>(isHydrated.value ? 'idle' : 'loading')
|
2023-01-09 15:04:09 +00:00
|
|
|
const items = ref<U[]>([])
|
|
|
|
const nextItems = ref<U[]>([])
|
2022-11-28 11:18:45 +00:00
|
|
|
const prevItems = ref<T[]>([])
|
2022-11-15 15:56:11 +00:00
|
|
|
|
|
|
|
const endAnchor = ref<HTMLDivElement>()
|
2024-02-21 15:20:08 +00:00
|
|
|
const bound = useElementBounding(endAnchor)
|
|
|
|
const isInScreen = computed(() => bound.top.value < 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() {
|
2023-01-09 15:04:09 +00:00
|
|
|
(items.value as U[]).unshift(...preprocess(prevItems.value as T[]))
|
2022-11-28 11:18:45 +00:00
|
|
|
prevItems.value = []
|
|
|
|
}
|
|
|
|
|
2024-02-24 14:51:51 +00:00
|
|
|
watch(stream, async (stream) => {
|
|
|
|
if (!stream)
|
2024-01-09 08:56:15 +00:00
|
|
|
return
|
|
|
|
|
2024-02-24 14:51:51 +00:00
|
|
|
for await (const entry of stream) {
|
2024-01-09 08:56:15 +00:00
|
|
|
if (entry.event === 'update') {
|
|
|
|
const status = entry.payload
|
|
|
|
|
|
|
|
if ('uri' in entry)
|
2023-01-15 08:38:02 +00:00
|
|
|
cacheStatus(status, undefined, true)
|
2022-12-25 14:52:37 +00:00
|
|
|
|
2023-01-15 08:38:02 +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
|
|
|
|
2023-01-15 08:38:02 +00:00
|
|
|
prevItems.value.unshift(status as any)
|
2024-01-09 08:56:15 +00:00
|
|
|
}
|
|
|
|
else if (entry.event === 'status.update') {
|
|
|
|
const status = entry.payload
|
2023-01-15 08:38:02 +00:00
|
|
|
cacheStatus(status, undefined, true)
|
2022-12-25 14:52:37 +00:00
|
|
|
|
2023-01-15 08:38:02 +00:00
|
|
|
const data = items.value as mastodon.v1.Status[]
|
|
|
|
const index = data.findIndex(s => s.id === status.id)
|
|
|
|
if (index >= 0)
|
|
|
|
data[index] = status
|
2024-01-09 08:56:15 +00:00
|
|
|
}
|
2022-11-28 11:18:45 +00:00
|
|
|
|
2024-01-09 08:56:15 +00:00
|
|
|
else if (entry.event === 'delete') {
|
|
|
|
const id = entry.payload
|
2023-01-15 08:38:02 +00:00
|
|
|
removeCachedStatus(id)
|
2022-12-25 14:52:37 +00:00
|
|
|
|
2023-01-15 08:38:02 +00:00
|
|
|
const data = items.value as mastodon.v1.Status[]
|
|
|
|
const index = data.findIndex(s => s.id === id)
|
|
|
|
if (index >= 0)
|
|
|
|
data.splice(index, 1)
|
2024-01-09 08:56:15 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-15 08:38:02 +00:00
|
|
|
}, { immediate: true })
|
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()
|
|
|
|
|
2023-01-09 15:39:59 +00:00
|
|
|
if (!result.done && result.value.length) {
|
|
|
|
const preprocessedItems = preprocess([...nextItems.value, ...result.value] as (U | T)[])
|
2023-01-09 15:20:54 +00:00
|
|
|
const itemsToShowCount
|
2023-01-09 17:22:20 +00:00
|
|
|
= preprocessedItems.length <= buffer
|
2023-01-09 15:20:54 +00:00
|
|
|
? preprocessedItems.length
|
|
|
|
: preprocessedItems.length - buffer
|
2023-01-09 15:39:59 +00:00
|
|
|
;(nextItems.value as U[]) = preprocessedItems.slice(itemsToShowCount)
|
|
|
|
;(items.value as U[]).push(...preprocessedItems.slice(0, itemsToShowCount))
|
2022-11-17 07:35:42 +00:00
|
|
|
state.value = 'idle'
|
|
|
|
}
|
|
|
|
else {
|
2023-01-08 20:03:17 +00:00
|
|
|
items.value.push(...nextItems.value)
|
|
|
|
nextItems.value = []
|
2022-11-17 07:35:42 +00:00
|
|
|
state.value = 'done'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
2023-01-12 05:39:22 +00:00
|
|
|
console.error(e)
|
|
|
|
|
2022-11-17 07:35:42 +00:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2024-02-24 16:46:14 +00:00
|
|
|
if (import.meta.client) {
|
2022-12-17 16:55:29 +00:00
|
|
|
useIntervalFn(() => {
|
|
|
|
bound.update()
|
|
|
|
}, 1000)
|
2022-11-15 15:56:11 +00:00
|
|
|
|
2023-01-15 08:38:02 +00:00
|
|
|
if (!isHydrated.value) {
|
|
|
|
onHydrated(() => {
|
2022-12-26 08:34:30 +00:00
|
|
|
state.value = 'idle'
|
|
|
|
loadNext()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
watchEffect(
|
2022-12-17 16:55:29 +00:00
|
|
|
() => {
|
|
|
|
if (
|
2024-02-21 15:20:08 +00:00
|
|
|
isInScreen.value
|
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,
|
|
|
|
update,
|
2022-11-17 07:35:42 +00:00
|
|
|
state,
|
|
|
|
error,
|
|
|
|
endAnchor,
|
|
|
|
}
|
2022-11-15 15:56:11 +00:00
|
|
|
}
|