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'"
|
2019-03-06 05:01:27 +00:00
|
|
|
v-model="cursor"
|
2019-04-16 06:46:47 +00:00
|
|
|
style="text-shadow: 1px 1px 2px #333;min-height: 330px;display: flex;align-items: center;"
|
2018-12-16 05:20:01 +00:00
|
|
|
controls
|
|
|
|
background="#ffffff"
|
|
|
|
:interval="0"
|
|
|
|
>
|
|
|
|
<b-carousel-slide v-for="(img, index) in status.media_attachments" :key="img.id">
|
2019-04-16 06:46:47 +00:00
|
|
|
<div slot="img" :class="img.filter_class + ' d-block mx-auto text-center'" style="max-height: 600px;" v-on:click="$emit('lightbox', status.media_attachments[index])">
|
|
|
|
<img class="img-fluid" style="max-height: 600px;" :src="img.url" :alt="img.description" :title="img.description" loading="lazy" v-on:click="$emit('lightbox', status.media_attachments[index])">
|
2019-02-27 06:28:04 +00:00
|
|
|
</div>
|
2018-12-16 05:20:01 +00:00
|
|
|
</b-carousel-slide>
|
2019-03-06 05:01:27 +00:00
|
|
|
<span class="badge badge-dark box-shadow" style="position: absolute;top:10px;right:10px;">
|
|
|
|
{{cursor + 1}} / {{status.media_attachments.length}}
|
|
|
|
</span>
|
2018-12-16 05:20:01 +00:00
|
|
|
</b-carousel>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
|
|
|
<b-carousel :id="status.id + '-carousel'"
|
2019-03-06 05:01:27 +00:00
|
|
|
v-model="cursor"
|
2019-04-16 06:46:47 +00:00
|
|
|
style="text-shadow: 1px 1px 2px #333;min-height: 330px;display: flex;align-items: center;"
|
2018-12-16 05:20:01 +00:00
|
|
|
controls
|
|
|
|
background="#ffffff"
|
|
|
|
:interval="0"
|
|
|
|
>
|
2019-03-26 02:58:55 +00:00
|
|
|
<b-carousel-slide v-for="(img, index) in status.media_attachments" :key="img.id" :alt="img.description" :title="img.description">
|
2019-04-16 06:46:47 +00:00
|
|
|
<div slot="img" :class="img.filter_class + ' d-block mx-auto text-center'" style="max-height: 600px;" v-on:click="$emit('lightbox', status.media_attachments[index])">
|
2019-04-08 04:01:05 +00:00
|
|
|
<img class="img-fluid" style="max-height: 600px;" :src="img.url" loading="lazy">
|
2019-02-27 06:28:04 +00:00
|
|
|
</div>
|
2018-12-16 05:20:01 +00:00
|
|
|
</b-carousel-slide>
|
2019-03-06 05:01:27 +00:00
|
|
|
<span class="badge badge-dark box-shadow" style="position: absolute;top:10px;right:10px;">
|
|
|
|
{{cursor + 1}} / {{status.media_attachments.length}}
|
|
|
|
</span>
|
2018-12-16 05:20:01 +00:00
|
|
|
</b-carousel>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2019-04-01 04:50:55 +00:00
|
|
|
<style type="text/css" scoped>
|
|
|
|
.card-img-top {
|
|
|
|
border-top-left-radius: 0 !important;
|
|
|
|
border-top-right-radius: 0 !important;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2018-12-16 05:20:01 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
export default {
|
2019-03-06 05:01:27 +00:00
|
|
|
props: ['status'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
cursor: 0
|
|
|
|
}
|
|
|
|
}
|
2018-12-16 05:20:01 +00:00
|
|
|
}
|
|
|
|
</script>
|