feat(status): edit history

This commit is contained in:
三咲智子 2022-11-26 13:05:44 +08:00
parent eb3f2ab771
commit 36fc189064
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
11 changed files with 152 additions and 59 deletions

View file

@ -0,0 +1,29 @@
<script setup lang="ts">
import type { StatusEdit } from 'masto'
const { edit } = defineProps<{
edit: StatusEdit
}>()
</script>
<template>
<div px3 py-4 flex="~ col">
<div text-center flex="~ row gap-1">
<AccountInlineInfo :account="edit.account" />
edited {{ useFormattedDateTime(edit.createdAt).value }}
</div>
<div h1px bg="gray/20" my2 />
<StatusSpoiler :enabled="edit.sensitive">
<template #spoiler>
{{ edit.spoilerText }}
</template>
<StatusBody :status="edit" />
<StatusMedia
v-if="edit.mediaAttachments.length"
:status="edit"
/>
</StatusSpoiler>
</div>
</template>