fix(ui): avoid fetching status account in replying to until visible (#2638)

pull/2332/head^2
Joaquín Sánchez 2024-03-04 20:55:02 +01:00 zatwierdzone przez GitHub
rodzic 308b50cbad
commit 9f04e17e57
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 40 dodań i 6 usunięć

Wyświetl plik

@ -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')])"