tui-lazyload-img.vue
4.69 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<template>
<view class="tui-lazyload__box"
:style="{backgroundColor:placeholder?'transparent':backgroundColor,width:width,height:height?height:'auto',borderRadius:radius}"
@tap="handleClick">
<image class="tui-lazyload__img"
:class="{'tui-img__hidden':!placeholder && fadeShow && !show,'tui-img__appear':show && !placeholder && fadeShow}"
:style="{height:height,borderRadius:radius}" :src="show?src:placeholder"
:mode="height&&height!==true?mode:'widthFix'" :webp="webp" :show-menu-by-longpress="showMenuByLongpress"
:draggable="draggable" @load="load" @error="error" :id="elId">
</image>
<slot></slot>
</view>
</template>
<script>
export default {
name: "tui-lazyload-img",
emits: ['error', 'load', 'click'],
options: {
virtualHost: true
},
props: {
//图片路径
src: {
type: String,
default: ''
},
//占位图路径
placeholder: {
type: String,
default: ''
},
//占位背景色,placeholder有值时失效
backgroundColor: {
type: String,
default: '#E7E7E7'
},
//图片的裁剪模式,参考image组件mode属性
mode: {
type: String,
default: 'widthFix'
},
//图片显示动画效果,无占位图时有效
fadeShow: {
type: Boolean,
default: true
},
//默认不解析 webP 格式,只支持网络资源 微信小程序2.9.0
webp: {
type: Boolean,
default: false
},
//开启长按图片显示识别小程序码菜单 微信小程序2.7.0
showMenuByLongpress: {
type: Boolean,
default: false
},
//鼠标长按是否能拖动图片 仅H5平台 3.1.1+ 有效
draggable: {
type: Boolean,
default: true
},
//图片宽度
width: {
type: String,
default: '340rpx'
},
//图片高度,如果高度设置为auto,mode值需要设置为widthFix
height: {
type: String,
default: '340rpx'
},
//图片圆角值,如:10rpx
radius: {
type: String,
default: '0'
},
//节点布局区域的下边界,目标节点区域以下 bottom(px) 时,就会触发回调函数
bottom: {
type: [Number, String],
default: 50
},
//是否停止监听,设置为true时回调函数将不再触发
disconnect: {
type: Boolean,
default: false
},
//图片在列表中的索引值
index: {
type: Number,
default: 0
}
},
data() {
let elId = this.unique() + this.index
return {
show: false,
elId: elId
};
},
watch: {
disconnect(val) {
if (val) {
this.removeObserver()
}
}
},
created() {
this.observer = null;
// this.elId = this.unique() + this.index;
},
mounted() {
this.$nextTick(() => {
setTimeout(() => {
// #ifndef H5
if (!this.disconnect) {
this.initObserver()
} else {
this.show = true;
}
// #endif
// #ifdef H5
if (!this.disconnect && window.self === window.top) {
this.initObserver()
} else {
this.show = true;
}
// #endif
}, 50)
})
},
// #ifndef VUE3
beforeDestroy() {
this.removeObserver()
},
// #endif
// #ifdef VUE3
beforeUnmount() {
this.removeObserver()
},
// #endif
methods: {
unique: function(n) {
n = n || 6;
let rnd = '';
for (let i = 0; i < n; i++)
rnd += Math.floor(Math.random() * 10);
return 'tui_' + new Date().getTime() + rnd;
},
removeObserver() {
if (this.observer) {
this.observer.disconnect()
this.observer = null;
}
},
initObserver() {
if (this.observer || this.show) return;
try {
let element = this.elId ? `#${this.elId}` : '.tui-lazyload__img';
const observer = uni.createIntersectionObserver(this)
observer.relativeToViewport({
bottom: Number(this.bottom) || 50
}).observe(element, (res) => {
if (res.intersectionRatio > 0 && !this.show) {
this.show = true;
this.removeObserver()
}
})
this.observer = observer
} catch (e) {
//TODO handle the exception
this.show = true;
this.removeObserver()
}
},
error(e) {
if (!this.show) return;
this.$emit('error', {
detail: e.detail,
index: this.index
})
},
load(e) {
if (!this.show) return;
this.$emit('load', {
detail: e.detail,
index: this.index
})
},
handleClick(e) {
this.$emit('click', {
index: this.index
})
}
}
}
</script>
<style scoped>
.tui-lazyload__box {
display: inline-flex;
position: relative;
flex-shrink: 0;
}
.tui-lazyload__img {
width: 100%;
display: block;
flex-shrink: 0;
transition: opacity .3s linear;
}
.tui-img__hidden {
opacity: 0;
visibility: hidden;
}
.tui-img__appear {
opacity: 1;
visibility: visible;
}
</style>