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>
|
|
|
|
|
2022-01-27 16:46:49 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { watch } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { getStaticImageUrl } from '@/scripts/get-static-image-url';
|
|
|
|
import ImgWithBlurhash from '@/components/img-with-blurhash.vue';
|
2022-01-27 16:46:49 +01:00
|
|
|
import { defaultStore } from '@/store';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-27 16:46:49 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
image: misskey.entities.DriveFile;
|
|
|
|
raw?: boolean;
|
|
|
|
}>();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-27 16:46:49 +01:00
|
|
|
let hide = $ref(true);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-27 16:46:49 +01:00
|
|
|
const url = (props.raw || defaultStore.state.loadRawImages)
|
|
|
|
? props.image.url
|
|
|
|
: defaultStore.state.disableShowingAnimatedImages
|
|
|
|
? getStaticImageUrl(props.image.thumbnailUrl)
|
|
|
|
: props.image.thumbnailUrl;
|
|
|
|
|
|
|
|
// Plugin:register_note_view_interruptor を使って書き換えられる可能性があるためwatchする
|
|
|
|
watch(() => props.image, () => {
|
|
|
|
hide = (defaultStore.state.nsfw === 'force') ? true : props.image.isSensitive && (defaultStore.state.nsfw !== 'ignore');
|
|
|
|
}, {
|
|
|
|
deep: true,
|
|
|
|
immediate: true,
|
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>
|