elk/pages/@[account]/[status].vue

89 lines
2.5 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import type { Status } from 'masto'
2022-11-27 00:35:19 +00:00
import type { ComponentPublicInstance } from 'vue'
definePageMeta({
name: 'status',
})
const route = useRoute()
const id = $(computedEager(() => route.params.status as string))
2022-11-27 00:35:19 +00:00
const main = ref<ComponentPublicInstance | null>(null)
let bottomSpace = $ref(0)
const { data: status, pending, refresh: refreshStatus } = useAsyncData(`status:${id}`, async () => (
window.history.state?.status as Status | undefined)
?? await fetchStatus(id),
)
2022-11-28 11:09:38 +00:00
const { data: context, pending: pendingContext, refresh: refreshContext } = useAsyncData(`context:${id}`, () => useMasto().statuses.fetchContext(id))
2022-11-27 00:35:19 +00:00
const replyDraft = $computed(() => status.value ? getReplyDraft(status.value) : null)
2022-11-27 00:35:19 +00:00
function scrollTo() {
const statusElement = unrefElement(main)
if (!statusElement)
return
const statusRect = statusElement.getBoundingClientRect()
bottomSpace = window.innerHeight - statusRect.height
statusElement.scrollIntoView(true)
}
onMounted(scrollTo)
2022-11-28 11:09:38 +00:00
if (pendingContext) {
watchOnce(pendingContext, async () => {
2022-11-27 00:35:19 +00:00
await nextTick()
scrollTo()
})
}
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
refreshStatus()
refreshContext()
})
</script>
<template>
2022-11-26 12:58:10 +00:00
<MainContent back>
2022-11-28 11:09:38 +00:00
<template v-if="!pending">
<div v-if="status" min-h-100vh>
<template v-if="context">
<template v-for="comment of context?.ancestors" :key="comment.id">
<StatusCard :status="comment" border="t base" py3 />
</template>
</template>
2022-11-28 11:09:38 +00:00
<StatusDetails
ref="main"
:status="status"
command
2022-11-28 11:09:38 +00:00
border="t base"
style="scroll-margin-top: 60px"
/>
<PublishWidget
v-if="currentUser"
:draft-key="replyDraft!.key"
:initial="replyDraft!.draft"
border="t base"
2022-12-01 07:24:35 +00:00
@published="refreshContext()"
2022-11-28 11:09:38 +00:00
/>
2022-11-28 11:09:38 +00:00
<template v-if="context">
<template v-for="comment of context?.descendants" :key="comment.id">
<StatusCard :status="comment" border="t base" py3 />
</template>
</template>
2022-11-27 00:35:19 +00:00
2022-11-28 11:09:38 +00:00
<div border="t base" :style="{ height: `${bottomSpace}px` }" />
</div>
<StatusNotFound v-else :account="$route.params.account" :status="id" />
2022-11-28 11:09:38 +00:00
</template>
<StatusCardSkeleton v-else border="b base" py-3 />
</MainContent>
</template>