2018-12-16 05:20:01 +00:00
|
|
|
<template>
|
|
|
|
<div v-if="status.sensitive == true">
|
|
|
|
<details class="details-animated">
|
|
|
|
<summary>
|
|
|
|
<p class="mb-0 lead font-weight-bold">{{ status.spoiler_text ? status.spoiler_text : 'CW / NSFW / Hidden Media'}}</p>
|
|
|
|
<p class="font-weight-light">(click to show)</p>
|
|
|
|
</summary>
|
|
|
|
<b-carousel :id="status.id + '-carousel'"
|
|
|
|
style="text-shadow: 1px 1px 2px #333; background-color: #000;"
|
|
|
|
controls
|
|
|
|
img-blank
|
|
|
|
background="#ffffff"
|
|
|
|
:interval="0"
|
|
|
|
>
|
|
|
|
<b-carousel-slide v-for="(media, index) in status.media_attachments" :key="media.id + '-media'">
|
|
|
|
|
2019-05-28 02:48:37 +00:00
|
|
|
<video v-if="media.type == 'Video'" slot="img" class="embed-responsive-item" preload="none" controls loop :alt="media.description" width="100%" height="100%" :poster="media.preview_url">
|
2018-12-16 05:20:01 +00:00
|
|
|
<source :src="media.url" :type="media.mime">
|
|
|
|
</video>
|
|
|
|
|
2019-06-18 05:54:43 +00:00
|
|
|
<div v-else-if="media.type == 'Image'" slot="img" :title="media.description">
|
|
|
|
<img :class="media.filter_class + ' d-block img-fluid w-100'" :src="media.url" :alt="media.description" loading="lazy">
|
2019-02-27 06:28:04 +00:00
|
|
|
</div>
|
2018-12-16 05:20:01 +00:00
|
|
|
|
|
|
|
<p v-else class="text-center p-0 font-weight-bold text-white">Error: Problem rendering preview.</p>
|
|
|
|
|
|
|
|
</b-carousel-slide>
|
|
|
|
</b-carousel>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
|
|
|
<b-carousel :id="status.id + '-carousel'"
|
|
|
|
style="text-shadow: 1px 1px 2px #333; background-color: #000;"
|
|
|
|
controls
|
|
|
|
img-blank
|
|
|
|
background="#ffffff"
|
|
|
|
:interval="0"
|
|
|
|
>
|
|
|
|
<b-carousel-slide v-for="(media, index) in status.media_attachments" :key="media.id + '-media'">
|
|
|
|
|
2019-06-18 05:54:43 +00:00
|
|
|
<video v-if="media.type == 'Video'" slot="img" class="embed-responsive-item" preload="none" controls loop :title="media.description" width="100%" height="100%" :poster="media.preview_url">
|
2018-12-16 05:20:01 +00:00
|
|
|
<source :src="media.url" :type="media.mime">
|
|
|
|
</video>
|
|
|
|
|
2019-06-18 05:54:43 +00:00
|
|
|
<div v-else-if="media.type == 'Image'" slot="img" :title="media.description">
|
|
|
|
<img :class="media.filter_class + ' d-block img-fluid w-100'" :src="media.url" :alt="media.description" loading="lazy">
|
2019-02-27 06:28:04 +00:00
|
|
|
</div>
|
2018-12-16 05:20:01 +00:00
|
|
|
|
|
|
|
<p v-else class="text-center p-0 font-weight-bold text-white">Error: Problem rendering preview.</p>
|
|
|
|
|
|
|
|
</b-carousel-slide>
|
|
|
|
</b-carousel>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
export default {
|
|
|
|
props: ['status']
|
|
|
|
}
|
|
|
|
</script>
|