aboutsummaryrefslogtreecommitdiff
path: root/src/site/components/grid/waterfall/WaterfallItem.vue
blob: a02ea1fa99e65d75e8a4d090b1f30ef427b78ef8 (plain) (blame)
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
<style>
	.waterfall-item {
		position: absolute;
	}
</style>
<template>
	<div class="waterfall-item">
		<slot />
	</div>
</template>
<script>
import imagesLoaded from 'imagesloaded';
export default {
	name: 'WaterfallItem',
	props: {
		order: {
			type: Number,
			default: 0
		},
		width: {
			type: Number,
			default: 150
		}
	},
	data() {
		return {
			itemWidth: 0,
			height: 0
		};
	},
	created() {
		this.$watch(() => this.height, this.emit);
	},
	mounted() {
		this.$el.style.display = 'none';
		this.$el.style.width = `${this.width}px`;
		this.emit();
		imagesLoaded(this.$el, () => {
			this.$el.style.left = '-9999px';
			this.$el.style.top = '-9999px';
			this.$el.style.display = 'block';
			this.height = this.$el.offsetHeight;
			this.itemWidth = this.$el.offsetWidth;
		});
	},
	methods: {
		emit() {
			this.$parent.$emit('itemRender');
		},
		getMeta() {
			return {
				el: this.$el,
				height: this.height,
				width: this.itemWidth,
				order: this.order
			};
		}
	}
}
</script>