2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2020-07-18 15:24:07 +00:00
|
|
|
<div class="qjewsnkg" v-if="hide" @click="hide = false">
|
2021-05-28 00:38:09 +00:00
|
|
|
<ImgWithBlurhash class="bg" :hash="image.blurhash" :title="image.comment" :alt="image.comment"/>
|
2020-07-18 15:24:07 +00:00
|
|
|
<div class="text">
|
|
|
|
<div>
|
2021-04-20 14:22:59 +00:00
|
|
|
<b><i class="fas fa-exclamation-triangle"></i> {{ $ts.sensitive }}</b>
|
2020-12-26 01:47:36 +00:00
|
|
|
<span>{{ $ts.clickToShow }}</span>
|
2020-07-18 15:24:07 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
<div class="gqnyydlz" :style="{ background: color }" v-else>
|
2020-04-11 09:32:55 +00:00
|
|
|
<a
|
|
|
|
:href="image.url"
|
|
|
|
:title="image.name"
|
|
|
|
@click.prevent="onClick"
|
|
|
|
>
|
2021-05-28 00:38:09 +00:00
|
|
|
<ImgWithBlurhash :hash="image.blurhash" :src="url" :alt="image.comment" :title="image.comment" :cover="false"/>
|
2020-07-18 15:24:07 +00:00
|
|
|
<div class="gif" v-if="image.type === 'image/gif'">GIF</div>
|
2020-04-11 09:32:55 +00:00
|
|
|
</a>
|
2021-05-11 03:39:10 +00:00
|
|
|
<i class="fas fa-eye-slash" @click="hide = true"></i>
|
2020-04-11 09:32:55 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 08:30:14 +00:00
|
|
|
import { getStaticImageUrl } from '@client/scripts/get-static-image-url';
|
|
|
|
import { extractAvgColorFromBlurhash } from '@client/scripts/extract-avg-color-from-blurhash';
|
2020-02-16 13:46:18 +00:00
|
|
|
import ImageViewer from './image-viewer.vue';
|
2021-04-16 03:06:54 +00:00
|
|
|
import ImgWithBlurhash from '@client/components/img-with-blurhash.vue';
|
2021-03-23 08:30:14 +00:00
|
|
|
import * as os from '@client/os';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-07-18 15:24:07 +00:00
|
|
|
components: {
|
|
|
|
ImgWithBlurhash
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
props: {
|
|
|
|
image: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
raw: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
hide: true,
|
2020-10-17 11:12:00 +00:00
|
|
|
color: null,
|
2020-01-29 19:37:25 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
2020-07-18 15:24:07 +00:00
|
|
|
url(): any {
|
2020-12-19 01:55:52 +00:00
|
|
|
let url = this.$store.state.disableShowingAnimatedImages
|
2020-07-18 15:24:07 +00:00
|
|
|
? getStaticImageUrl(this.image.thumbnailUrl)
|
|
|
|
: this.image.thumbnailUrl;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
if (this.raw || this.$store.state.loadRawImages) {
|
2020-07-18 15:24:07 +00:00
|
|
|
url = this.image.url;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-18 15:24:07 +00:00
|
|
|
return url;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
},
|
2020-04-13 14:55:36 +00:00
|
|
|
created() {
|
2020-09-11 12:50:44 +00:00
|
|
|
// Plugin:register_note_view_interruptor を使って書き換えられる可能性があるためwatchする
|
|
|
|
this.$watch('image', () => {
|
2020-12-19 01:55:52 +00:00
|
|
|
this.hide = (this.$store.state.nsfw === 'force') ? true : this.image.isSensitive && (this.$store.state.nsfw !== 'ignore');
|
2020-10-17 11:12:00 +00:00
|
|
|
if (this.image.blurhash) {
|
|
|
|
this.color = extractAvgColorFromBlurhash(this.image.blurhash);
|
|
|
|
}
|
2020-09-11 12:50:44 +00:00
|
|
|
}, {
|
|
|
|
deep: true,
|
|
|
|
immediate: true,
|
|
|
|
});
|
2020-04-13 14:55:36 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
methods: {
|
|
|
|
onClick() {
|
2020-12-19 01:55:52 +00:00
|
|
|
if (this.$store.state.imageNewTab) {
|
2020-02-16 13:46:18 +00:00
|
|
|
window.open(this.image.url, '_blank');
|
|
|
|
} else {
|
2020-10-17 11:12:00 +00:00
|
|
|
os.popup(ImageViewer, {
|
2020-02-16 13:46:18 +00:00
|
|
|
image: this.image
|
2020-10-17 11:12:00 +00:00
|
|
|
}, {}, 'closed');
|
2020-02-16 13:46:18 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-07-18 15:24:07 +00: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 09:32:55 +00:00
|
|
|
position: relative;
|
2021-04-10 03:40:50 +00:00
|
|
|
border: solid 0.5px var(--divider);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-04-11 09:32:55 +00:00
|
|
|
> i {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2020-01-29 19:37:25 +00:00
|
|
|
border-radius: 6px;
|
2020-04-11 09:32:55 +00:00
|
|
|
background-color: var(--fg);
|
2020-03-14 02:31:03 +00:00
|
|
|
color: var(--accentLighten);
|
2020-01-29 19:37:25 +00:00
|
|
|
font-size: 14px;
|
|
|
|
opacity: .5;
|
2020-04-11 09:32:55 +00:00
|
|
|
padding: 3px 6px;
|
2020-01-29 19:37:25 +00:00
|
|
|
text-align: center;
|
2020-04-11 09:32:55 +00:00
|
|
|
cursor: pointer;
|
2020-01-29 19:37:25 +00:00
|
|
|
top: 12px;
|
2020-04-11 09:32:55 +00:00
|
|
|
right: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> a {
|
|
|
|
display: block;
|
|
|
|
cursor: zoom-in;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-04-11 09:32:55 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-position: center;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
2020-07-18 15:24:07 +00:00
|
|
|
> .gif {
|
2020-04-11 09:32:55 +00: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 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|