2022-11-14 14:54:30 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Status } from 'masto'
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
status: Status
|
|
|
|
}>()
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
const visibility = $computed(() => STATUS_VISIBILITIES.find(v => v.value === status.visibility)!)
|
2022-11-14 14:54:30 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-26 15:38:55 +00:00
|
|
|
<div flex flex-col gap-2 py3 px-4 :id="`status-${status.id}`">
|
2022-11-26 18:59:23 +00:00
|
|
|
<AccountInfo :account="status.account" :hover="true" />
|
2022-11-24 05:47:14 +00:00
|
|
|
<StatusReplyingTo v-if="status.inReplyToAccountId" :status="status" />
|
2022-11-25 12:57:02 +00:00
|
|
|
<StatusSpoiler :enabled="status.sensitive">
|
|
|
|
<template #spoiler>
|
|
|
|
{{ status.spoilerText }}
|
|
|
|
</template>
|
2022-11-26 00:04:31 +00:00
|
|
|
<StatusBody :status="status" :with-action="false" text-2xl />
|
2022-11-25 12:57:02 +00:00
|
|
|
<StatusMedia
|
|
|
|
v-if="status.mediaAttachments?.length"
|
|
|
|
:status="status"
|
|
|
|
/>
|
|
|
|
</StatusSpoiler>
|
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"
|
|
|
|
>
|
|
|
|
<span ml1 font-bold cursor-pointer>(Edited)</span>
|
|
|
|
</StatusEditIndicator>
|
2022-11-26 03:36:18 +00:00
|
|
|
</div>
|
2022-11-26 03:02:26 +00:00
|
|
|
<div>·</div>
|
|
|
|
<CommonTooltip :content="visibility.label" placement="bottom">
|
|
|
|
<div :class="visibility.icon" />
|
|
|
|
</CommonTooltip>
|
|
|
|
<div v-if="status.application?.name">
|
|
|
|
· {{ status.application?.name }}
|
|
|
|
</div>
|
2022-11-14 14:54:30 +00:00
|
|
|
</div>
|
2022-11-23 02:16:31 +00:00
|
|
|
<StatusActions :status="status" border="t base" pt-2 />
|
2022-11-14 14:54:30 +00:00
|
|
|
</div>
|
|
|
|
</template>
|