2022-11-14 03:33:09 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-21 13:38:10 +00:00
|
|
|
import { clamp } from '@vueuse/core'
|
2022-11-14 03:33:09 +00:00
|
|
|
import type { Attachment } from 'masto'
|
|
|
|
|
|
|
|
const { attachment } = defineProps<{
|
|
|
|
attachment: Attachment
|
|
|
|
}>()
|
2022-11-21 13:21:53 +00:00
|
|
|
|
2022-11-29 05:01:51 +00:00
|
|
|
const src = $computed(() => attachment.remoteUrl || attachment.url || attachment.previewUrl!)
|
|
|
|
|
2022-11-21 13:38:10 +00:00
|
|
|
const rawAspectRatio = computed(() => {
|
2022-11-21 13:21:53 +00:00
|
|
|
if (attachment.meta?.original?.aspect)
|
|
|
|
return attachment.meta.original.aspect
|
|
|
|
if (attachment.meta?.small?.aspect)
|
|
|
|
return attachment.meta.small.aspect
|
|
|
|
return undefined
|
|
|
|
})
|
2022-11-21 13:38:10 +00:00
|
|
|
|
|
|
|
const aspectRatio = computed(() => {
|
|
|
|
if (rawAspectRatio.value)
|
|
|
|
return clamp(rawAspectRatio.value, 0.5, 2)
|
|
|
|
return undefined
|
|
|
|
})
|
2022-11-14 03:33:09 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-25 14:31:33 +00:00
|
|
|
<template v-if="attachment.type === 'video'">
|
2022-11-21 13:38:10 +00:00
|
|
|
<video
|
|
|
|
:poster="attachment.previewUrl"
|
|
|
|
controls
|
2022-11-23 02:16:31 +00:00
|
|
|
border="~ base"
|
2022-11-21 13:38:10 +00:00
|
|
|
object-cover
|
|
|
|
:style="{
|
|
|
|
aspectRatio,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<source :src="attachment.url || attachment.previewUrl" type="video/mp4">
|
|
|
|
</video>
|
|
|
|
</template>
|
2022-11-24 04:05:13 +00:00
|
|
|
<template v-else-if="attachment.type === 'gifv'">
|
|
|
|
<video
|
|
|
|
:poster="attachment.previewUrl"
|
|
|
|
loop
|
|
|
|
autoplay
|
|
|
|
border="~ base"
|
|
|
|
object-cover
|
|
|
|
:style="{
|
|
|
|
aspectRatio,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<source :src="attachment.url || attachment.previewUrl" type="video/mp4">
|
|
|
|
</video>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="attachment.type === 'audio'">
|
|
|
|
<audio controls border="~ base">
|
|
|
|
<source :src="attachment.url || attachment.previewUrl" type="audio/mp3">
|
|
|
|
</audio>
|
|
|
|
</template>
|
2022-11-14 03:33:09 +00:00
|
|
|
<template v-else>
|
2022-11-25 23:46:25 +00:00
|
|
|
<button
|
|
|
|
focus:outline-none
|
|
|
|
focus:ring="2 primary inset"
|
2022-11-25 18:13:44 +00:00
|
|
|
rounded-lg
|
|
|
|
@click="openImagePreviewDialog({
|
2022-11-29 05:01:51 +00:00
|
|
|
src,
|
2022-11-25 18:13:44 +00:00
|
|
|
alt: attachment.description!,
|
|
|
|
})"
|
2022-11-25 23:46:25 +00:00
|
|
|
>
|
|
|
|
<CommonBlurhash
|
|
|
|
:blurhash="attachment.blurhash"
|
|
|
|
class="status-attachment-image"
|
2022-11-29 05:01:51 +00:00
|
|
|
:src="src"
|
2022-11-25 23:46:25 +00:00
|
|
|
:alt="attachment.description!"
|
|
|
|
:style="{
|
|
|
|
aspectRatio,
|
|
|
|
}"
|
|
|
|
border="~ base"
|
|
|
|
rounded-lg
|
|
|
|
h-full
|
|
|
|
w-full
|
|
|
|
object-cover
|
|
|
|
/>
|
|
|
|
</button>
|
2022-11-14 03:33:09 +00:00
|
|
|
</template>
|
|
|
|
</template>
|