elk/components/status/StatusBody.vue
2022-12-23 22:53:21 +01:00

32 lines
758 B
Vue

<script setup lang="ts">
import type { Status } from 'masto'
const { status, withAction = true } = defineProps<{
status: Status
withAction?: boolean
}>()
const { translation } = useTranslation(status)
</script>
<template>
<div class="status-body" whitespace-pre-wrap break-words :class="{ 'with-action': withAction }">
<ContentRich
v-if="status.content"
:content="status.content"
:emojis="status.emojis"
:lang="status.language"
/>
<div v-else />
<template v-if="translation.visible">
<div my2 h-px border="b base" bg-base />
<ContentRich :content="translation.text" :emojis="status.emojis" />
</template>
</div>
</template>
<style>
.status-body.with-action p {
cursor: pointer;
}
</style>