2022-12-07 15:55:45 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Card } from 'masto'
|
|
|
|
|
2022-12-09 21:13:59 +00:00
|
|
|
const props = defineProps<{
|
2022-12-07 15:55:45 +00:00
|
|
|
card: Card
|
2022-12-09 21:13:59 +00:00
|
|
|
/** For the preview image, only the small image mode is displayed */
|
|
|
|
smallPictureOnly?: boolean
|
|
|
|
/** When it is root card in the list, not appear as a child card */
|
|
|
|
root?: boolean
|
2022-12-07 15:55:45 +00:00
|
|
|
}>()
|
2022-12-13 18:30:40 +00:00
|
|
|
|
|
|
|
// mastodon's default max og image width
|
|
|
|
const ogImageWidth = 400
|
|
|
|
|
2022-12-09 21:13:59 +00:00
|
|
|
const alt = $computed(() => `${props.card.title} - ${props.card.title}`)
|
2022-12-13 18:30:40 +00:00
|
|
|
const isSquare = $computed(() => (
|
|
|
|
props.smallPictureOnly
|
|
|
|
|| props.card.width === props.card.height
|
|
|
|
|| Number(props.card.width || 0) < ogImageWidth
|
|
|
|
|| Number(props.card.height || 0) < ogImageWidth / 2
|
|
|
|
))
|
2022-12-11 10:52:36 +00:00
|
|
|
const providerName = $computed(() => props.card.providerName ? props.card.providerName : new URL(props.card.url).hostname)
|
2022-12-07 15:55:45 +00:00
|
|
|
|
|
|
|
// TODO: handle card.type: 'photo' | 'video' | 'rich';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-09 21:13:59 +00:00
|
|
|
<NuxtLink
|
|
|
|
block
|
|
|
|
of-hidden
|
|
|
|
hover:bg-active
|
|
|
|
:to="card.url"
|
|
|
|
:class="{
|
|
|
|
'flex': isSquare,
|
|
|
|
'p-4': root,
|
|
|
|
'rounded-lg border border-base': !root,
|
|
|
|
}"
|
|
|
|
target="_blank"
|
2022-12-07 15:55:45 +00:00
|
|
|
>
|
2022-12-09 21:13:59 +00:00
|
|
|
<div
|
|
|
|
v-if="card.image"
|
|
|
|
flex flex-col
|
|
|
|
display-block of-hidden
|
|
|
|
border="base"
|
|
|
|
:class="{
|
2022-12-11 10:52:36 +00:00
|
|
|
'sm:(min-w-32 w-32 h-32) min-w-22 w-22 h-22 border-r': isSquare,
|
2022-12-09 21:13:59 +00:00
|
|
|
'w-full aspect-[1.91] border-b': !isSquare,
|
|
|
|
'rounded-lg': root,
|
|
|
|
}"
|
|
|
|
>
|
2022-12-07 15:55:45 +00:00
|
|
|
<CommonBlurhash
|
|
|
|
:blurhash="card.blurhash"
|
|
|
|
:src="card.image"
|
|
|
|
:width="card.width"
|
|
|
|
:height="card.height"
|
|
|
|
:alt="alt"
|
2022-12-09 21:13:59 +00:00
|
|
|
w-full h-full object-cover
|
2022-12-07 15:55:45 +00:00
|
|
|
/>
|
2022-12-09 21:13:59 +00:00
|
|
|
</div>
|
2022-12-11 10:52:36 +00:00
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
min-w-22 w-22 h-22 sm="min-w-32 w-32 h-32" bg="slate-500/10" flex justify-center items-center
|
|
|
|
:class="[
|
|
|
|
root ? 'rounded-lg' : '',
|
|
|
|
]"
|
|
|
|
>
|
2022-12-09 21:13:59 +00:00
|
|
|
<div i-ri:profile-line w="30%" h="30%" text-secondary />
|
|
|
|
</div>
|
|
|
|
<div
|
2022-12-11 10:52:36 +00:00
|
|
|
px3 max-h-2xl
|
2022-12-09 21:13:59 +00:00
|
|
|
flex flex-col
|
2022-12-11 10:52:36 +00:00
|
|
|
:class="[
|
|
|
|
root ? 'flex-gap-1 py1 sm:py3' : 'py3 justify-center sm:justify-start',
|
|
|
|
]"
|
2022-12-09 21:13:59 +00:00
|
|
|
>
|
2022-12-11 10:52:36 +00:00
|
|
|
<p
|
|
|
|
text-secondary ws-pre-wrap break-all
|
|
|
|
:class="[
|
|
|
|
!card.description || root
|
|
|
|
? 'line-clamp-1'
|
|
|
|
: 'hidden sm:line-clamp-1',
|
|
|
|
]"
|
|
|
|
>
|
|
|
|
{{ providerName }}
|
2022-12-09 21:13:59 +00:00
|
|
|
</p>
|
2022-12-11 10:52:36 +00:00
|
|
|
<strong
|
|
|
|
v-if="card.title" font-normal sm:font-medium line-clamp-1
|
|
|
|
break-all ws-pre-wrap
|
|
|
|
>{{ card.title }}</strong>
|
|
|
|
<p
|
|
|
|
v-if="card.description"
|
|
|
|
line-clamp-1 break-all sm:line-clamp-2 sm:break-words text-secondary ws-pre-wrap
|
|
|
|
>
|
|
|
|
{{ card.description }}
|
2022-12-09 21:13:59 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
2022-12-07 15:55:45 +00:00
|
|
|
</template>
|