2022-11-14 14:54:30 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-14 14:54:30 +00:00
|
|
|
|
2022-12-26 07:37:42 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
status: mastodon.v1.Status
|
2023-01-18 15:59:37 +00:00
|
|
|
newer?: mastodon.v1.Status
|
2022-11-29 08:15:05 +00:00
|
|
|
command?: boolean
|
2022-12-26 07:37:42 +00:00
|
|
|
actions?: boolean
|
|
|
|
}>(), {
|
|
|
|
actions: true,
|
|
|
|
})
|
2022-11-14 14:54:30 +00:00
|
|
|
|
2023-01-14 10:47:15 +00:00
|
|
|
const userSettings = useUserSettings()
|
|
|
|
|
2022-11-14 14:54:30 +00:00
|
|
|
const status = $computed(() => {
|
|
|
|
if (props.status.reblog && props.status.reblog)
|
|
|
|
return props.status.reblog
|
|
|
|
return props.status
|
|
|
|
})
|
|
|
|
|
2022-11-26 03:36:18 +00:00
|
|
|
const createdAt = useFormattedDateTime(status.createdAt)
|
2022-11-26 03:02:26 +00:00
|
|
|
|
2022-12-21 07:46:36 +00:00
|
|
|
const { t } = useI18n()
|
|
|
|
|
|
|
|
useHeadFixed({
|
2023-01-11 17:47:36 +00:00
|
|
|
title: () => `${getDisplayName(status.account)} ${t('common.in')} ${t('app_name')}: "${removeHTMLTags(status.content) || ''}"`,
|
2022-12-21 07:46:36 +00:00
|
|
|
})
|
2022-12-23 21:53:21 +00:00
|
|
|
|
|
|
|
const isDM = $computed(() => status.visibility === 'direct')
|
2022-11-14 14:54:30 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-03 16:25:43 +00:00
|
|
|
<div :id="`status-${status.id}`" flex flex-col gap-2 pt2 pb1 ps-3 pe-4 relative :lang="status.language ?? undefined">
|
2023-01-01 14:29:11 +00:00
|
|
|
<StatusActionsMore :status="status" absolute inset-ie-2 top-2 />
|
|
|
|
<NuxtLink :to="getAccountRoute(status.account)" rounded-full hover:bg-active transition-100 pe5 me-a>
|
2022-11-27 04:45:26 +00:00
|
|
|
<AccountHoverWrapper :account="status.account">
|
|
|
|
<AccountInfo :account="status.account" />
|
|
|
|
</AccountHoverWrapper>
|
|
|
|
</NuxtLink>
|
2023-01-18 15:59:37 +00:00
|
|
|
<StatusContent :status="status" :newer="newer" context="details" />
|
2022-11-26 20:41:18 +00:00
|
|
|
<div flex="~ gap-1" items-center text-secondary text-sm>
|
2022-11-26 03:36:18 +00:00
|
|
|
<div flex>
|
|
|
|
<div>{{ createdAt }}</div>
|
2022-11-26 05:05:44 +00:00
|
|
|
<StatusEditIndicator
|
|
|
|
:status="status"
|
|
|
|
:inline="false"
|
|
|
|
>
|
2023-01-01 14:29:11 +00:00
|
|
|
<span ms1 font-bold cursor-pointer>{{ $t('state.edited') }}</span>
|
2022-11-26 05:05:44 +00:00
|
|
|
</StatusEditIndicator>
|
2022-11-26 03:36:18 +00:00
|
|
|
</div>
|
2022-12-04 18:59:33 +00:00
|
|
|
<div>·</div>
|
2023-01-10 07:14:22 +00:00
|
|
|
<StatusVisibilityIndicator :status="status" />
|
2022-11-26 03:02:26 +00:00
|
|
|
<div v-if="status.application?.name">
|
2022-12-22 13:06:53 +00:00
|
|
|
·
|
|
|
|
</div>
|
2023-01-05 22:57:04 +00:00
|
|
|
<div v-if="status.application?.website && status.application.name">
|
|
|
|
<NuxtLink :to="status.application.website">
|
|
|
|
{{ status.application.name }}
|
|
|
|
</NuxtLink>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="status.application?.name">
|
2022-12-22 13:06:53 +00:00
|
|
|
{{ status.application?.name }}
|
2022-11-26 03:02:26 +00:00
|
|
|
</div>
|
2022-11-14 14:54:30 +00:00
|
|
|
</div>
|
2023-01-15 14:20:44 +00:00
|
|
|
<div border="t base" py-2>
|
|
|
|
<StatusActions v-if="actions" :status="status" details :command="command" />
|
2022-12-26 07:37:42 +00:00
|
|
|
</div>
|
2022-11-14 14:54:30 +00:00
|
|
|
</div>
|
|
|
|
</template>
|