2022-11-25 23:49:56 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-27 00:35:19 +00:00
|
|
|
import type { ComponentPublicInstance } from 'vue'
|
2022-11-25 23:49:56 +00:00
|
|
|
|
2022-11-30 17:15:18 +00:00
|
|
|
definePageMeta({
|
|
|
|
name: 'status',
|
2022-12-11 23:30:26 +00:00
|
|
|
key: route => route.path,
|
2022-11-30 17:15:18 +00:00
|
|
|
})
|
|
|
|
|
2022-11-25 23:49:56 +00:00
|
|
|
const route = useRoute()
|
2022-11-27 17:34:45 +00:00
|
|
|
const id = $(computedEager(() => route.params.status as string))
|
2022-11-27 00:35:19 +00:00
|
|
|
const main = ref<ComponentPublicInstance | null>(null)
|
2022-12-30 16:38:46 +00:00
|
|
|
|
2022-12-14 16:45:46 +00:00
|
|
|
const publishWidget = ref()
|
2022-11-25 23:49:56 +00:00
|
|
|
|
2022-12-26 14:14:48 +00:00
|
|
|
const { data: status, pending, refresh: refreshStatus } = useAsyncData(
|
|
|
|
`status:${id}`,
|
2023-01-02 00:00:13 +00:00
|
|
|
() => fetchStatus(id),
|
2022-12-26 14:14:48 +00:00
|
|
|
{ watch: [isMastoInitialised], immediate: isMastoInitialised.value },
|
2022-11-28 10:23:33 +00:00
|
|
|
)
|
2022-12-25 14:04:50 +00:00
|
|
|
const masto = useMasto()
|
2023-01-04 19:55:57 +00:00
|
|
|
const { data: context, pending: pendingContext, refresh: refreshContext } = useAsyncData(
|
|
|
|
`context:${id}`,
|
2023-01-08 06:21:09 +00:00
|
|
|
async () => masto.v1.statuses.fetchContext(id),
|
2023-01-04 19:55:57 +00:00
|
|
|
{ watch: [isMastoInitialised], immediate: isMastoInitialised.value },
|
|
|
|
)
|
2022-11-27 00:35:19 +00:00
|
|
|
|
2022-11-28 10:23:33 +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
|
|
|
|
|
|
|
|
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()
|
|
|
|
})
|
|
|
|
}
|
2022-11-27 17:34:45 +00:00
|
|
|
|
2022-12-14 16:45:46 +00:00
|
|
|
const focusEditor = () => {
|
|
|
|
publishWidget.value?.focusEditor?.()
|
|
|
|
}
|
|
|
|
|
|
|
|
provide('focus-editor', focusEditor)
|
|
|
|
|
2023-01-07 07:55:07 +00:00
|
|
|
watch(publishWidget, () => {
|
|
|
|
if (window.history.state.focusReply)
|
|
|
|
focusEditor()
|
|
|
|
})
|
|
|
|
|
2022-11-27 17:34:45 +00:00
|
|
|
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()
|
|
|
|
})
|
2022-11-25 23:49:56 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-26 12:58:10 +00:00
|
|
|
<MainContent back>
|
2022-11-28 11:09:38 +00:00
|
|
|
<template v-if="!pending">
|
2023-01-05 12:35:08 +00:00
|
|
|
<div v-if="status" xl:mt-4 border="b base" mb="50vh">
|
2022-12-26 07:37:42 +00:00
|
|
|
<template v-for="comment of context?.ancestors" :key="comment.id">
|
|
|
|
<StatusCard
|
|
|
|
:status="comment" :actions="comment.visibility !== 'direct'" context="account"
|
2022-12-27 23:25:41 +00:00
|
|
|
:has-older="true" :has-newer="true"
|
2022-12-26 07:37:42 +00:00
|
|
|
/>
|
2022-11-25 23:49:56 +00:00
|
|
|
</template>
|
|
|
|
|
2022-11-28 11:09:38 +00:00
|
|
|
<StatusDetails
|
|
|
|
ref="main"
|
|
|
|
:status="status"
|
2022-11-29 08:15:05 +00:00
|
|
|
command
|
2022-11-28 11:09:38 +00:00
|
|
|
style="scroll-margin-top: 60px"
|
2022-12-26 07:37:42 +00:00
|
|
|
:actions="status.visibility !== 'direct'"
|
2022-11-28 11:09:38 +00:00
|
|
|
/>
|
|
|
|
<PublishWidget
|
|
|
|
v-if="currentUser"
|
2022-12-14 16:45:46 +00:00
|
|
|
ref="publishWidget"
|
2022-12-27 18:10:03 +00:00
|
|
|
border="y base"
|
2022-11-28 11:09:38 +00:00
|
|
|
:draft-key="replyDraft!.key"
|
|
|
|
:initial="replyDraft!.draft"
|
2022-12-01 07:24:35 +00:00
|
|
|
@published="refreshContext()"
|
2022-11-28 11:09:38 +00:00
|
|
|
/>
|
2022-11-25 23:49:56 +00:00
|
|
|
|
2022-12-27 21:04:52 +00:00
|
|
|
<template v-for="(comment, di) of context?.descendants" :key="comment.id">
|
2022-12-26 07:37:42 +00:00
|
|
|
<StatusCard
|
2023-01-08 08:27:21 +00:00
|
|
|
:status="comment"
|
|
|
|
:actions="comment.visibility !== 'direct'" context="account"
|
|
|
|
:older="context?.descendants[di + 1]"
|
|
|
|
:newer="context?.descendants[di - 1]"
|
|
|
|
:has-newer="di === 0"
|
|
|
|
:main="status"
|
2022-12-26 07:37:42 +00:00
|
|
|
/>
|
2022-11-25 23:49:56 +00:00
|
|
|
</template>
|
2022-11-28 11:09:38 +00:00
|
|
|
</div>
|
2022-11-25 23:49:56 +00:00
|
|
|
|
2023-01-05 16:48:20 +00:00
|
|
|
<StatusNotFound v-else :account="route.params.account as string" :status="id" />
|
2022-11-28 11:09:38 +00:00
|
|
|
</template>
|
|
|
|
|
2022-12-06 11:07:17 +00:00
|
|
|
<StatusCardSkeleton v-else border="b base" />
|
2022-11-25 23:49:56 +00:00
|
|
|
</MainContent>
|
|
|
|
</template>
|