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