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