summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/views/components/images-image.vue
blob: 5b7dc41739ec9662dd56c4dde3ef6386c25d0090 (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
<template>
<a class="mk-images-image"
	:href="image.url"
	@mousemove="onMousemove"
	@mouseleave="onMouseleave"
	@click.prevent="onClick"
	:style="style"
	:title="image.name"
></a>
</template>

<script lang="ts">
import Vue from 'vue';
import MkImagesImageDialog from './images-image-dialog.vue';

export default Vue.extend({
	props: ['image'],
	computed: {
		style(): any {
			return {
				'background-color': this.image.properties.average_color ? `rgb(${this.image.properties.average_color.join(',')})` : 'transparent',
				'background-image': `url(${this.image.url}?thumbnail&size=512)`
			};
		}
	},
	methods: {
		onMousemove(e) {
			const rect = this.$el.getBoundingClientRect();
			const mouseX = e.clientX - rect.left;
			const mouseY = e.clientY - rect.top;
			const xp = mouseX / this.$el.offsetWidth * 100;
			const yp = mouseY / this.$el.offsetHeight * 100;
			this.$el.style.backgroundPosition = xp + '% ' + yp + '%';
			this.$el.style.backgroundImage = 'url("' + this.image.url + '?thumbnail")';
		},

		onMouseleave() {
			this.$el.style.backgroundPosition = '';
		},

		onClick() {
			(this as any).os.new(MkImagesImageDialog, {
				image: this.image
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
.mk-images-image
	display block
	cursor zoom-in
	overflow hidden
	width 100%
	height 100%
	background-position center
	border-radius 4px

	&:not(:hover)
		background-size cover

</style>