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>
|
2019-06-28 08:30:09 +00:00
|
|
|
<div class="embed-responsive embed-responsive-1by1">
|
2019-11-11 02:09:50 +00:00
|
|
|
<video class="video" preload="none" loop :poster="status.media_attachments[0].preview_url":data-id="status.id" @click="playOrPause($event)">
|
2018-12-16 05:20:01 +00:00
|
|
|
<source :src="status.media_attachments[0].url" :type="status.media_attachments[0].mime">
|
|
|
|
</video>
|
|
|
|
</div>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
<div v-else class="embed-responsive embed-responsive-16by9">
|
2019-11-11 02:09:50 +00:00
|
|
|
<video class="video" controls preload="metadata" loop :poster="status.media_attachments[0].preview_url" :data-id="status.id">
|
2018-12-16 05:20:01 +00:00
|
|
|
<source :src="status.media_attachments[0].url" :type="status.media_attachments[0].mime">
|
|
|
|
</video>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
export default {
|
2019-05-28 02:48:37 +00:00
|
|
|
props: ['status'],
|
2019-11-11 02:09:50 +00:00
|
|
|
|
|
|
|
methods: {
|
|
|
|
playOrPause(e) {
|
|
|
|
let el = e.target;
|
|
|
|
if(el.getAttribute('playing') == 1) {
|
|
|
|
el.removeAttribute('playing');
|
|
|
|
el.pause();
|
|
|
|
} else {
|
|
|
|
el.setAttribute('playing', 1);
|
|
|
|
el.play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-16 05:20:01 +00:00
|
|
|
}
|
2019-06-28 08:30:09 +00:00
|
|
|
</script>
|