2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-09-08 05:15:35 +00:00
|
|
|
<div :class="hide ? $style.hidden : $style.visible" :style="darkMode ? '--c: rgb(255 255 255 / 2%);' : '--c: rgb(0 0 0 / 2%);'" @click="onclick">
|
2023-09-10 09:40:20 +00:00
|
|
|
<component
|
|
|
|
:is="disableImageLink ? 'div' : 'a'"
|
|
|
|
v-bind="disableImageLink ? {
|
|
|
|
title: image.name,
|
|
|
|
class: $style.imageContainer,
|
|
|
|
} : {
|
|
|
|
title: image.name,
|
|
|
|
class: $style.imageContainer,
|
|
|
|
href: image.url,
|
|
|
|
style: 'cursor: zoom-in;'
|
|
|
|
}"
|
2020-04-11 09:32:55 +00:00
|
|
|
>
|
2023-05-19 00:44:06 +00:00
|
|
|
<ImgWithBlurhash
|
|
|
|
:hash="image.blurhash"
|
|
|
|
:src="(defaultStore.state.enableDataSaverMode && hide) ? null : url"
|
2023-05-19 04:58:09 +00:00
|
|
|
:forceBlurhash="hide"
|
2023-09-10 09:40:20 +00:00
|
|
|
:cover="hide || cover"
|
2023-05-19 00:44:06 +00:00
|
|
|
:alt="image.comment || image.name"
|
|
|
|
:title="image.comment || image.name"
|
|
|
|
:width="image.properties.width"
|
|
|
|
:height="image.properties.height"
|
|
|
|
:style="hide ? 'filter: brightness(0.5);' : null"
|
|
|
|
/>
|
2023-09-10 09:40:20 +00:00
|
|
|
</component>
|
2023-05-19 00:44:06 +00:00
|
|
|
<template v-if="hide">
|
|
|
|
<div :class="$style.hiddenText">
|
|
|
|
<div :class="$style.hiddenTextWrapper">
|
2023-07-20 11:18:55 +00:00
|
|
|
<b v-if="image.isSensitive" style="display: block;"><i class="ti ti-eye-exclamation"></i> {{ i18n.ts.sensitive }}{{ defaultStore.state.enableDataSaverMode ? ` (${i18n.ts.image}${image.size ? ' ' + bytes(image.size) : ''})` : '' }}</b>
|
2023-05-19 00:44:06 +00:00
|
|
|
<b v-else style="display: block;"><i class="ti ti-photo"></i> {{ defaultStore.state.enableDataSaverMode && image.size ? bytes(image.size) : i18n.ts.image }}</b>
|
2023-09-10 09:40:20 +00:00
|
|
|
<span v-if="controls" style="display: block;">{{ i18n.ts.clickToShow }}</span>
|
2023-05-19 00:44:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-09-10 09:40:20 +00:00
|
|
|
<template v-else-if="controls">
|
2023-05-19 00:44:06 +00:00
|
|
|
<div :class="$style.indicators">
|
|
|
|
<div v-if="['image/gif', 'image/apng'].includes(image.type)" :class="$style.indicator">GIF</div>
|
|
|
|
<div v-if="image.comment" :class="$style.indicator">ALT</div>
|
2023-07-20 11:17:40 +00:00
|
|
|
<div v-if="image.isSensitive" :class="$style.indicator" style="color: var(--warn);" :title="i18n.ts.sensitive"><i class="ti ti-eye-exclamation"></i></div>
|
2023-05-19 00:44:06 +00:00
|
|
|
</div>
|
2023-06-02 05:13:36 +00:00
|
|
|
<button :class="$style.menu" class="_button" @click.stop="showMenu"><i class="ti ti-dots" style="vertical-align: middle;"></i></button>
|
2023-07-05 23:49:07 +00:00
|
|
|
<i class="ti ti-eye-off" :class="$style.hide" @click.stop="hide = true"></i>
|
2023-05-19 00:44:06 +00:00
|
|
|
</template>
|
2020-04-11 09:32:55 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-27 15:46:49 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { watch } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { getStaticImageUrl } from '@/scripts/media-proxy.js';
|
|
|
|
import bytes from '@/filters/bytes.js';
|
2022-08-30 15:24:33 +00:00
|
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { iAmModerator } from '@/account.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-09-10 09:40:20 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
image: Misskey.entities.DriveFile;
|
2022-01-27 15:46:49 +00:00
|
|
|
raw?: boolean;
|
2023-09-10 09:40:20 +00:00
|
|
|
cover?: boolean;
|
|
|
|
disableImageLink?: boolean;
|
|
|
|
controls?: boolean;
|
|
|
|
}>(), {
|
|
|
|
cover: false,
|
|
|
|
disableImageLink: false,
|
|
|
|
controls: true,
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-27 15:46:49 +00:00
|
|
|
let hide = $ref(true);
|
2023-04-15 06:29:57 +00:00
|
|
|
let darkMode: boolean = $ref(defaultStore.state.darkMode);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-04-15 12:35:19 +00:00
|
|
|
const url = $computed(() => (props.raw || defaultStore.state.loadRawImages)
|
2022-01-27 15:46:49 +00:00
|
|
|
? props.image.url
|
|
|
|
: defaultStore.state.disableShowingAnimatedImages
|
2023-03-11 05:11:40 +00:00
|
|
|
? getStaticImageUrl(props.image.url)
|
2023-05-06 00:53:09 +00:00
|
|
|
: props.image.thumbnailUrl,
|
2023-04-15 12:35:19 +00:00
|
|
|
);
|
2022-01-27 15:46:49 +00:00
|
|
|
|
2023-05-19 00:44:06 +00:00
|
|
|
function onclick() {
|
2023-09-10 09:40:20 +00:00
|
|
|
if (!props.controls) {
|
|
|
|
return;
|
|
|
|
}
|
2023-05-19 00:44:06 +00:00
|
|
|
if (hide) {
|
|
|
|
hide = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-27 15:46:49 +00:00
|
|
|
// Plugin:register_note_view_interruptor を使って書き換えられる可能性があるためwatchする
|
|
|
|
watch(() => props.image, () => {
|
2023-04-15 06:29:57 +00:00
|
|
|
hide = (defaultStore.state.nsfw === 'force' || defaultStore.state.enableDataSaverMode) ? true : (props.image.isSensitive && defaultStore.state.nsfw !== 'ignore');
|
2022-01-27 15:46:49 +00:00
|
|
|
}, {
|
|
|
|
deep: true,
|
|
|
|
immediate: true,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2023-05-07 09:18:32 +00:00
|
|
|
|
|
|
|
function showMenu(ev: MouseEvent) {
|
2023-05-30 05:34:55 +00:00
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.hide,
|
2023-05-07 09:18:32 +00:00
|
|
|
icon: 'ti ti-eye-off',
|
2023-05-30 05:34:55 +00:00
|
|
|
action: () => {
|
|
|
|
hide = true;
|
|
|
|
},
|
|
|
|
}, ...(iAmModerator ? [{
|
|
|
|
text: i18n.ts.markAsSensitive,
|
|
|
|
icon: 'ti ti-eye-exclamation',
|
2023-05-31 22:51:02 +00:00
|
|
|
danger: true,
|
2023-05-07 09:18:32 +00:00
|
|
|
action: () => {
|
|
|
|
os.apiWithDialog('drive/files/update', { fileId: props.image.id, isSensitive: true });
|
|
|
|
},
|
|
|
|
}] : [])], ev.currentTarget ?? ev.target);
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-02-09 01:11:33 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.hidden {
|
2020-07-18 15:24:07 +00:00
|
|
|
position: relative;
|
2023-02-09 01:11:33 +00:00
|
|
|
}
|
2020-07-18 15:24:07 +00:00
|
|
|
|
2023-02-09 01:11:33 +00:00
|
|
|
.hiddenText {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-09-10 09:40:20 +00:00
|
|
|
cursor: pointer;
|
2023-02-09 01:11:33 +00:00
|
|
|
}
|
2020-07-18 15:24:07 +00:00
|
|
|
|
2023-07-05 23:49:07 +00:00
|
|
|
.hide {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: var(--fg);
|
|
|
|
color: var(--accentLighten);
|
2023-07-06 06:07:51 +00:00
|
|
|
font-size: 12px;
|
2023-07-05 23:49:07 +00:00
|
|
|
opacity: .5;
|
2023-07-06 06:07:51 +00:00
|
|
|
padding: 5px 8px;
|
2023-07-05 23:49:07 +00:00
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
}
|
|
|
|
|
2023-02-09 01:11:33 +00:00
|
|
|
.hiddenTextWrapper {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #fff;
|
2020-07-18 15:24:07 +00:00
|
|
|
}
|
|
|
|
|
2023-02-09 01:11:33 +00:00
|
|
|
.visible {
|
2020-04-11 09:32:55 +00:00
|
|
|
position: relative;
|
2021-12-10 07:01:35 +00:00
|
|
|
//box-shadow: 0 0 0 1px var(--divider) inset;
|
|
|
|
background: var(--bg);
|
2023-02-09 00:48:35 +00:00
|
|
|
background-image: linear-gradient(45deg, var(--c) 16.67%, var(--bg) 16.67%, var(--bg) 50%, var(--c) 50%, var(--c) 66.67%, var(--bg) 66.67%, var(--bg) 100%);
|
|
|
|
background-size: 16px 16px;
|
2023-02-09 01:11:33 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-05-07 09:18:32 +00:00
|
|
|
.menu {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2023-06-02 05:13:36 +00:00
|
|
|
border-radius: 999px;
|
2023-05-07 09:18:32 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
color: #fff;
|
|
|
|
font-size: 0.8em;
|
2023-07-06 06:07:51 +00:00
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2023-05-07 09:18:32 +00:00
|
|
|
text-align: center;
|
2023-05-30 05:34:55 +00:00
|
|
|
bottom: 10px;
|
|
|
|
right: 10px;
|
2023-05-07 09:18:32 +00:00
|
|
|
}
|
|
|
|
|
2023-02-09 01:11:33 +00:00
|
|
|
.imageContainer {
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-position: center;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
2020-04-11 09:32:55 +00:00
|
|
|
|
2023-03-09 03:48:39 +00:00
|
|
|
.indicators {
|
|
|
|
display: inline-flex;
|
|
|
|
position: absolute;
|
2023-05-30 05:34:55 +00:00
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
2023-03-09 03:48:39 +00:00
|
|
|
pointer-events: none;
|
|
|
|
opacity: .5;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indicator {
|
|
|
|
/* Hardcode to black because either --bg or --fg makes it hard to read in dark/light mode */
|
|
|
|
background-color: black;
|
2023-02-09 01:11:33 +00:00
|
|
|
border-radius: 6px;
|
|
|
|
color: var(--accentLighten);
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
2023-05-30 05:34:55 +00:00
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 2px 5px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
</style>
|