2022-11-14 02:20:07 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-14 02:20:07 +00:00
|
|
|
|
2023-01-07 09:31:48 +00:00
|
|
|
const {
|
|
|
|
status,
|
|
|
|
withAction = true,
|
|
|
|
} = defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
status: mastodon.v1.Status | mastodon.v1.StatusEdit
|
2022-11-26 00:04:31 +00:00
|
|
|
withAction?: boolean
|
2022-11-14 02:20:07 +00:00
|
|
|
}>()
|
2023-01-05 16:48:20 +00:00
|
|
|
|
2022-11-25 00:14:16 +00:00
|
|
|
const { translation } = useTranslation(status)
|
2023-01-07 09:31:48 +00:00
|
|
|
|
|
|
|
const emojisObject = useEmojisFallback(() => status.emojis)
|
|
|
|
const vnode = $computed(() => {
|
|
|
|
if (!status.content)
|
|
|
|
return null
|
|
|
|
const vnode = contentToVNode(status.content, {
|
|
|
|
emojis: emojisObject.value,
|
2023-01-11 17:18:06 +00:00
|
|
|
mentions: 'mentions' in status ? status.mentions : undefined,
|
2023-01-07 09:31:48 +00:00
|
|
|
markdown: true,
|
|
|
|
})
|
|
|
|
return vnode
|
|
|
|
})
|
2022-11-14 02:20:07 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-06 10:59:03 +00:00
|
|
|
<div class="status-body" whitespace-pre-wrap break-words :class="{ 'with-action': withAction }">
|
2023-01-07 09:31:48 +00:00
|
|
|
<span
|
2022-11-27 16:54:11 +00:00
|
|
|
v-if="status.content"
|
2023-01-07 09:31:48 +00:00
|
|
|
class="content-rich line-compact" dir="auto"
|
|
|
|
:lang="('language' in status && status.language) || undefined"
|
|
|
|
>
|
|
|
|
<component :is="vnode" />
|
|
|
|
</span>
|
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 />
|
2023-01-03 11:35:31 +00:00
|
|
|
<ContentRich class="line-compact" :content="translation.text" :emojis="status.emojis" />
|
2022-11-27 16:54:11 +00:00
|
|
|
</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>
|