elk/components/status/StatusBody.vue

18 lines
394 B
Vue
Raw Normal View History

2022-11-14 03:20:07 +01:00
<script setup lang="ts">
import type { Status } from 'masto'
2022-11-20 22:21:53 +01:00
const { status } = defineProps<{
2022-11-14 03:20:07 +01:00
status: Status
}>()
const { translation } = useTranslation(status)
2022-11-14 03:20:07 +01:00
</script>
<template>
2022-11-25 09:43:47 +01:00
<div class="status-body" whitespace-pre-wrap break-words>
<ContentRich
:content="translation.visible ? translation.text : status.content"
:emojis="status.emojis"
/>
2022-11-20 22:21:53 +01:00
</div>
2022-11-14 03:20:07 +01:00
</template>