15761a0fa8
* ✌️ * fix * ✌️ * 422px上限 * 334 * min-height: 130px * 64px * fix * wip * ✌️ * fix * max-height: none * MkImgWithBlurHashでratioを計算する * wip * fix * fix? * Revert "fix?" This reverts commite39d832dd1
. * Revert "fix" This reverts commit15be36ba55
. * Revert "wip" This reverts commitaf7d86f69d
. * fix * Revert "Revert "wip"" This reverts commitbb0036ae22
. * Revert "Revert "fix"" This reverts commitc1d94a45c5
. * Revert "Revert "fix?"" This reverts commit9cb4fbfd96
. * fix * use clamp * readable * add 1:1, 3:4 * moveComment * 3:4 → 2:3 * fix * default * fallback * Revert "fallback" This reverts commit741717dd49
. * Fix?(server): Content-Dispositionのパースでエラーが発生した場合にもダウンロードが完了するように #10626
100 lines
1.8 KiB
Vue
100 lines
1.8 KiB
Vue
<template>
|
|
<div :class="[$style.root, { [$style.cover]: cover }]" :title="title ?? ''">
|
|
<canvas v-if="!loaded || forceBlurhash" ref="canvas" :class="$style.canvas" :width="width" :height="height" :title="title ?? ''"/>
|
|
<img v-if="src && !forceBlurhash" v-show="loaded" :class="$style.img" :src="src" :title="title ?? ''" :alt="alt ?? ''" @load="onLoad"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, watch } from 'vue';
|
|
import { decode } from 'blurhash';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
src?: string | null;
|
|
hash?: string;
|
|
alt?: string | null;
|
|
title?: string | null;
|
|
height?: number;
|
|
width?: number;
|
|
cover?: boolean;
|
|
forceBlurhash?: boolean;
|
|
}>(), {
|
|
src: null,
|
|
alt: '',
|
|
title: null,
|
|
height: 64,
|
|
width: 64,
|
|
cover: true,
|
|
forceBlurhash: false,
|
|
});
|
|
|
|
const canvas = $shallowRef<HTMLCanvasElement>();
|
|
let loaded = $ref(false);
|
|
let width = $ref(props.width);
|
|
let height = $ref(props.height);
|
|
|
|
function onLoad() {
|
|
loaded = true;
|
|
}
|
|
|
|
watch([() => props.width, () => props.height], () => {
|
|
const ratio = props.width / props.height;
|
|
if (ratio > 1) {
|
|
width = Math.round(64 * ratio);
|
|
height = 64;
|
|
} else {
|
|
width = 64;
|
|
height = Math.round(64 / ratio);
|
|
}
|
|
}, {
|
|
immediate: true,
|
|
});
|
|
|
|
function draw() {
|
|
if (props.hash == null) return;
|
|
const pixels = decode(props.hash, width, height);
|
|
const ctx = canvas.getContext('2d');
|
|
const imageData = ctx!.createImageData(width, height);
|
|
imageData.data.set(pixels);
|
|
ctx!.putImageData(imageData, 0, 0);
|
|
}
|
|
|
|
watch(() => props.hash, () => {
|
|
draw();
|
|
});
|
|
|
|
onMounted(() => {
|
|
draw();
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
&.cover {
|
|
> .canvas,
|
|
> .img {
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
}
|
|
|
|
.canvas,
|
|
.img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.canvas {
|
|
object-fit: contain;
|
|
}
|
|
|
|
.img {
|
|
object-fit: contain;
|
|
}
|
|
</style>
|