2020-07-18 17:24:07 +02:00
|
|
|
<template>
|
2023-05-28 05:24:38 +02:00
|
|
|
<canvas
|
|
|
|
v-if="!loaded"
|
|
|
|
ref="canvas"
|
|
|
|
:width="size"
|
|
|
|
:height="size"
|
2023-07-14 04:06:57 +02:00
|
|
|
:title="title"
|
2023-05-28 05:24:38 +02:00
|
|
|
/>
|
|
|
|
<img
|
|
|
|
v-if="src"
|
|
|
|
:src="src"
|
2023-07-14 04:06:57 +02:00
|
|
|
:title="title"
|
2023-05-28 05:24:38 +02:00
|
|
|
:type="type"
|
|
|
|
:alt="alt"
|
|
|
|
:class="{ cover }"
|
|
|
|
:style="{ 'object-fit': cover ? 'cover' : null }"
|
|
|
|
loading="lazy"
|
|
|
|
@load="onLoad"
|
|
|
|
/>
|
2020-07-18 17:24:07 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 22:59:35 +01:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { onMounted } from "vue";
|
2023-07-14 04:06:57 +02:00
|
|
|
import { decodeBlurHash } from "fast-blurhash";
|
2020-07-18 17:24:07 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
src?: string | null;
|
|
|
|
hash?: string;
|
|
|
|
alt?: string;
|
|
|
|
type?: string | null;
|
|
|
|
title?: string | null;
|
|
|
|
size?: number;
|
|
|
|
cover?: boolean;
|
|
|
|
}>(),
|
|
|
|
{
|
|
|
|
src: null,
|
|
|
|
type: null,
|
|
|
|
alt: "",
|
|
|
|
title: null,
|
|
|
|
size: 64,
|
|
|
|
cover: true,
|
2023-07-06 03:28:27 +02:00
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
);
|
2020-07-18 17:24:07 +02:00
|
|
|
|
2022-01-15 22:59:35 +01:00
|
|
|
const canvas = $ref<HTMLCanvasElement>();
|
|
|
|
let loaded = $ref(false);
|
2020-07-18 17:24:07 +02:00
|
|
|
|
2023-07-14 04:06:57 +02:00
|
|
|
function draw() {
|
2023-07-11 06:09:07 +02:00
|
|
|
if (props.hash == null || canvas == null) return;
|
2023-07-14 04:06:57 +02:00
|
|
|
const pixels = decodeBlurHash(props.hash, props.size, props.size);
|
2023-04-08 02:01:42 +02:00
|
|
|
const ctx = canvas.getContext("2d");
|
2022-01-15 22:59:35 +01:00
|
|
|
const imageData = ctx!.createImageData(props.size, props.size);
|
|
|
|
imageData.data.set(pixels);
|
|
|
|
ctx!.putImageData(imageData, 0, 0);
|
|
|
|
}
|
2020-07-18 17:24:07 +02:00
|
|
|
|
2022-01-15 22:59:35 +01:00
|
|
|
function onLoad() {
|
|
|
|
loaded = true;
|
|
|
|
}
|
2020-07-18 17:24:07 +02:00
|
|
|
|
2022-01-15 22:59:35 +01:00
|
|
|
onMounted(() => {
|
|
|
|
draw();
|
2020-07-18 17:24:07 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2023-05-28 05:24:38 +02:00
|
|
|
canvas,
|
|
|
|
img {
|
|
|
|
display: block;
|
2023-07-21 16:06:24 +02:00
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2023-05-28 05:24:38 +02:00
|
|
|
}
|
2020-07-18 17:24:07 +02:00
|
|
|
|
2023-05-28 05:24:38 +02:00
|
|
|
canvas {
|
|
|
|
position: absolute;
|
|
|
|
inset: 0;
|
|
|
|
object-fit: cover;
|
2023-07-21 16:06:24 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-05-28 05:24:38 +02:00
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2023-05-28 05:24:38 +02:00
|
|
|
img {
|
|
|
|
object-fit: contain;
|
2020-07-18 17:24:07 +02:00
|
|
|
}
|
|
|
|
</style>
|