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
|
<style scoped>
.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
},
video: {
type: Boolean,
default: false
}
},
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();
if (this.video) {
const videoEl = this.$slots.default.find(e => e.tag?.toLowerCase() === 'video');
const el = videoEl.elm;
console.log(videoEl);
console.log(el);
el.onloadeddata = () => {
console.log('loaded');
this.$el.style.left = '-9999px';
this.$el.style.top = '-9999px';
this.$el.style.display = 'block';
this.height = el.offsetHeight + 5;
this.itemWidth = el.offsetWidth;
}
} else {
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>
|