mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-10 19:09:58 +00:00
fix: better loading handling on status page (#1729)
Co-authored-by: Michel EDIGHOFFER <edimitchel@gmail.com>
This commit is contained in:
parent
76efc724eb
commit
ff070ea9da
1 changed files with 60 additions and 59 deletions
|
@ -14,8 +14,6 @@ const route = useRoute()
|
|||
const id = $(computedEager(() => route.params.status as string))
|
||||
const main = ref<ComponentPublicInstance | null>(null)
|
||||
|
||||
const publishWidget = ref()
|
||||
|
||||
const { data: status, pending, refresh: refreshStatus } = useAsyncData(
|
||||
`status:${id}`,
|
||||
() => fetchStatus(id),
|
||||
|
@ -28,9 +26,15 @@ const { data: context, pending: pendingContext, refresh: refreshContext } = useA
|
|||
{ watch: [isHydrated], immediate: isHydrated.value, lazy: true, default: () => shallowRef() },
|
||||
)
|
||||
|
||||
const replyDraft = $computed(() => status.value ? getReplyDraft(status.value) : null)
|
||||
if (pendingContext)
|
||||
watchOnce(pendingContext, scrollTo)
|
||||
|
||||
if (pending)
|
||||
watchOnce(pending, scrollTo)
|
||||
|
||||
async function scrollTo() {
|
||||
await nextTick()
|
||||
|
||||
function scrollTo() {
|
||||
const statusElement = unrefElement(main)
|
||||
if (!statusElement)
|
||||
return
|
||||
|
@ -38,18 +42,8 @@ function scrollTo() {
|
|||
statusElement.scrollIntoView(true)
|
||||
}
|
||||
|
||||
onMounted(scrollTo)
|
||||
|
||||
if (pendingContext) {
|
||||
watchOnce(pendingContext, async () => {
|
||||
await nextTick()
|
||||
scrollTo()
|
||||
})
|
||||
}
|
||||
|
||||
const focusEditor = () => {
|
||||
publishWidget.value?.focusEditor?.()
|
||||
}
|
||||
const publishWidget = ref()
|
||||
const focusEditor = () => publishWidget.value?.focusEditor?.()
|
||||
|
||||
provide('focus-editor', focusEditor)
|
||||
|
||||
|
@ -58,6 +52,8 @@ watch(publishWidget, () => {
|
|||
focusEditor()
|
||||
})
|
||||
|
||||
const replyDraft = $computed(() => status.value ? getReplyDraft(status.value) : null)
|
||||
|
||||
onReactivated(() => {
|
||||
// Silently update data when reentering the page
|
||||
// The user will see the previous content first, and any changes will be updated to the UI when the request is completed
|
||||
|
@ -68,10 +64,12 @@ onReactivated(() => {
|
|||
|
||||
<template>
|
||||
<MainContent back>
|
||||
<template v-if="!pending && !pendingContext">
|
||||
<div v-if="status" xl:mt-4 border="b base" mb="50vh">
|
||||
<template v-for="comment, i of context?.ancestors" :key="comment.id">
|
||||
<template v-if="!pending">
|
||||
<template v-if="status">
|
||||
<div xl:mt-4 mb="50vh" border="b base">
|
||||
<template v-if="!pendingContext">
|
||||
<StatusCard
|
||||
v-for="comment, i of context?.ancestors" :key="comment.id"
|
||||
:status="comment" :actions="comment.visibility !== 'direct'" context="account"
|
||||
:has-older="true" :newer="context?.ancestors[i - 1]"
|
||||
/>
|
||||
|
@ -93,7 +91,7 @@ onReactivated(() => {
|
|||
@published="refreshContext()"
|
||||
/>
|
||||
|
||||
<TimelineSkeleton v-if="pendingContext" />
|
||||
<template v-if="!pendingContext">
|
||||
<DynamicScroller
|
||||
v-slot="{ item, index, active }"
|
||||
:items="context?.descendants || []"
|
||||
|
@ -112,11 +110,14 @@ onReactivated(() => {
|
|||
/>
|
||||
</DynamicScrollerItem>
|
||||
</DynamicScroller>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<StatusNotFound v-else :account="route.params.account as string" :status="id" />
|
||||
</template>
|
||||
|
||||
<StatusCardSkeleton v-else border="b base" />
|
||||
<TimelineSkeleton v-if="pending || pendingContext" />
|
||||
</MainContent>
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue