2022-11-23 00:00:52 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Status } from 'masto'
|
|
|
|
|
|
|
|
const { status } = defineProps<{
|
|
|
|
status: Status
|
|
|
|
}>()
|
|
|
|
|
2022-11-30 07:08:10 +00:00
|
|
|
const account = useAccountById(status.inReplyToAccountId!)
|
2022-11-23 00:00:52 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 08:57:24 +00:00
|
|
|
<NuxtLink
|
|
|
|
v-if="status.inReplyToId"
|
2022-11-26 20:41:18 +00:00
|
|
|
flex="~ wrap" items-center text-sm text-secondary
|
2022-11-30 17:15:18 +00:00
|
|
|
:to="getStatusInReplyToRoute(status)"
|
2022-11-24 08:57:24 +00:00
|
|
|
:title="account ? `Replying to ${getDisplayName(account)}` : 'Replying to someone'"
|
|
|
|
>
|
2022-11-26 20:48:06 +00:00
|
|
|
<div i-ri:reply-fill rotate-180 text-secondary-light class="mr-1.5" />
|
2022-11-24 08:57:24 +00:00
|
|
|
<AccountInlineInfo v-if="account" :account="account" :link="false" />
|
|
|
|
<span v-else>Someone</span>
|
|
|
|
</NuxtLink>
|
2022-11-23 00:00:52 +00:00
|
|
|
</template>
|