handle shorts videos in trending page

This commit is contained in:
Sai Karthik 2022-06-18 00:03:47 +05:30 committed by Hosted Weblate
parent 0007aab519
commit 325e5f01f0
No known key found for this signature in database
GPG key ID: A3FAAA06E6569B4C

View file

@ -10,13 +10,25 @@
}, },
}" }"
> >
<img :height="height" :width="width" class="w-full" :src="video.thumbnail" alt="" loading="lazy" /> <img
:style="`max-height: ${height}px; max-width: ${width}px`"
class="w-full"
:src="video.thumbnail"
:alt="video.title"
loading="lazy"
/>
<div class="relative text-sm"> <div class="relative text-sm">
<span <span
class="thumbnail-overlay thumbnail-right" class="thumbnail-overlay thumbnail-right"
v-if="video.duration > 0" v-if="video.duration > 0"
v-text="timeFormat(video.duration)" v-text="timeFormat(video.duration)"
/> />
<span class="thumbnail-overlay thumbnail-right" v-if="video.duration <= 60" v-text="`SHORTS`" />
<span
class="thumbnail-overlay thumbnail-right"
v-else-if="video.duration >= 60"
v-text="timeFormat(video.duration)"
/>
<i18n-t v-else keypath="video.live" class="thumbnail-overlay thumbnail-right !bg-red-600" tag="div"> <i18n-t v-else keypath="video.live" class="thumbnail-overlay thumbnail-right !bg-red-600" tag="div">
<font-awesome-icon class="!w-3" :icon="['fas', 'broadcast-tower']" /> <font-awesome-icon class="!w-3" :icon="['fas', 'broadcast-tower']" />
</i18n-t> </i18n-t>