9da77637b2
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
47 lines
1.8 KiB
Vue
47 lines
1.8 KiB
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
enabled?: boolean
|
|
filter?: boolean
|
|
isDM?: boolean
|
|
sensitiveNonSpoiler?: boolean
|
|
}>()
|
|
|
|
const expandSpoilers = computed(() => {
|
|
const expandCW = currentUser.value ? getExpandSpoilersByDefault(currentUser.value.account) : false
|
|
const expandMedia = currentUser.value ? getExpandMediaByDefault(currentUser.value.account) : false
|
|
|
|
return !props.filter // always prevent expansion if filtered
|
|
&& ((props.sensitiveNonSpoiler && expandMedia)
|
|
|| (!props.sensitiveNonSpoiler && expandCW))
|
|
})
|
|
|
|
const hideContent = props.enabled || props.sensitiveNonSpoiler
|
|
const showContent = ref(expandSpoilers.value ? true : !hideContent)
|
|
const toggleContent = useToggle(showContent)
|
|
|
|
watchEffect(() => {
|
|
showContent.value = expandSpoilers.value ? true : !hideContent
|
|
})
|
|
function getToggleText() {
|
|
if (props.sensitiveNonSpoiler)
|
|
return 'status.spoiler_media_hidden'
|
|
return props.filter ? 'status.filter_show_anyway' : 'status.spoiler_show_more'
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="hideContent" flex flex-col items-start>
|
|
<div class="content-rich" p="x-4 b-2.5" text-center text-secondary w-full border="~ base" border-0 border-b-dotted border-b-3 mt-2>
|
|
<slot name="spoiler" />
|
|
</div>
|
|
<div flex="~ gap-1 center" w-full :mb="isDM && !showContent ? '4' : ''" mt="-4.5">
|
|
<button btn-text px-2 py-1 rounded-lg :bg="isDM ? 'transparent' : 'base'" flex="~ center gap-2" :class="showContent ? '' : 'filter-saturate-0 hover:filter-saturate-100'" :aria-expanded="showContent" @click="toggleContent()">
|
|
<div v-if="showContent" i-ri:eye-line />
|
|
<div v-else i-ri:eye-close-line />
|
|
{{ showContent ? $t('status.spoiler_show_less') : $t(getToggleText()) }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<slot v-if="!hideContent || showContent" />
|
|
</template>
|