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-26 19:06:07 +00:00
|
|
|
const content = $computed(() => translation.visible ? translation.text : status.content)
|
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-26 19:06:07 +00:00
|
|
|
<ContentRich v-if="content"
|
|
|
|
:content="content"
|
2022-11-25 12:10:45 +00:00
|
|
|
:emojis="status.emojis"
|
|
|
|
/>
|
2022-11-26 19:06:07 +00:00
|
|
|
<div v-else h-3 />
|
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>
|