2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-if="hide" class="qjewsnkg" @click="hide = false">
|
2021-05-28 02:38:09 +02:00
|
|
|
<ImgWithBlurhash class="bg" :hash="image.blurhash" :title="image.comment" :alt="image.comment"/>
|
2020-07-18 17:24:07 +02:00
|
|
|
<div class="text">
|
|
|
|
<div>
|
2021-04-20 16:22:59 +02:00
|
|
|
<b><i class="fas fa-exclamation-triangle"></i> {{ $ts.sensitive }}</b>
|
2020-12-26 02:47:36 +01:00
|
|
|
<span>{{ $ts.clickToShow }}</span>
|
2020-07-18 17:24:07 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-12-10 08:01:35 +01:00
|
|
|
<div v-else class="gqnyydlz">
|
2020-04-11 11:32:55 +02:00
|
|
|
<a
|
|
|
|
:href="image.url"
|
|
|
|
:title="image.name"
|
|
|
|
>
|
2021-05-28 02:38:09 +02:00
|
|
|
<ImgWithBlurhash :hash="image.blurhash" :src="url" :alt="image.comment" :title="image.comment" :cover="false"/>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-if="image.type === 'image/gif'" class="gif">GIF</div>
|
2020-04-11 11:32:55 +02:00
|
|
|
</a>
|
2021-12-10 08:01:35 +01:00
|
|
|
<button v-tooltip="$ts.hide" class="_button hide" @click="hide = true"><i class="fas fa-eye-slash"></i></button>
|
2020-04-11 11:32:55 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
|
|
|
import ImgWithBlurhash from '@/components/img-with-blurhash.vue';
|
|
|
|
import * as os from '@/os';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-07-18 17:24:07 +02:00
|
|
|
components: {
|
|
|
|
ImgWithBlurhash
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
props: {
|
|
|
|
image: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
raw: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
hide: true,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
2020-07-18 17:24:07 +02:00
|
|
|
url(): any {
|
2020-12-19 02:55:52 +01:00
|
|
|
let url = this.$store.state.disableShowingAnimatedImages
|
2020-07-18 17:24:07 +02:00
|
|
|
? getStaticImageUrl(this.image.thumbnailUrl)
|
|
|
|
: this.image.thumbnailUrl;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-12-19 02:55:52 +01:00
|
|
|
if (this.raw || this.$store.state.loadRawImages) {
|
2020-07-18 17:24:07 +02:00
|
|
|
url = this.image.url;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
2020-07-18 17:24:07 +02:00
|
|
|
return url;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
},
|
2020-04-13 16:55:36 +02:00
|
|
|
created() {
|
2020-09-11 14:50:44 +02:00
|
|
|
// Plugin:register_note_view_interruptor を使って書き換えられる可能性があるためwatchする
|
|
|
|
this.$watch('image', () => {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.hide = (this.$store.state.nsfw === 'force') ? true : this.image.isSensitive && (this.$store.state.nsfw !== 'ignore');
|
2020-09-11 14:50:44 +02:00
|
|
|
}, {
|
|
|
|
deep: true,
|
|
|
|
immediate: true,
|
|
|
|
});
|
2020-04-13 16:55:36 +02:00
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-07-18 17:24:07 +02:00
|
|
|
.qjewsnkg {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .bg {
|
|
|
|
filter: brightness(0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.gqnyydlz {
|
2020-04-11 11:32:55 +02:00
|
|
|
position: relative;
|
2021-12-10 08:01:35 +01:00
|
|
|
//box-shadow: 0 0 0 1px var(--divider) inset;
|
|
|
|
background: var(--bg);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2021-12-10 08:01:35 +01:00
|
|
|
> .hide {
|
2020-04-11 11:32:55 +02:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2020-01-29 20:37:25 +01:00
|
|
|
border-radius: 6px;
|
2021-12-10 08:01:35 +01:00
|
|
|
background-color: var(--accentedBg);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
color: var(--accent);
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 6px 8px;
|
2020-01-29 20:37:25 +01:00
|
|
|
text-align: center;
|
|
|
|
top: 12px;
|
2020-04-11 11:32:55 +02:00
|
|
|
right: 12px;
|
2021-12-10 08:01:35 +01:00
|
|
|
|
|
|
|
> i {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-04-11 11:32:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
> a {
|
|
|
|
display: block;
|
|
|
|
cursor: zoom-in;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-04-11 11:32:55 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-position: center;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
2020-07-18 17:24:07 +02:00
|
|
|
> .gif {
|
2020-04-11 11:32:55 +02:00
|
|
|
background-color: var(--fg);
|
|
|
|
border-radius: 6px;
|
|
|
|
color: var(--accentLighten);
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
left: 12px;
|
|
|
|
opacity: .5;
|
|
|
|
padding: 0 6px;
|
|
|
|
text-align: center;
|
|
|
|
top: 12px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|