summaryrefslogtreecommitdiff
path: root/src/client/components/img-with-blurhash.vue
blob: 7606708e9b42392a301c47d478aee11b45e1d510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<template>
<div class="xubzgfgb" :class="{ cover }" :title="title">
	<canvas ref="canvas" :width="size" :height="size" :title="title" v-if="!loaded"/>
	<img v-if="src" :src="src" :title="title" :alt="alt" @load="onLoad"/>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { decode } from 'blurhash';

export default defineComponent({
	props: {
		src: {
			type: String,
			required: false,
			default: null
		},
		hash: {
			type: String,
			required: true
		},
		alt: {
			type: String,
			required: false,
			default: '',
		},
		title: {
			type: String,
			required: false,
			default: null,
		},
		size: {
			type: Number,
			required: false,
			default: 64
		},
		cover: {
			type: Boolean,
			required: false,
			default: true,
		}
	},

	data() {
		return {
			loaded: false,
		};
	},

	mounted() {
		this.draw();
	},

	methods: {
		draw() {
			if (this.hash == null) return;
			const pixels = decode(this.hash, this.size, this.size);
			const ctx = (this.$refs.canvas as HTMLCanvasElement).getContext('2d');
			const imageData = ctx!.createImageData(this.size, this.size);
			imageData.data.set(pixels);
			ctx!.putImageData(imageData, 0, 0);
		},

		onLoad() {
			this.loaded = true;
		}
	}
});
</script>

<style lang="scss" scoped>
.xubzgfgb {
	width: 100%;
	height: 100%;

	> canvas,
	> img {
		display: block;
		width: 100%;
		height: 100%;
	}

	> canvas {
		object-fit: cover;
	}

	> img {
		object-fit: contain;
	}

	&.cover {
		> img {
			object-fit: cover;
		}
	}
}
</style>