pixelfed/resources/assets/js/components/presenter/PhotoPresenter.vue

73 lines
1.8 KiB
Vue
Raw Normal View History

<template>
<div v-if="status.sensitive == true" class="content-label-wrapper">
2021-01-29 03:08:06 +00:00
<div class="text-light content-label">
<p class="text-center">
<i class="far fa-eye-slash fa-2x"></i>
</p>
<p class="h4 font-weight-bold text-center">
Sensitive Content
</p>
<p class="text-center py-2">
{{ status.spoiler_text ? status.spoiler_text : 'This post may contain sensitive content.'}}
2021-01-29 03:08:06 +00:00
</p>
<p class="mb-0">
<button @click="toggleContentWarning()" class="btn btn-outline-light btn-block btn-sm font-weight-bold">See Post</button>
2021-01-29 03:08:06 +00:00
</p>
</div>
<blur-hash-image
width="32"
height="32"
:punch="1"
2021-01-29 03:08:06 +00:00
:hash="status.media_attachments[0].blurhash"
:alt="altText(status)"/>
</div>
<div v-else>
2019-06-18 05:54:43 +00:00
<div :title="status.media_attachments[0].description">
2020-07-22 01:17:24 +00:00
<img :class="status.media_attachments[0].filter_class + ' card-img-top'" :src="status.media_attachments[0].url" loading="lazy" :alt="altText(status)" onerror="this.onerror=null;this.src='/storage/no-preview.png'">
</div>
</div>
</template>
<style type="text/css" scoped>
.card-img-top {
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}
2021-01-29 03:08:06 +00:00
.content-label {
margin: 0;
position: absolute;
top:50%;
2021-01-29 03:08:06 +00:00
left:50%;
z-index: 2;
2021-01-29 03:08:06 +00:00
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
z-index: 2;
background: rgba(0, 0, 0, 0.2)
2021-01-29 03:08:06 +00:00
}
</style>
<script type="text/javascript">
export default {
2020-07-22 01:17:24 +00:00
props: ['status'],
methods: {
altText(status) {
let desc = status.media_attachments[0].description;
if(desc) {
return desc;
}
return 'Photo was not tagged with any alt text.';
},
toggleContentWarning(status) {
this.$emit('togglecw');
2020-07-22 01:17:24 +00:00
}
}
}
</script>