2022-12-26 07:37:42 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2022-12-26 07:37:42 +00:00
|
|
|
|
|
|
|
const { status, context } = defineProps<{
|
2023-01-08 06:21:09 +00:00
|
|
|
status: mastodon.v1.Status
|
2023-01-18 15:59:37 +00:00
|
|
|
newer?: mastodon.v1.Status
|
2023-01-08 06:21:09 +00:00
|
|
|
context?: mastodon.v2.FilterContext | 'details'
|
2023-02-15 10:34:23 +00:00
|
|
|
isPreview?: boolean
|
2023-03-19 20:55:19 +00:00
|
|
|
inNotification?: boolean
|
2022-12-26 07:37:42 +00:00
|
|
|
}>()
|
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const isDM = computed(() => status.visibility === 'direct')
|
|
|
|
const isDetails = computed(() => context === 'details')
|
2022-12-26 07:37:42 +00:00
|
|
|
|
|
|
|
// Content Filter logic
|
2024-02-21 15:20:08 +00:00
|
|
|
const filterResult = computed(() => status.filtered?.length ? status.filtered[0] : null)
|
|
|
|
const filter = computed(() => filterResult.value?.filter)
|
2022-12-26 07:37:42 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const filterPhrase = computed(() => filter.value?.title)
|
|
|
|
const isFiltered = computed(() => status.account.id !== currentUser.value?.account.id && filterPhrase && context && context !== 'details' && !!filter.value?.context.includes(context))
|
2023-02-05 15:05:42 +00:00
|
|
|
|
|
|
|
// check spoiler text or media attachment
|
|
|
|
// needed to handle accounts that mark all their posts as sensitive
|
2024-02-21 15:20:08 +00:00
|
|
|
const spoilerTextPresent = computed(() => !!status.spoilerText && status.spoilerText.trim().length > 0)
|
|
|
|
const hasSpoilerOrSensitiveMedia = computed(() => spoilerTextPresent.value || (status.sensitive && !!status.mediaAttachments.length))
|
2023-05-06 09:26:16 +00:00
|
|
|
const isSensitiveNonSpoiler = computed(() => status.sensitive && !status.spoilerText && !!status.mediaAttachments.length)
|
2023-05-05 16:12:07 +00:00
|
|
|
const hideAllMedia = computed(
|
|
|
|
() => {
|
2023-11-07 09:57:44 +00:00
|
|
|
return currentUser.value ? (getHideMediaByDefault(currentUser.value.account) && (!!status.mediaAttachments.length || !!status.card?.html)) : false
|
2023-05-05 16:12:07 +00:00
|
|
|
},
|
|
|
|
)
|
2024-02-21 15:20:08 +00:00
|
|
|
const embeddedMediaPreference = usePreferences('experimentalEmbeddedMedia')
|
2024-03-04 16:01:56 +00:00
|
|
|
const allowEmbeddedMedia = computed(() => status.card?.html && embeddedMediaPreference.value)
|
2022-12-26 07:37:42 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
space-y-3
|
|
|
|
:class="{
|
2023-01-10 05:58:07 +00:00
|
|
|
'pt2 pb0.5 px3.5 bg-dm rounded-4 me--1': isDM,
|
2023-01-03 16:25:43 +00:00
|
|
|
'ms--3.5 mt--1 ms--1': isDM && context !== 'details',
|
2022-12-26 07:37:42 +00:00
|
|
|
}"
|
|
|
|
>
|
2023-05-05 16:12:07 +00:00
|
|
|
<StatusBody v-if="(!isFiltered && isSensitiveNonSpoiler) || hideAllMedia" :status="status" :newer="newer" :with-action="!isDetails" :class="isDetails ? 'text-xl' : ''" />
|
|
|
|
<StatusSpoiler :enabled="hasSpoilerOrSensitiveMedia || isFiltered" :filter="isFiltered" :sensitive-non-spoiler="isSensitiveNonSpoiler || hideAllMedia" :is-d-m="isDM">
|
2023-05-10 11:17:58 +00:00
|
|
|
<template v-if="spoilerTextPresent" #spoiler>
|
2022-12-29 16:31:04 +00:00
|
|
|
<p>{{ status.spoilerText }}</p>
|
|
|
|
</template>
|
2023-02-05 15:05:42 +00:00
|
|
|
<template v-else-if="filterPhrase" #spoiler>
|
|
|
|
<p>{{ `${$t('status.filter_hidden_phrase')}: ${filterPhrase}` }}</p>
|
|
|
|
</template>
|
2023-05-05 16:12:07 +00:00
|
|
|
<StatusBody v-if="!(isSensitiveNonSpoiler || hideAllMedia)" :status="status" :newer="newer" :with-action="!isDetails" :class="isDetails ? 'text-xl' : ''" />
|
2023-01-16 09:55:00 +00:00
|
|
|
<StatusTranslation :status="status" />
|
2022-12-28 11:49:47 +00:00
|
|
|
<StatusPoll v-if="status.poll" :status="status" />
|
2022-12-26 07:37:42 +00:00
|
|
|
<StatusMedia
|
|
|
|
v-if="status.mediaAttachments?.length"
|
|
|
|
:status="status"
|
2023-02-15 10:34:23 +00:00
|
|
|
:is-preview="isPreview"
|
2022-12-26 07:37:42 +00:00
|
|
|
/>
|
|
|
|
<StatusPreviewCard
|
2023-11-07 09:57:44 +00:00
|
|
|
v-if="status.card && !allowEmbeddedMedia"
|
2022-12-26 07:37:42 +00:00
|
|
|
:card="status.card"
|
|
|
|
:small-picture-only="status.mediaAttachments?.length > 0"
|
|
|
|
/>
|
2023-11-07 09:57:44 +00:00
|
|
|
<StatusEmbeddedMedia v-if="allowEmbeddedMedia" :status="status" />
|
2022-12-26 07:37:42 +00:00
|
|
|
<StatusCard
|
|
|
|
v-if="status.reblog"
|
|
|
|
:status="status.reblog" border="~ rounded"
|
|
|
|
:actions="false"
|
|
|
|
/>
|
|
|
|
<div v-if="isDM" />
|
|
|
|
</StatusSpoiler>
|
|
|
|
</div>
|
|
|
|
</template>
|