-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv-scrollInOut.js
300 lines (291 loc) · 9.61 KB
/
v-scrollInOut.js
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
// 默认dom体积系数
let defaultThreshold = [0.2, 1]
/**
* 防抖节流
* @param {*} action 回调
* @param {*} delay 等待的时间
* @param {*} context this指针
* @param {Boolean} iselapsed 是否等待上一次
* @returns {Function}
*/
export function throttle(action, delay, context, iselapsed) {
let timeout = null
let lastRun = 0
return function() {
if (timeout) {
if (iselapsed) {
return
} else {
clearTimeout(timeout)
timeout = null
}
}
let elapsed = Date.now() - lastRun
let args = arguments
if (iselapsed && elapsed >= delay) {
runCallback()
} else {
timeout = setTimeout(runCallback, delay)
}
/**
* 执行回调
*/
function runCallback() {
lastRun = Date.now()
timeout = false
action.apply(context, args)
}
}
}
const getFirstOverflowRoot = el => {
if (el.tagName === "html") {
return null
}
let parent = el.parentElement
if (!parent) {
return null
}
let computedStyle = window.getComputedStyle(parent, null)
if (
computedStyle.overflow === "auto" ||
computedStyle.overflowX === "auto" ||
computedStyle.overflowY === "auto"
) {
return parent
} else {
return getFirstOverflowRoot(parent)
}
}
const computedThreshold = arg => {
let threshold
let args = (arg || "").match(/\d+%/g) || []
let firstThreshold = args[0]
let secondThreshold = args[1]
if (firstThreshold) {
firstThreshold = parseFloat(firstThreshold)
if (!isNaN(firstThreshold)) {
firstThreshold = firstThreshold / 100
}
}
if (secondThreshold) {
secondThreshold = parseFloat(secondThreshold)
if (!isNaN(secondThreshold)) {
secondThreshold = secondThreshold / 100
}
}
if (args.length >= 2) {
threshold = [firstThreshold, secondThreshold]
} else if (args.length === 1) {
if (firstThreshold === 0) {
threshold = 0
} else {
threshold = [firstThreshold / 2, 1 - firstThreshold / 2]
}
} else {
threshold = defaultThreshold
}
return threshold
}
const getElementMargin = el => {
if (!el) {
return "0px 0px 0px 0px"
}
let computedStyle = window.getComputedStyle(el, null)
return `${computedStyle.marginTop} ${computedStyle.marginRight} ${
computedStyle.marginBottom
} ${computedStyle.marginLeft}`
}
const computedIsIn = function(threshold, el, root) {
const { width, height, offsetLeft, offsetTop } = el
const {
width: parentWidth,
height: parentHeight,
scrollTop,
scrollLeft
} = root
let extraX = 0,
extraY = 0
if (threshold === 0) {
extraX = 0
extraY = 0
} else if (threshold === 1) {
extraX = width
extraY = height
} else {
let [firstRatio, secondRatio] = threshold || []
let extraX1 = 0,
extraX2 = 0,
extraY1 = 0,
extraY2 = 0
if (typeof firstRatio !== "undefined") {
extraX1 = width * firstRatio
extraY1 = height * firstRatio
}
if (typeof secondRatio !== "undefined") {
extraX2 = width * secondRatio
extraY2 = height * secondRatio
}
return (
offsetTop + extraY2 >= scrollTop &&
offsetTop + extraY1 <= scrollTop + parentHeight &&
offsetLeft + extraX2 >= scrollLeft &&
offsetLeft + extraX1 <= scrollLeft + parentWidth
)
}
return (
offsetTop + height - extraY >= scrollTop &&
offsetTop + extraY <= scrollTop + parentHeight &&
offsetLeft + width - extraX >= scrollLeft &&
offsetLeft + extraX <= scrollLeft + parentWidth
)
}
const scrollin = {
bind(el, binding, vnode) {
if (binding.expression && !(binding.value instanceof Function)) {
console.error(
`[directive error]: v-scrollin directive do not support expression '${
binding.expression
}'! please set it with a function`
)
return
}
function executeCallback(flag) {
if (binding.expression && binding.value instanceof Function) {
binding.value.bind(vnode.context)(flag)
}
}
let threshold = computedThreshold(binding.arg)
if (
"IntersectionObserver" in window &&
"IntersectionObserverEntry" in window &&
"intersectionRatio" in window.IntersectionObserverEntry.prototype
) {
el.observerSupport = true
if (el.observer) {
el.observer.disconnect()
}
vnode.context.$nextTick(() => {
let root = getFirstOverflowRoot(el)
console.log("root", root)
let margin = getElementMargin(root)
el.observer = new IntersectionObserver(
entries => {
if (entries[0].isIntersecting) {
// 进入可视区域
if (!el.__scrollIn__) {
el.__scrollIn__ = true
executeCallback(true)
}
} else {
// 移出可视区域
if (
el.__scrollIn__ ||
typeof el.__scrollIn__ === "undefined"
) {
el.__scrollIn__ = false
executeCallback(false)
}
}
},
{
root: root,
rootMargin: margin,
threshold: threshold
}
)
el.observer.observe(el)
})
} else {
// 手动实现
vnode.context.$nextTick(() => {
let root = getFirstOverflowRoot(el)
function scrollEventHandler(e) {
let scrollTop, scrollLeft, parentWidth, parentHeight
if (root) {
scrollTop = e.target.scrollTop
scrollLeft = e.target.scrollLeft
let rect = e.target.getBoundingClientRect()
parentWidth = rect.width
parentHeight = rect.height
} else {
scrollTop = window.scrollX
scrollLeft = window.scrollY
parentWidth = window.innerWidth
parentHeight = window.innerHeight
}
let { offsetTop, offsetLeft } = el
let { width, height } = el.getBoundingClientRect()
if (
computedIsIn(
threshold,
{ width, height, offsetLeft, offsetTop },
{
width: parentWidth,
height: parentHeight,
scrollLeft,
scrollTop
}
)
) {
// scroll x & y in
if (!el.__scrollIn__) {
el.__scrollIn__ = true
executeCallback(true)
}
} else {
// scroll x & y out
if (
el.__scrollIn__ ||
typeof el.__scrollIn__ === "undefined"
) {
el.__scrollIn__ = false
executeCallback(false)
}
}
}
// 节流
let throttleHandler = throttle(
scrollEventHandler,
100,
undefined,
true
)
el.__vueScrollInOut_handler__ = throttleHandler
el.__vueScrollInOut_root__ = root
const eventRoot = root || window
eventRoot.addEventListener("scroll", throttleHandler)
// 初始化判断
let myEvent = new Event("scroll")
eventRoot.dispatchEvent(myEvent)
throttleHandler = null
})
}
},
unbind(el, binding) {
// 销毁
if (el.observerSupport) {
el.observer.disconnect()
Reflect.deleteProperty(el, "observer")
} else {
if (el.__vueScrollInOut_root__) {
el.__vueScrollInOut_root__.removeEventListener(
"scroll",
el.__vueScrollInOut_handler__
)
} else {
window.removeEventListener(
"scroll",
el.__vueScrollInOut_handler__
)
}
Reflect.deleteProperty(el, "__vueScrollInOut_root__")
Reflect.deleteProperty(el, "__vueScrollInOut_handler__")
}
Reflect.deleteProperty(el, "__scrollIn__")
}
}
export default {
install(Vue) {
Vue.directive("scrollInOut", scrollin)
}
}