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 id = $(computedEager(() => route.params.status as string))
|
||||||
const main = ref<ComponentPublicInstance | null>(null)
|
const main = ref<ComponentPublicInstance | null>(null)
|
||||||
|
|
||||||
const publishWidget = ref()
|
|
||||||
|
|
||||||
const { data: status, pending, refresh: refreshStatus } = useAsyncData(
|
const { data: status, pending, refresh: refreshStatus } = useAsyncData(
|
||||||
`status:${id}`,
|
`status:${id}`,
|
||||||
() => fetchStatus(id),
|
() => fetchStatus(id),
|
||||||
|
@ -28,9 +26,15 @@ const { data: context, pending: pendingContext, refresh: refreshContext } = useA
|
||||||
{ watch: [isHydrated], immediate: isHydrated.value, lazy: true, default: () => shallowRef() },
|
{ 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)
|
const statusElement = unrefElement(main)
|
||||||
if (!statusElement)
|
if (!statusElement)
|
||||||
return
|
return
|
||||||
|
@ -38,18 +42,8 @@ function scrollTo() {
|
||||||
statusElement.scrollIntoView(true)
|
statusElement.scrollIntoView(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(scrollTo)
|
const publishWidget = ref()
|
||||||
|
const focusEditor = () => publishWidget.value?.focusEditor?.()
|
||||||
if (pendingContext) {
|
|
||||||
watchOnce(pendingContext, async () => {
|
|
||||||
await nextTick()
|
|
||||||
scrollTo()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const focusEditor = () => {
|
|
||||||
publishWidget.value?.focusEditor?.()
|
|
||||||
}
|
|
||||||
|
|
||||||
provide('focus-editor', focusEditor)
|
provide('focus-editor', focusEditor)
|
||||||
|
|
||||||
|
@ -58,6 +52,8 @@ watch(publishWidget, () => {
|
||||||
focusEditor()
|
focusEditor()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const replyDraft = $computed(() => status.value ? getReplyDraft(status.value) : null)
|
||||||
|
|
||||||
onReactivated(() => {
|
onReactivated(() => {
|
||||||
// Silently update data when reentering the page
|
// 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
|
// The user will see the previous content first, and any changes will be updated to the UI when the request is completed
|
||||||
|
@ -68,55 +64,60 @@ onReactivated(() => {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<MainContent back>
|
<MainContent back>
|
||||||
<template v-if="!pending && !pendingContext">
|
<template v-if="!pending">
|
||||||
<div v-if="status" xl:mt-4 border="b base" mb="50vh">
|
<template v-if="status">
|
||||||
<template v-for="comment, i of context?.ancestors" :key="comment.id">
|
<div xl:mt-4 mb="50vh" border="b base">
|
||||||
<StatusCard
|
<template v-if="!pendingContext">
|
||||||
:status="comment" :actions="comment.visibility !== 'direct'" context="account"
|
|
||||||
:has-older="true" :newer="context?.ancestors[i - 1]"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<StatusDetails
|
|
||||||
ref="main"
|
|
||||||
:status="status"
|
|
||||||
:newer="context?.ancestors.at(-1)"
|
|
||||||
command
|
|
||||||
style="scroll-margin-top: 60px"
|
|
||||||
/>
|
|
||||||
<PublishWidget
|
|
||||||
v-if="currentUser"
|
|
||||||
ref="publishWidget"
|
|
||||||
border="y base"
|
|
||||||
:draft-key="replyDraft!.key"
|
|
||||||
:initial="replyDraft!.draft"
|
|
||||||
@published="refreshContext()"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<TimelineSkeleton v-if="pendingContext" />
|
|
||||||
<DynamicScroller
|
|
||||||
v-slot="{ item, index, active }"
|
|
||||||
:items="context?.descendants || []"
|
|
||||||
:min-item-size="200"
|
|
||||||
key-field="id"
|
|
||||||
page-mode
|
|
||||||
>
|
|
||||||
<DynamicScrollerItem :item="item" :active="active">
|
|
||||||
<StatusCard
|
<StatusCard
|
||||||
:status="item"
|
v-for="comment, i of context?.ancestors" :key="comment.id"
|
||||||
context="account"
|
:status="comment" :actions="comment.visibility !== 'direct'" context="account"
|
||||||
:older="context?.descendants[index + 1]"
|
:has-older="true" :newer="context?.ancestors[i - 1]"
|
||||||
:newer="index > 0 ? context?.descendants[index - 1] : status"
|
|
||||||
:has-newer="index === 0"
|
|
||||||
:main="status"
|
|
||||||
/>
|
/>
|
||||||
</DynamicScrollerItem>
|
</template>
|
||||||
</DynamicScroller>
|
|
||||||
</div>
|
<StatusDetails
|
||||||
|
ref="main"
|
||||||
|
:status="status"
|
||||||
|
:newer="context?.ancestors.at(-1)"
|
||||||
|
command
|
||||||
|
style="scroll-margin-top: 60px"
|
||||||
|
/>
|
||||||
|
<PublishWidget
|
||||||
|
v-if="currentUser"
|
||||||
|
ref="publishWidget"
|
||||||
|
border="y base"
|
||||||
|
:draft-key="replyDraft!.key"
|
||||||
|
:initial="replyDraft!.draft"
|
||||||
|
@published="refreshContext()"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<template v-if="!pendingContext">
|
||||||
|
<DynamicScroller
|
||||||
|
v-slot="{ item, index, active }"
|
||||||
|
:items="context?.descendants || []"
|
||||||
|
:min-item-size="200"
|
||||||
|
key-field="id"
|
||||||
|
page-mode
|
||||||
|
>
|
||||||
|
<DynamicScrollerItem :item="item" :active="active">
|
||||||
|
<StatusCard
|
||||||
|
:status="item"
|
||||||
|
context="account"
|
||||||
|
:older="context?.descendants[index + 1]"
|
||||||
|
:newer="index > 0 ? context?.descendants[index - 1] : status"
|
||||||
|
:has-newer="index === 0"
|
||||||
|
:main="status"
|
||||||
|
/>
|
||||||
|
</DynamicScrollerItem>
|
||||||
|
</DynamicScroller>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<StatusNotFound v-else :account="route.params.account as string" :status="id" />
|
<StatusNotFound v-else :account="route.params.account as string" :status="id" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<StatusCardSkeleton v-else border="b base" />
|
<StatusCardSkeleton v-else border="b base" />
|
||||||
|
<TimelineSkeleton v-if="pending || pendingContext" />
|
||||||
</MainContent>
|
</MainContent>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue