mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
5c60497421
Co-authored-by: Daniel Roe <daniel@roe.dev>
54 lines
1.5 KiB
Vue
54 lines
1.5 KiB
Vue
<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
|
|
})
|
|
|
|
const createdAt = useFormattedDateTime(status.createdAt)
|
|
|
|
const visibility = $computed(() => STATUS_VISIBILITIES.find(v => v.value === status.visibility)!)
|
|
</script>
|
|
|
|
<template>
|
|
<div flex flex-col gap-2 py3 px-4 :id="`status-${status.id}`">
|
|
<AccountInfo :account="status.account" />
|
|
<StatusReplyingTo v-if="status.inReplyToAccountId" :status="status" />
|
|
<StatusSpoiler :enabled="status.sensitive">
|
|
<template #spoiler>
|
|
{{ status.spoilerText }}
|
|
</template>
|
|
<StatusBody :status="status" :with-action="false" text-2xl />
|
|
<StatusMedia
|
|
v-if="status.mediaAttachments?.length"
|
|
:status="status"
|
|
/>
|
|
</StatusSpoiler>
|
|
<div flex="~ gap-1" items-center op50 text-sm>
|
|
<div flex>
|
|
<div>{{ createdAt }}</div>
|
|
<StatusEditIndicator
|
|
:status="status"
|
|
:inline="false"
|
|
>
|
|
<span ml1 font-bold cursor-pointer>(Edited)</span>
|
|
</StatusEditIndicator>
|
|
</div>
|
|
<div>·</div>
|
|
<CommonTooltip :content="visibility.label" placement="bottom">
|
|
<div :class="visibility.icon" />
|
|
</CommonTooltip>
|
|
<div v-if="status.application?.name">
|
|
· {{ status.application?.name }}
|
|
</div>
|
|
</div>
|
|
<StatusActions :status="status" border="t base" pt-2 />
|
|
</div>
|
|
</template>
|