elk/components/status/StatusBody.vue

32 wiersze
758 B
Vue
Czysty Zwykły widok Historia

2022-11-14 02:20:07 +00:00
<script setup lang="ts">
import type { Status } from 'masto'
const { status, withAction = true } = defineProps<{
2022-11-14 02:20:07 +00:00
status: Status
withAction?: boolean
2022-11-14 02:20:07 +00:00
}>()
const { translation } = useTranslation(status)
2022-11-14 02:20:07 +00:00
</script>
<template>
<div class="status-body" whitespace-pre-wrap break-words :class="{ 'with-action': withAction }">
2022-11-27 06:16:02 +00:00
<ContentRich
v-if="status.content"
:content="status.content"
:emojis="status.emojis"
:lang="status.language"
/>
2022-12-23 21:53:21 +00:00
<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>
2022-11-20 21:21:53 +00:00
</div>
2022-11-14 02:20:07 +00:00
</template>
<style>
.status-body.with-action p {
cursor: pointer;
}
</style>