2022-11-14 03:20:07 +01:00
|
|
|
<script setup lang="ts">
|
2023-01-05 17:48:20 +01:00
|
|
|
import type { Status, StatusEdit } from 'masto'
|
2022-11-14 03:20:07 +01:00
|
|
|
|
2022-11-26 01:04:31 +01:00
|
|
|
const { status, withAction = true } = defineProps<{
|
2023-01-05 17:48:20 +01:00
|
|
|
status: Status | StatusEdit
|
2022-11-26 01:04:31 +01:00
|
|
|
withAction?: boolean
|
2022-11-14 03:20:07 +01:00
|
|
|
}>()
|
2023-01-05 17:48:20 +01:00
|
|
|
|
2022-11-25 01:14:16 +01:00
|
|
|
const { translation } = useTranslation(status)
|
2022-11-14 03:20:07 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-05 17:49:08 +01:00
|
|
|
<div class="status-body mt2" whitespace-pre-wrap break-words :class="{ 'with-action': withAction }">
|
2022-11-27 07:16:02 +01:00
|
|
|
<ContentRich
|
2022-11-27 17:54:11 +01:00
|
|
|
v-if="status.content"
|
2023-01-03 12:35:31 +01:00
|
|
|
class="line-compact"
|
2022-11-27 17:54:11 +01:00
|
|
|
:content="status.content"
|
2022-11-25 13:10:45 +01:00
|
|
|
:emojis="status.emojis"
|
2023-01-05 17:48:20 +01:00
|
|
|
:lang="'language' in status && status.language"
|
2022-11-25 13:10:45 +01:00
|
|
|
/>
|
2022-12-23 22:53:21 +01:00
|
|
|
<div v-else />
|
2022-11-27 17:54:11 +01:00
|
|
|
<template v-if="translation.visible">
|
|
|
|
<div my2 h-px border="b base" bg-base />
|
2023-01-03 12:35:31 +01:00
|
|
|
<ContentRich class="line-compact" :content="translation.text" :emojis="status.emojis" />
|
2022-11-27 17:54:11 +01:00
|
|
|
</template>
|
2022-11-20 22:21:53 +01:00
|
|
|
</div>
|
2022-11-14 03:20:07 +01:00
|
|
|
</template>
|
2022-11-26 01:04:31 +01:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.status-body.with-action p {
|
|
|
|
cursor: pointer;
|
2023-01-05 17:49:08 +01:00
|
|
|
min-height: 2rem;
|
2022-11-26 01:04:31 +01:00
|
|
|
}
|
|
|
|
</style>
|