Skip to content

Commit

Permalink
fix(ui): avoid fetching status account in replying to until visible (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin authored Mar 4, 2024
1 parent 308b50c commit 9f04e17
Showing 1 changed file with 40 additions and 6 deletions.
46 changes: 40 additions & 6 deletions components/status/StatusReplyingTo.vue
Original file line number Diff line number Diff line change
@@ -1,21 +1,55 @@
<script setup lang="ts">
import type { mastodon } from 'masto'
import { fetchAccountById } from '~/composables/cache'
const {
status,
isSelfReply = false,
} = defineProps<{
type WatcherType = [status?: mastodon.v1.Status, v?: boolean]
const props = defineProps<{
status: mastodon.v1.Status
isSelfReply: boolean
}>()
const isSelf = computed(() => status.inReplyToAccountId === status.account.id)
const account = isSelf.value ? computed(() => status.account) : useAccountById(status.inReplyToAccountId)
const link = ref()
const targetIsVisible = ref(false)
const isSelf = computed(() => props.status.inReplyToAccountId === props.status.account.id)
const account = ref<mastodon.v1.Account | null | undefined>(isSelf.value ? props.status.account : undefined)
useIntersectionObserver(
link,
([{ intersectionRatio }]) => {
targetIsVisible.value = intersectionRatio > 0.1
},
)
watch(
() => [props.status, targetIsVisible.value] satisfies WatcherType,
([newStatus, newVisible]) => {
if (newStatus.account) {
account.value = newStatus.account
return
}
if (!newVisible)
return
const newId = newStatus.inReplyToAccountId
if (newId) {
fetchAccountById(newStatus.inReplyToAccountId).then((acc) => {
if (newId === props.status.inReplyToAccountId)
account.value = acc
})
return
}
account.value = undefined
}, { immediate: true, flush: 'post' },
)
</script>

<template>
<NuxtLink
v-if="status.inReplyToId"
ref="link"
flex="~ gap2" items-center h-auto text-sm text-secondary
:to="getStatusInReplyToRoute(status)"
:title="$t('status.replying_to', [account ? getDisplayName(account) : $t('status.someone')])"
Expand Down

0 comments on commit 9f04e17

Please sign in to comment.