mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 03:33:09 +02:00
15761a0fa8
* ✌️ * fix * ✌️ * 422px上限 * 334 * min-height: 130px * 64px * fix * wip * ✌️ * fix * max-height: none * MkImgWithBlurHashでratioを計算する * wip * fix * fix? * Revert "fix?" This reverts commit e39d832dd1498ae58a2372b6dc527585ae165bac. * Revert "fix" This reverts commit 15be36ba55a411c5aac69037f693e1d922451f15. * Revert "wip" This reverts commit af7d86f69dd89e138d98f1285976b502f382e6c6. * fix * Revert "Revert "wip"" This reverts commit bb0036ae22ea2bca896ee9bb500bae624e81049b. * Revert "Revert "fix"" This reverts commit c1d94a45c575cc843e061a0c55df1106bf033035. * Revert "Revert "fix?"" This reverts commit 9cb4fbfd96db9adaf92cf3ec1f6f15b1b257d7b3. * fix * use clamp * readable * add 1:1, 3:4 * moveComment * 3:4 → 2:3 * fix * default * fallback * Revert "fallback" This reverts commit 741717dd4903ed89b6536d8ea1ca061aacfa7dcb. * Fix?(server): Content-Dispositionのパースでエラーが発生した場合にもダウンロードが完了するように #10626
140 lines
4.2 KiB
Vue
140 lines
4.2 KiB
Vue
<template>
|
|
<div v-if="hide" :class="$style.hidden" @click="hide = false">
|
|
<ImgWithBlurhash style="filter: brightness(0.5);" :hash="image.blurhash" :title="image.comment" :alt="image.comment" :width="image.properties.width" :height="image.properties.height" :force-blurhash="defaultStore.state.enableDataSaverMode" />
|
|
<div :class="$style.hiddenText">
|
|
<div :class="$style.hiddenTextWrapper">
|
|
<b v-if="image.isSensitive" style="display: block;"><i class="ti ti-alert-triangle"></i> {{ i18n.ts.sensitive }}{{ defaultStore.state.enableDataSaverMode ? ` (${i18n.ts.image}${image.size ? ' ' + bytes(image.size) : ''})` : '' }}</b>
|
|
<b v-else style="display: block;"><i class="ti ti-photo"></i> {{ defaultStore.state.enableDataSaverMode && image.size ? bytes(image.size) : i18n.ts.image }}</b>
|
|
<span style="display: block;">{{ i18n.ts.clickToShow }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-else :class="$style.visible" :style="darkMode ? '--c: rgb(255 255 255 / 2%);' : '--c: rgb(0 0 0 / 2%);'">
|
|
<a
|
|
:class="$style.imageContainer"
|
|
:href="image.url"
|
|
:title="image.name"
|
|
>
|
|
<ImgWithBlurhash :hash="image.blurhash" :src="url" :alt="image.comment || image.name" :title="image.comment || image.name" :width="image.properties.width" :height="image.properties.height" :cover="false"/>
|
|
</a>
|
|
<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>
|
|
</div>
|
|
<button v-tooltip="i18n.ts.hide" :class="$style.hide" class="_button" @click="hide = true"><i class="ti ti-eye-off"></i></button>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { watch } from 'vue';
|
|
import * as misskey from 'misskey-js';
|
|
import { getStaticImageUrl } from '@/scripts/media-proxy';
|
|
import bytes from '@/filters/bytes';
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
|
import { defaultStore } from '@/store';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const props = defineProps<{
|
|
image: misskey.entities.DriveFile;
|
|
raw?: boolean;
|
|
}>();
|
|
|
|
let hide = $ref(true);
|
|
let darkMode: boolean = $ref(defaultStore.state.darkMode);
|
|
|
|
const url = $computed(() => (props.raw || defaultStore.state.loadRawImages)
|
|
? props.image.url
|
|
: defaultStore.state.disableShowingAnimatedImages
|
|
? getStaticImageUrl(props.image.url)
|
|
: props.image.thumbnailUrl
|
|
);
|
|
|
|
// Plugin:register_note_view_interruptor を使って書き換えられる可能性があるためwatchする
|
|
watch(() => props.image, () => {
|
|
hide = (defaultStore.state.nsfw === 'force' || defaultStore.state.enableDataSaverMode) ? true : (props.image.isSensitive && defaultStore.state.nsfw !== 'ignore');
|
|
}, {
|
|
deep: true,
|
|
immediate: true,
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.hidden {
|
|
position: relative;
|
|
}
|
|
|
|
.hiddenText {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.hiddenTextWrapper {
|
|
display: table-cell;
|
|
text-align: center;
|
|
font-size: 0.8em;
|
|
color: #fff;
|
|
}
|
|
|
|
.visible {
|
|
position: relative;
|
|
//box-shadow: 0 0 0 1px var(--divider) inset;
|
|
background: var(--bg);
|
|
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;
|
|
}
|
|
|
|
.hide {
|
|
display: block;
|
|
position: absolute;
|
|
border-radius: 6px;
|
|
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;
|
|
text-align: center;
|
|
top: 12px;
|
|
right: 12px;
|
|
}
|
|
|
|
.imageContainer {
|
|
display: block;
|
|
cursor: zoom-in;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.indicators {
|
|
display: inline-flex;
|
|
position: absolute;
|
|
top: 12px;
|
|
left: 12px;
|
|
text-align: center;
|
|
pointer-events: none;
|
|
opacity: .5;
|
|
font-size: 14px;
|
|
gap: 6px;
|
|
}
|
|
|
|
.indicator {
|
|
/* Hardcode to black because either --bg or --fg makes it hard to read in dark/light mode */
|
|
background-color: black;
|
|
border-radius: 6px;
|
|
color: var(--accentLighten);
|
|
display: inline-block;
|
|
font-weight: bold;
|
|
padding: 0 6px;
|
|
}
|
|
</style>
|