mirror of https://github.com/elk-zone/elk.git
34 lines
858 B
Vue
34 lines
858 B
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 formatter = Intl.DateTimeFormat(undefined, { dateStyle: 'long' })
|
||
|
const date = computed(() => formatter.format(new Date(status.createdAt)))
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div flex flex-col gap-2 my-4 px-4>
|
||
|
<AccountInfo :account="status.account" />
|
||
|
<StatusBody :status="status" text-xl />
|
||
|
<StatusMedia
|
||
|
v-if="status.mediaAttachments?.length"
|
||
|
:status="status"
|
||
|
/>
|
||
|
<div>
|
||
|
<span op50 text-sm>
|
||
|
{{ date }} · {{ status.application?.name || 'Unknown client' }}
|
||
|
</span>
|
||
|
</div>
|
||
|
<StatusActions :status="status" border="t border" pt-2 />
|
||
|
</div>
|
||
|
</template>
|