2022-11-23 00:00:52 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-23 00:00:52 +00:00
|
|
|
|
2023-01-08 08:27:21 +00:00
|
|
|
const {
|
|
|
|
status,
|
|
|
|
isSelfReply = false,
|
|
|
|
} = defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
status: mastodon.v1.Status
|
2023-01-08 08:27:21 +00:00
|
|
|
isSelfReply: boolean
|
2022-11-23 00:00:52 +00:00
|
|
|
}>()
|
|
|
|
|
2022-12-29 13:11:05 +00:00
|
|
|
const isSelf = $computed(() => status.inReplyToAccountId === status.account.id)
|
|
|
|
const account = isSelf ? computed(() => status.account) : useAccountById(status.inReplyToAccountId)
|
2022-11-23 00:00:52 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-08 08:27:21 +00:00
|
|
|
<NuxtLink
|
|
|
|
v-if="status.inReplyToId"
|
|
|
|
flex="~ gap2" items-center h-auto text-sm text-secondary
|
|
|
|
:to="getStatusInReplyToRoute(status)"
|
2023-01-08 09:03:23 +00:00
|
|
|
:title="$t('status.replying_to', [account ? getDisplayName(account) : $t('status.someone')])"
|
|
|
|
text-blue saturate-50 hover:saturate-100
|
2023-01-08 08:27:21 +00:00
|
|
|
>
|
|
|
|
<template v-if="isSelfReply">
|
2023-01-08 09:03:23 +00:00
|
|
|
<div i-ri-discuss-line text-blue />
|
|
|
|
<span>{{ $t('status.show_full_thread') }}</span>
|
2023-01-08 08:27:21 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2023-01-08 09:03:23 +00:00
|
|
|
<div i-ri-chat-1-line text-blue />
|
2023-02-07 08:12:30 +00:00
|
|
|
<div ws-nowrap>
|
|
|
|
<i18n-t keypath="status.replying_to" />
|
|
|
|
</div>
|
|
|
|
<template v-if="account">
|
|
|
|
<AccountInlineInfo :account="account" :link="false" />
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
{{ $t('status.someone') }}
|
|
|
|
</template>
|
2023-01-08 08:27:21 +00:00
|
|
|
</template>
|
|
|
|
</NuxtLink>
|
2022-11-23 00:00:52 +00:00
|
|
|
</template>
|